UNPKG

kibana-123

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

14 lines (12 loc) 721 B
import AggResponseHierarchicalBuildHierarchicalDataProvider from 'ui/agg_response/hierarchical/build_hierarchical_data'; import AggResponsePointSeriesPointSeriesProvider from 'ui/agg_response/point_series/point_series'; import AggResponseTabifyTabifyProvider from 'ui/agg_response/tabify/tabify'; import AggResponseGeoJsonGeoJsonProvider from 'ui/agg_response/geo_json/geo_json'; export default function NormalizeChartDataFactory(Private) { return { hierarchical: Private(AggResponseHierarchicalBuildHierarchicalDataProvider), pointSeries: Private(AggResponsePointSeriesPointSeriesProvider), tabify: Private(AggResponseTabifyTabifyProvider), geoJson: Private(AggResponseGeoJsonGeoJsonProvider) }; };