You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting the metrics server, if either idCfg.CertFile or idCfg.CaCertFile is an empty string, a warning log will be issued due to the specifications of x509-certificate-exporter.
time="2024-08-27T21:40:07+09:00" level=warning msg="failed to parse \"\": stat : invalid argument"
The error is caused by the fs.Stat() function used in x509-certificate-exporter(Relevant section).
If idCfg.CertFile or idCfg.CaCertFile is an empty string, they need to be excluded from certificate monitoring(Relevant section).
The text was updated successfully, but these errors were encountered:
mlajkim
changed the title
Warning Log Issued on Metrics Server Startup if SIA Certificate File Path is Empty
Must exclude from certificate monitoring if SIA's Certificate File or Ca Cert File Path is Empty
Aug 28, 2024
When starting the metrics server, if either
idCfg.CertFile
oridCfg.CaCertFile
is an empty string, a warning log will be issued due to the specifications of x509-certificate-exporter.The error is caused by the fs.Stat() function used in x509-certificate-exporter(Relevant section).
If
idCfg.CertFile
oridCfg.CaCertFile
is an empty string, they need to be excluded from certificate monitoring(Relevant section).The text was updated successfully, but these errors were encountered: