Skip to content

Commit

Permalink
Adjusting metric processor queries to look more far in history (#17)
Browse files Browse the repository at this point in the history
Adjusting metric processor queries to look more far in history

Reviewed-by: Nils Magnus <[email protected]>
Reviewed-by: Vladimir Vshivkov
  • Loading branch information
vladimirhasko authored Apr 5, 2024
1 parent 75d8c6a commit ae0e1ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/reporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ async fn metric_watcher(config: &Config) {
.query(&[
("environment", env.name.clone()),
("service", component.0.clone()),
("from", "-4min".to_string()),
("to", "-1min".to_string()),
("from", "-5min".to_string()),
("to", "-2min".to_string()),
])
.send()
.await
Expand Down

0 comments on commit ae0e1ae

Please sign in to comment.