stackdriver: return correct value

This commit is contained in:
Erik Sundell 2018-11-01 13:31:01 +01:00
parent 3883643ea2
commit 40bb3551cf

View File

@ -56,7 +56,7 @@ export default class StackdriverMetricFindQuery {
const metricDescriptors = await this.datasource.getMetricTypes(this.datasource.projectName);
return getMetricTypesByService(metricDescriptors, selectedService).map(s => ({
text: s.displayName,
value: s.name,
value: s.type,
expandable: true,
}));
}