UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

47 lines (41 loc) 1.5 kB
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 showing ' + '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; });