Merge pull request #2832 from hosseinsh/metrics-tags
fixing metrics: source is not dict
This commit is contained in:
commit
3beaedc2fa
|
@ -343,7 +343,7 @@ def sync_source(source):
|
||||||
|
|
||||||
log_data["message"] = "Done syncing source"
|
log_data["message"] = "Done syncing source"
|
||||||
current_app.logger.debug(log_data)
|
current_app.logger.debug(log_data)
|
||||||
metrics.send(f"{function}.success", 'counter', 1, metric_tags=source)
|
metrics.send(f"{function}.success", 'counter', 1, metric_tags={"source": source})
|
||||||
red.set(f'{function}.last_success', int(time.time()))
|
red.set(f'{function}.last_success', int(time.time()))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue