gitextract_1pot3uo0/ ├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── .secrets.baseline ├── .travis.yml ├── Dockerfile-test ├── LICENSE ├── Makefile ├── README.md ├── changelog.md ├── config.yaml.example ├── docker-compose.yml ├── docs/ │ ├── Makefile │ └── source/ │ ├── _static/ │ │ └── .gitkeep │ ├── conf.py │ ├── elastalert.rst │ ├── elastalert_status.rst │ ├── index.rst │ ├── recipes/ │ │ ├── adding_alerts.rst │ │ ├── adding_enhancements.rst │ │ ├── adding_loaders.rst │ │ ├── adding_rules.rst │ │ ├── signing_requests.rst │ │ └── writing_filters.rst │ ├── ruletypes.rst │ └── running_elastalert.rst ├── elastalert/ │ ├── __init__.py │ ├── alerts.py │ ├── auth.py │ ├── config.py │ ├── create_index.py │ ├── elastalert.py │ ├── enhancements.py │ ├── es_mappings/ │ │ ├── 5/ │ │ │ ├── elastalert.json │ │ │ ├── elastalert_error.json │ │ │ ├── elastalert_status.json │ │ │ ├── past_elastalert.json │ │ │ └── silence.json │ │ └── 6/ │ │ ├── elastalert.json │ │ ├── elastalert_error.json │ │ ├── elastalert_status.json │ │ ├── past_elastalert.json │ │ └── silence.json │ ├── kibana.py │ ├── kibana_discover.py │ ├── loaders.py │ ├── opsgenie.py │ ├── rule_from_kibana.py │ ├── ruletypes.py │ ├── schema.yaml │ ├── test_rule.py │ ├── util.py │ └── zabbix.py ├── example_rules/ │ ├── example_cardinality.yaml │ ├── example_change.yaml │ ├── example_frequency.yaml │ ├── example_new_term.yaml │ ├── example_opsgenie_frequency.yaml │ ├── example_percentage_match.yaml │ ├── example_single_metric_agg.yaml │ ├── example_spike.yaml │ ├── example_spike_single_metric_agg.yaml │ ├── jira_acct.txt │ ├── ssh-repeat-offender.yaml │ └── ssh.yaml ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── supervisord.conf.example ├── tests/ │ ├── __init__.py │ ├── alerts_test.py │ ├── auth_test.py │ ├── base_test.py │ ├── conftest.py │ ├── create_index_test.py │ ├── elasticsearch_test.py │ ├── kibana_discover_test.py │ ├── kibana_test.py │ ├── loaders_test.py │ ├── rules_test.py │ └── util_test.py └── tox.ini