keeping track of certs found by hash
This commit is contained in:
parent
11f9920ff9
commit
06f4aed693
|
@ -221,6 +221,14 @@ def sync(source, user):
|
||||||
new_certs, updated_certs, updated_certs_by_hash = sync_certificates(source, user)
|
new_certs, updated_certs, updated_certs_by_hash = sync_certificates(source, user)
|
||||||
new_endpoints, updated_endpoints, updated_endpoints_by_hash = sync_endpoints(source)
|
new_endpoints, updated_endpoints, updated_endpoints_by_hash = sync_endpoints(source)
|
||||||
|
|
||||||
|
metrics.send("sync.updated_certs_by_hash",
|
||||||
|
"gauge", updated_certs_by_hash,
|
||||||
|
metric_tags={"source": source.label})
|
||||||
|
|
||||||
|
metrics.send("sync.updated_endpoints_by_hash",
|
||||||
|
"gauge", updated_endpoints_by_hash,
|
||||||
|
metric_tags={"source": source.label})
|
||||||
|
|
||||||
source.last_run = arrow.utcnow()
|
source.last_run = arrow.utcnow()
|
||||||
database.update(source)
|
database.update(source)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue