mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/elastalert] Fix verbose/confusing index names on Elasticsearch 6.x I had to set the writeback index to just `elastalert` in order to prevent elastalert to create verbose or confusing indices/types named like `elastalert_status_status/elastalert_status`, `elastalert_status_silence/elastalert_silence`, `elaststatus_status/elastalert`. The `_status` suffixes are redundant. For more context, see the elastalert issue https://github.com/Yelp/elastalert/pull/1488 which was fixed via https://github.com/Yelp/elastalert/commit/c250100b7be07c68a53789569a86f87193ec37f4 * fix(elastalert): Bump chart version
73 lines
2.1 KiB
YAML
73 lines
2.1 KiB
YAML
# number of replicas to run
|
|
replicaCount: 1
|
|
# number of helm release revisions to retain
|
|
revisionHistoryLimit: 5
|
|
|
|
# Default internal between alert checks against the elasticsearch datasource, in minutes
|
|
runIntervalMins: 1
|
|
|
|
# Default rule buffer duration, in minutes
|
|
bufferTimeMins: 15
|
|
|
|
# For ES 5: The name of the index which stores elastalert's statuses
|
|
# For ES 6: The prefix of the names of indices which store elastalert's statuses.
|
|
#
|
|
# See https://github.com/Yelp/elastalert/commit/c250100b7be07c68a53789569a86f87193ec37f4 for more details about this differentiation.
|
|
#
|
|
# CAUTION: It is recommended to set this to `elastalert` for ES6+. Otherwise elastalert produces confusing index names due to https://github.com/Yelp/elastalert/issues/1479#issuecomment-356380179
|
|
writebackIndex: elastalert_status
|
|
|
|
image:
|
|
# docker image
|
|
repository: jertel/elastalert-docker
|
|
# docker image tag
|
|
tag: 0.1.33
|
|
pullPolicy: IfNotPresent
|
|
resources: {}
|
|
|
|
elasticsearch:
|
|
# elasticsearch endpoint e.g. (svc.namespace||svc)
|
|
host: ""
|
|
# elasticsearch port
|
|
port: 80
|
|
# whether or not to connect to es_host using TLS
|
|
useSsl: "False"
|
|
|
|
# Command and args override for container e.g. (https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/)
|
|
# command: ["YOUR_CUSTOM_COMMAND"]
|
|
# args: ["YOUR", "CUSTOM", "ARGS"]
|
|
|
|
# rule configurations e.g. (http://elastalert.readthedocs.io/en/latest/)
|
|
rules: {}
|
|
# deadman_slack: |-
|
|
# ---
|
|
# name: Deadman Switch Slack
|
|
# type: frequency
|
|
# index: containers-*
|
|
# num_events: 3
|
|
# timeframe:
|
|
# minutes: 3
|
|
# filter:
|
|
# - term:
|
|
# message: "deadmanslack"
|
|
# alert:
|
|
# - "slack"
|
|
# slack:
|
|
# slack_webhook_url: dummy
|
|
# deadman_pagerduty: |-
|
|
# ---
|
|
# name: Deadman Switch PagerDuty
|
|
# type: frequency
|
|
# index: containers-*
|
|
# num_events: 3
|
|
# timeframe:
|
|
# minutes: 3
|
|
# filter:
|
|
# - term:
|
|
# message: "deadmanpd"
|
|
# alert:
|
|
# - "pagerduty"
|
|
# pagerduty:
|
|
# pagerduty_service_key: dummy
|
|
# pagerduty_client_name: Elastalert Deadman Switch
|