27 Nov 2024
06:17 AM
- last edited on
27 Nov 2024
08:17 AM
by
MaciejNeumann
Hi,
I need some help/advice regarding migrating Python extension V1.0 to SQL Data source extension 2.0 (https://docs.dynatrace.com/docs/ingest-from/extensions20/data-sources/sql/sql-reference) In python it executes some SQL queries which I can migrate to metrics or dimensions in SQL Data source extension 2.0. But at some point in extension V1.0 it uses python function device.report_custom_info_event which adds a info event to the custom device.
How can migrate report_custom_info_event to extension V2.0 (SQL Data source)
Thank you so much for your support
Solved! Go to Solution.
27 Nov 2024 11:46 AM
You'd have to ingest it as log lines instead of events. You can then extract events from said log lines in case you need it in that format.
14 Jan 2025 03:46 PM
Thanks I will try this