Skip to content

Commit

Permalink
wrong rollup timing in riemann.config
Browse files Browse the repository at this point in the history
fix issue #23
  • Loading branch information
rschitz committed Mar 30, 2015
1 parent 25ebb1f commit 3e482b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions riemann/riemann.config
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
(streams
(by [:service]
(where (state "achtung")
(rollup 0 10
(rollup 0 60
(emailp "[email protected]")
)
)
(where (state "alert")
(rollup 0 60
(rollup 0 3600
(email "[email protected]")
)
)
)
)
)

2 comments on commit 3e482b5

@rschitz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

achtung will be every 60 sec and alert every 3600 sec so you can change it here

@githubuser00
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you

Please sign in to comment.