Skip to content

Commit

Permalink
fix: add resolution 60 default to ccms nodeData query
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Aug 26, 2024
1 parent d34e0d9 commit 55027cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/metricdata/cc-metric-store.go
Original file line number Diff line number Diff line change
Expand Up @@ -613,8 +613,9 @@ func (ccms *CCMetricStore) LoadNodeData(
for _, node := range nodes {
for _, metric := range metrics {
req.Queries = append(req.Queries, ApiQuery{
Hostname: node,
Metric: ccms.toRemoteName(metric),
Hostname: node,
Metric: ccms.toRemoteName(metric),
Resolution: 60, // Default for Node Queries
})
}
}
Expand Down

0 comments on commit 55027cb

Please sign in to comment.