Tempo: Metrics summary no value (#74582)

Metrics summary no value
pull/74808/head
Joey 2 years ago committed by GitHub
parent ee96b08f4b
commit a12c224cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/plugins/datasource/tempo/metricsSummary.ts

@ -101,7 +101,7 @@ export function createTableFrameFromMetricsSummaryQuery(
field.values.push(trace[field.name]);
}
}
frame = sortDataFrame(frame, 0);
frame = sortDataFrame(frame, 0, true);
return [frame];
}
@ -183,7 +183,7 @@ const getConfig = (series: Series, query: string, instanceSettings: DataSourceIn
return { ...commonConfig };
};
const NO_VALUE = '';
const NO_VALUE = '<no value>';
const getMetricValue = (series: Series) => {
if (!series.value.type) {

Loading…
Cancel
Save