08 Dec 2025
03:52 PM
- last edited on
09 Dec 2025
01:13 PM
by
GosiaMurawska
Hi, we have some .PEM certs that Dynatrace doesn't identify using SSL cert extension, as these certs are not running on any domain or port.
So we want to read all details from these certs and add the result in Dynatrace.
I created a python scripts and added result in excel, but I want to do it in automated way using Dynatrace extension.
Please let us know how to achieve that.
Thank you
11 Dec 2025 03:46 AM
Hello @bhushansoni
Since you already have a Python script parsing .pem files, you can turn that into a Dynatrace Extension 2.0 (Python). At a high level, the steps are: install the Dynatrace Extensions SDK, define an activation schema, implement the logic in __main__.py, then build and upload the extension.
However, this process can be a bit complex. In one of my client projects, I followed another approach:
Ran the Python script externally. Pushed the parsed certificate data into Dynatrace using the Metrics v2 API (or OpenPipeline for richer data). Finally, created dashboards and alerts based on the ingested metrics.
11 Dec 2025 04:06 PM
Thank you for your reply , i dont want any manual steps to run the script and upload result to dynatrace , i will try other approach with extension , thank you
11 Dec 2025 08:26 PM
Featured Posts