mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* I needed to learn some rxjs and understand this more, so just playing around * Updated * Removed all the complete calls * Refactoring * StreamHandler -> observable start * progress * simple singal works * Handle update time range * added error handling * wrap old function * minor changes * handle data format in the subscribe function * Use replay subject to return last value to subscribers * Set loading state after no response in 50ms * added missing file * updated comment * Added cancelation of network requests * runRequest: Added unit test scenario framework * Progress on tests * minor refactor of unit tests * updated test * removed some old code * Shared queries work again, and also became so much simplier * unified query and observe methods * implict any fix * Fixed closed subject issue * removed comment * Use last returned data for loading state * WIP: Explore to runRequest makover step1 * Minor progress * Minor progress on explore and runRequest * minor progress * Things are starting to work in explore * Updated prometheus to use new observable query response, greatly simplified code * Revert refId change * Found better solution for key/refId/requestId problem * use observable with loki * tests compile * fix loki query prep * Explore: correct first response handling * Refactorings * Refactoring * Explore: Fixes LoadingState and GraphResults between runs (#18986) * Refactor: Adds state to DataQueryResponse * Fix: Fixes so we do not empty results before new data arrives Fixes: #17409 * Transformations work * observable test data * remove single() from loki promise * Fixed comment * Explore: Fixes failing Loki and Prometheus unit tests (#18995) * Tests: Makes datasource tests work again * Fix: Fixes loki datasource so highligthing works * Chore: Runs Prettier * Fixed query runner tests * Delay loading state indication to 200ms * Fixed test * fixed unit tests * Clear cached calcs * Fixed bug getProcesedDataFrames * Fix the correct test is a better idea * Fix: Fixes so queries in Explore are only run if Graph/Table is shown (#19000) * Fix: Fixes so queries in Explore are only run if Graph/Table is shown Fixes: #18618 * Refactor: Removes unnecessary condition * PanelData: provide legacy data only when needed (#19018) * no legacy * invert logic... now compiles * merge getQueryResponseData and getDataRaw * update comment about query editor * use single getData() function * only send legacy when it is used in explore * pre process rather than post process * pre process rather than post process * Minor refactoring * Add missing tags to test datasource response * MixedDatasource: Adds query observable pattern to MixedDatasource (#19037) * start mixed datasource * Refactor: Refactors into observable parttern * Tests: Fixes tests * Tests: Removes console.log * Refactor: Adds unique requestId
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
import { LogsModel, GraphSeriesXY, DataFrame, FieldType } from '@grafana/data';
|
|
|
|
import { ExploreItemState, ExploreMode } from 'app/types/explore';
|
|
import TableModel, { mergeTablesIntoModel } from 'app/core/table_model';
|
|
import { sortLogsResult, refreshIntervalToSortOrder } from 'app/core/utils/explore';
|
|
import { dataFrameToLogsModel } from 'app/core/logs_model';
|
|
import { getGraphSeriesModel } from 'app/plugins/panel/graph2/getGraphSeriesModel';
|
|
|
|
export class ResultProcessor {
|
|
constructor(private state: ExploreItemState, private dataFrames: DataFrame[]) {}
|
|
|
|
getGraphResult(): GraphSeriesXY[] {
|
|
if (this.state.mode !== ExploreMode.Metrics) {
|
|
return null;
|
|
}
|
|
|
|
const onlyTimeSeries = this.dataFrames.filter(isTimeSeries);
|
|
|
|
if (onlyTimeSeries.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return getGraphSeriesModel(
|
|
onlyTimeSeries,
|
|
{},
|
|
{ showBars: false, showLines: true, showPoints: false },
|
|
{ asTable: false, isVisible: true, placement: 'under' }
|
|
);
|
|
}
|
|
|
|
getTableResult(): TableModel {
|
|
if (this.state.mode !== ExploreMode.Metrics) {
|
|
return null;
|
|
}
|
|
|
|
// For now ignore time series
|
|
// We can change this later, just need to figure out how to
|
|
// Ignore time series only for prometheus
|
|
const onlyTables = this.dataFrames.filter(frame => !isTimeSeries(frame));
|
|
|
|
if (onlyTables.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
const tables = onlyTables.map(frame => {
|
|
const { fields } = frame;
|
|
const fieldCount = fields.length;
|
|
const rowCount = fields[0].values.length;
|
|
|
|
const columns = fields.map(field => ({
|
|
text: field.name,
|
|
type: field.type,
|
|
filterable: field.config.filterable,
|
|
}));
|
|
|
|
const rows: any[][] = [];
|
|
for (let i = 0; i < rowCount; i++) {
|
|
const row: any[] = [];
|
|
for (let j = 0; j < fieldCount; j++) {
|
|
row.push(frame.fields[j].values.get(i));
|
|
}
|
|
rows.push(row);
|
|
}
|
|
|
|
return new TableModel({
|
|
columns,
|
|
rows,
|
|
meta: frame.meta,
|
|
});
|
|
});
|
|
|
|
return mergeTablesIntoModel(new TableModel(), ...tables);
|
|
}
|
|
|
|
getLogsResult(): LogsModel {
|
|
if (this.state.mode !== ExploreMode.Logs) {
|
|
return null;
|
|
}
|
|
|
|
const graphInterval = this.state.queryIntervals.intervalMs;
|
|
|
|
const newResults = dataFrameToLogsModel(this.dataFrames, graphInterval);
|
|
const sortOrder = refreshIntervalToSortOrder(this.state.refreshInterval);
|
|
const sortedNewResults = sortLogsResult(newResults, sortOrder);
|
|
|
|
const rows = sortedNewResults.rows;
|
|
const series = sortedNewResults.series;
|
|
return { ...sortedNewResults, rows, series };
|
|
}
|
|
}
|
|
|
|
export function isTimeSeries(frame: DataFrame): boolean {
|
|
if (frame.fields.length === 2) {
|
|
if (frame.fields[1].type === FieldType.time) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|