Skip to content

Commit

Permalink
Added param for throttling as env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveen Goswami committed Sep 14, 2018
1 parent 9e43a81 commit c8fd3a1
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions manifest/operations/add-throttle-param.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_SAME_MESSAGE_BEFORE_COUNT?
value:
"((throttle_same_message_before_count))"

- type: replace
path: /instance_groups/name=logstash
- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_SAME_MESSAGE_AFTER_COUNT?
value:
"((throttle_same_message_after_count))"

- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_SAME_MESSAGE_PERIOD?
value:
"((throttle_same_message_period))"

- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_SAME_MESSAGE_MAX_AGE?
value:
"((throttle_same_message_max_age))"

- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_RATE_LIMIT_BEFORE_COUNT?
value:
"((throttle_rate_limit_before_count))"

- type: replace
path: /instance_groups/name=logstash
- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_RATE_LIMIT_AFTER_COUNT?
value:
"((throttle_rate_limit_after_count))"

- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_RATE_LIMIT_PERIOD?
value:
"((throttle_rate_limit_period))"

- type: replace
path: /instance_groups/name=logstash/properties/logstash/env?/THROTTLE_RATE_LIMIT_MAX_AGE?
value:
"((throttle_rate_limit_max_age))"

0 comments on commit c8fd3a1

Please sign in to comment.