Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gabor committed Jul 30, 2024
1 parent 62a292d commit f2c04a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/datasource/dataProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ function setAlias(alias: string, frame: DataFrame) {
valueField.config.displayNameFromDS = alias;
}
frame.name = alias;
return frame;
if (valueField) {
return frame;
}
}

for (let fieldIndex = 0; fieldIndex < frame.fields.length; fieldIndex++) {
Expand Down
7 changes: 6 additions & 1 deletion src/datasource/datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,12 @@ export class ZabbixDatasource extends DataSourceApi<ZabbixMetricsQuery, ZabbixDS
const slaFilter = this.replaceTemplateVars(target.slaFilter, request.scopedVars);
const slas = await this.zabbix.getSLAs(slaFilter);
const result = await this.zabbix.getSLI(itservices, slas, timeRange, target, request);
return result;

const frame = result;
frame.refId = target.refId;
const resp = { data: [frame] };
this.applyFrontendFunctions(resp, request);
return resp.data;
}
const itservicesdp = await this.zabbix.getSLA(itservices, timeRange, target, request);
const backendRequest = responseHandler.itServiceResponseToTimeSeries(itservicesdp, target.slaInterval);
Expand Down

0 comments on commit f2c04a9

Please sign in to comment.