@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
47 lines (41 loc) • 1.49 kB
JavaScript
define(function (require) {
// we need to load the css ourselves
require('plugins/metric_vis/metric_vis.less');
// we also need to load the controller and used by the template
require('plugins/metric_vis/metric_vis_controller');
// register the provider with the visTypes registry
require('ui/registry/vis_types').register(MetricVisProvider);
function MetricVisProvider(Private) {
var TemplateVisType = Private(require('ui/template_vis_type/TemplateVisType'));
var Schemas = Private(require('ui/Vis/Schemas'));
// return the visType object, which kibana will use to display and configure new
// Vis object of this type.
return new TemplateVisType({
name: 'metric',
title: 'Metric',
description: 'One big number for all of your one big number needs. Perfect for show ' +
'a count of hits, or the exact average a numeric field.',
icon: 'fa-calculator',
template: require('plugins/metric_vis/metric_vis.html'),
params: {
defaults: {
fontSize: 60
},
editor: require('plugins/metric_vis/metric_vis_params.html')
},
schemas: new Schemas([
{
group: 'metrics',
name: 'metric',
title: 'Metric',
min: 1,
defaults: [
{ type: 'count', schema: 'metric' }
]
}
])
});
}
// export the provider so that the visType can be required with Private()
return MetricVisProvider;
});