-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from nicholasgibson2/add_prometheus_metrics_je…
…rtel_fork added optional Prometheus metrics endpoint
- Loading branch information
Showing
5 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import prometheus_client | ||
|
||
|
||
class PrometheusWrapper: | ||
""" Exposes ElastAlert metrics on a Prometheus metrics endpoint. | ||
Wraps ElastAlerter run_rule and writeback to collect metrics. """ | ||
|
||
def __init__(self, client): | ||
self.prometheus_port = client.prometheus_port | ||
self.run_rule = client.run_rule | ||
self.writeback = client.writeback | ||
|
||
client.run_rule = self.metrics_run_rule | ||
client.writeback = self.metrics_writeback | ||
|
||
# initialize prometheus metrics to be exposed | ||
self.prom_scrapes = prometheus_client.Counter('elastalert_scrapes', 'Number of scrapes for rule', ['rule_name']) | ||
self.prom_hits = prometheus_client.Counter('elastalert_hits', 'Number of hits for rule', ['rule_name']) | ||
self.prom_matches = prometheus_client.Counter('elastalert_matches', 'Number of matches for rule', ['rule_name']) | ||
self.prom_time_taken = prometheus_client.Counter('elastalert_time_taken', 'Time taken to evaluate rule', ['rule_name']) | ||
self.prom_alerts_sent = prometheus_client.Counter('elastalert_alerts_sent', 'Number of alerts sent for rule', ['rule_name']) | ||
self.prom_alerts_not_sent = prometheus_client.Counter('elastalert_alerts_not_sent', 'Number of alerts not sent', ['rule_name']) | ||
self.prom_errors = prometheus_client.Counter('elastalert_errors', 'Number of errors for rule') | ||
self.prom_alerts_silenced = prometheus_client.Counter('elastalert_alerts_silenced', 'Number of silenced alerts', ['rule_name']) | ||
|
||
def start(self): | ||
prometheus_client.start_http_server(self.prometheus_port) | ||
|
||
def metrics_run_rule(self, rule, endtime, starttime=None): | ||
""" Increment counter every time rule is run """ | ||
try: | ||
self.prom_scrapes.labels(rule['name']).inc() | ||
finally: | ||
return self.run_rule(rule, endtime, starttime) | ||
|
||
def metrics_writeback(self, doc_type, body): | ||
""" Update various prometheus metrics accoording to the doc_type """ | ||
|
||
res = self.writeback(doc_type, body) | ||
try: | ||
if doc_type == 'elastalert_status': | ||
self.prom_hits.labels(body['rule_name']).inc(int(body['hits'])) | ||
self.prom_matches.labels(body['rule_name']).inc(int(body['matches'])) | ||
self.prom_time_taken.labels(body['rule_name']).inc(float(body['time_taken'])) | ||
elif doc_type == 'elastalert': | ||
if body['alert_sent']: | ||
self.prom_alerts_sent.labels(body['rule_name']).inc() | ||
else: | ||
self.prom_alerts_not_sent.labels(body['rule_name']).inc() | ||
elif doc_type == 'elastalert_error': | ||
self.prom_errors.inc() | ||
elif doc_type == 'silence': | ||
self.prom_alerts_silenced.labels(body['rule_name']).inc() | ||
finally: | ||
return res |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters