Skip to content

Instantly share code, notes, and snippets.

@runningman84
Created September 21, 2016 15:36
Show Gist options
  • Save runningman84/5f89cc24a28171dbec07093de290038b to your computer and use it in GitHub Desktop.
Save runningman84/5f89cc24a28171dbec07093de290038b to your computer and use it in GitHub Desktop.
sensu_filter 'every_3_occurrences' do
attributes(occurrences: 'eval: value % 3 == 0')
end
sensu_filter 'every_5_occurrences' do
attributes(occurrences: 'eval: value % 5 == 0')
end
# vs
sensu_filter 'every_3_occurrences' do
attributes(occurrences: 'eval: value % 3')
end
sensu_filter 'every_5_occurrences' do
attributes(occurrences: 'eval: value % 5')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment