mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
New Panel: Histogram (#33752)
This commit is contained in:
30
public/app/plugins/panel/histogram/utils.ts
Normal file
30
public/app/plugins/panel/histogram/utils.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { DataFrame, FieldType } from '@grafana/data';
|
||||
|
||||
import {
|
||||
histogramFrameBucketMinFieldName,
|
||||
histogramFrameBucketMaxFieldName,
|
||||
} from '@grafana/data/src/transformations/transformers/histogram';
|
||||
|
||||
export function originalDataHasHistogram(frames?: DataFrame[]): boolean {
|
||||
if (frames?.length !== 1) {
|
||||
return false;
|
||||
}
|
||||
const frame = frames[0];
|
||||
if (frame.fields.length < 3) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (
|
||||
frame.fields[0].name !== histogramFrameBucketMinFieldName ||
|
||||
frame.fields[1].name !== histogramFrameBucketMaxFieldName
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
for (const field of frame.fields) {
|
||||
if (field.type !== FieldType.number) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user