mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Elasticsearch: Rename public/app/plugins/datasource/elasticsearch/elastic_response.ts to follow convention (#55533)
* Elasticsearch: Rename public/app/plugins/datasource/elasticsearch/elastic_response.ts to follow convention * undo changes in this file * fix import types
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { Column, DataFrameView, Field, FieldCache, KeyValue, MutableDataFrame } from '@grafana/data';
|
||||
import flatten from 'app/core/utils/flatten';
|
||||
|
||||
import { ElasticResponse } from '../elastic_response';
|
||||
import { highlightTags } from '../queryDef';
|
||||
import { ElasticsearchQuery } from '../types';
|
||||
import { ElasticResponse } from './ElasticResponse';
|
||||
import { highlightTags } from './queryDef';
|
||||
import { ElasticsearchQuery } from './types';
|
||||
|
||||
describe('ElasticResponse', () => {
|
||||
let targets: ElasticsearchQuery[];
|
||||
@@ -33,6 +33,7 @@ import { getTemplateSrv, TemplateSrv } from 'app/features/templating/template_sr
|
||||
|
||||
import { RowContextOptions } from '../../../features/logs/components/LogRowContextProvider';
|
||||
|
||||
import { ElasticResponse } from './ElasticResponse';
|
||||
import { IndexPattern } from './IndexPattern';
|
||||
import LanguageProvider from './LanguageProvider';
|
||||
import { ElasticQueryBuilder } from './QueryBuilder';
|
||||
@@ -48,7 +49,6 @@ import {
|
||||
Logs,
|
||||
} from './components/QueryEditor/MetricAggregationsEditor/aggregations';
|
||||
import { metricAggregationConfig } from './components/QueryEditor/MetricAggregationsEditor/utils';
|
||||
import { ElasticResponse } from './elastic_response';
|
||||
import { defaultBucketAgg, hasMetricOfType } from './queryDef';
|
||||
import { DataLinkConfig, ElasticsearchOptions, ElasticsearchQuery, TermsQuery } from './types';
|
||||
import { coerceESVersion, getScriptValue, isSupportedVersion } from './utils';
|
||||
|
||||
Reference in New Issue
Block a user