Skip to content

Commit

Permalink
Merge "Closes-Bug:#1459688 Issue is vrouter agent process cpu flow se…
Browse files Browse the repository at this point in the history
…ries query is returning the data of total node,which is incorrect when there are multiple instances are running in same node, and fix is, Changed the where clause source to name in contrail-vrouter-agent process cpu flow series query."
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed May 28, 2015
2 parents 09713e9 + 782ffa1 commit ddd620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webroot/monitor/tenant-network/jobs/network.mon.jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2561,7 +2561,7 @@ function processCPULoadFlowSeries (pubChannel, saveChannelKey, jobData, done)
tableName = 'StatTable.ComputeCpuState.cpu_info';
selectArr.push("cpu_info.used_sys_mem");
selectArr.push("cpu_info.one_min_cpuload");
whereClause = [{'Source':source}];
whereClause = [{'name':source}];
break;
case 'contrail-api':
case 'contrail-schema':
Expand Down

0 comments on commit ddd620a

Please sign in to comment.