28 Jul 2026 12:50 AM
We have configured SSL extension but wondering how can SSL extension data help us identify self-signed certificates, we have enabled UA options also.
Another thing the DQL in Infra and Operations app needs to be fixed.
Solved! Go to Solution.
28 Jul 2026 03:16 AM - edited 28 Jul 2026 03:16 AM
@lovleen There is no direct indicator to say if a certificate is self signed or issued by a trusted certificate authority. One way to identify is by looking at Issuer and Subject from the certificate metadata collected . You can try the below DQL to get the details .
fetch `dt.entity.python:certificate_monitor_certificate`
| fieldsAdd entity.name, entity.type, common_name, host_port, cert_lifecycle, certificate_stage, issuer_common_name, issuer_org_name, port, subject_common_name, subject_org_name, validity_not_after, validity_not_before, source
28 Jul 2026 04:23 AM
Thanks @p_devulapalli
Featured Posts