Skip to content

Commit

Permalink
chore: Fix failing test because of wrong formatting multiline string …
Browse files Browse the repository at this point in the history
…[PC-13052] (#390)

Fix failing test because of wrong formatting multiline string [
  • Loading branch information
dawidwisn authored Jan 23, 2025
1 parent 7adfbcd commit 7a33df7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nobl9/resource_slo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2989,9 +2989,9 @@ resource "nobl9_slo" ":name" {
incremental = true
good_total {
splunk {
query = "| mstats avg(\"spl.intr.resource_usage.IOWait.data.avg_cpu_pct\") as n9good WHERE index=\"_metrics\"
span=15s | join type=left _time [ | mstats avg(\"spl.intr.resource_usage.IOWait.data.max_cpus_pct\") as n9total
WHERE index=\"_metrics\" span=15s] | rename _time as n9time | fields n9time n9good n9total"
query = "| mstats avg(\"spl.intr.resource_usage.IOWait.data.avg_cpu_pct\") as n9good WHERE index=\"_metrics\"` +
` span=15s | join type=left _time [ | mstats avg(\"spl.intr.resource_usage.IOWait.data.max_cpus_pct\") ` +
`as n9total WHERE index=\"_metrics\" span=15s] | rename _time as n9time | fields n9time n9good n9total"
}
}
}
Expand Down

0 comments on commit 7a33df7

Please sign in to comment.