@spalger/kibana
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
23 lines (19 loc) • 540 B
JavaScript
define(function (require) {
var _ = require('lodash');
require('ui/routes')
.when('/settings/about', {
template: require('plugins/kibana/settings/sections/about/index.html')
});
require('ui/modules').get('apps/settings')
.controller('settingsAbout', function ($scope, kbnVersion, buildNum, commitSha) {
$scope.kbnVersion = kbnVersion;
$scope.buildNum = buildNum;
$scope.commitSha = commitSha;
});
return {
order: Infinity,
name: 'about',
display: 'About',
url: '#/settings/about'
};
});