# emitting the count of certificates on the source

This commit is contained in:
Hossein Shafagh 2020-04-03 16:51:24 -07:00
parent 9ddfd9f3b1
commit 5add647148
1 changed files with 5 additions and 0 deletions

View File

@ -193,6 +193,11 @@ def sync_certificates(source, user):
s = plugins.get(source.plugin_name)
certificates = s.get_certificates(source.options)
# emitting the count of certificates on the source
metrics.send("sync_certificates_count",
"gauge", len(certificates),
metric_tags={"source": source.label})
for certificate in certificates:
exists, updated_by_hash = find_cert(certificate)