Getting Statistics on Certs Generated/Expiration #387
Replies: 3 comments 4 replies
-
the other thing is many of these are stored as go bytes. trying to convert them to something human readable would be helpful |
Beta Was this translation helpful? Give feedback.
-
For number of ACME certificates you can use For non-acme certificates the answer is more convoluted. |
Beta Was this translation helpful? Give feedback.
-
More generally, we definitely need a better way of getting reporting metrics from the DB. It's high on our list of priorities. There are a handful of factors that have kept us from implementing it thus far:
|
Beta Was this translation helpful? Give feedback.
-
We see the below list of tables in the mysql database
acme_account_orders_index
acme_accounts
acme_authzs
acme_certs
acme_challenges
acme_keyID_accountID_index
acme_orders
nonces
revoked_ssh_certs
revoked_x509_certs
ssh_certs
ssh_host_principals
ssh_hosts
ssh_users
used_ott
x509_certs
Which of these can be used to get the number of ACME certs issued? same goes for number of manually signed certs? Can we get info like expiration date for certs that we signed from this, or maybe some help in deriving that? if we had the list of certs that would work as well, as we could from there pull what we need.
Beta Was this translation helpful? Give feedback.
All reactions