Skip to content

Commit 64da258

Browse files
Updating reporter more in the past to avoid concurrency with graphite writes (#15)
Updating reporter more in the past to avoid concurrency with graphite… … writes Reviewed-by: Vladimir Vshivkov
1 parent 85fc50b commit 64da258

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", "-2min".to_string()),
159-
("to", "-1min".to_string()),
158+
("from", "-3min".to_string()),
159+
("to", "-2min".to_string()),
160160
])
161161
.send()
162162
.await

0 commit comments

Comments
 (0)