Skip to content

Commit ae0e1ae

Browse files
Adjusting metric processor queries to look more far in history (#17)
Adjusting metric processor queries to look more far in history Reviewed-by: Nils Magnus <[email protected]> Reviewed-by: Vladimir Vshivkov
1 parent 75d8c6a commit ae0e1ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/reporter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ async fn metric_watcher(config: &Config) {
155155
.query(&[
156156
("environment", env.name.clone()),
157157
("service", component.0.clone()),
158-
("from", "-4min".to_string()),
159-
("to", "-1min".to_string()),
158+
("from", "-5min".to_string()),
159+
("to", "-2min".to_string()),
160160
])
161161
.send()
162162
.await

0 commit comments

Comments
 (0)