<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0) in Automations</title>
    <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303497#M2719</link>
    <description>&lt;P&gt;hi Fernando&lt;BR /&gt;&lt;BR /&gt;Dynatrace Workflows is definitely the best approach here—we have implemented this before with great results. You can easily construct the required JSON-RPC 2.0 payload using Jinja templating as shown below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_1-1787124794297.png"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34054iDB43AAC531E4657B/image-size/medium?v=v2&amp;amp;px=400" alt="rgarzon1_1-1787124794297.png" title="rgarzon1_1-1787124794297.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;aproach in jinja&lt;/P&gt;&lt;LI-SPOILER&gt;{&lt;BR /&gt;"jsonrpc": "2.0",&lt;BR /&gt;"method": "history.push",&lt;BR /&gt;"params": [&lt;BR /&gt;{&lt;BR /&gt;"itemid": {{ zabbix_item_id | default(10600) }},&lt;BR /&gt;"value": {{ {&lt;BR /&gt;"problem_id": event["event.id"] | default("N/A"),&lt;BR /&gt;"title": event["event.name"] | default("Dynatrace Alert"),&lt;BR /&gt;"status": event["event.status"] | default("OPEN"),&lt;BR /&gt;"severity": event["event.category"] | default("INFRASTRUCTURE"),&lt;BR /&gt;"impact": event["event.impact"] | default("UNKNOWN"),&lt;BR /&gt;"url": event["event.details_url"] | default("")&lt;BR /&gt;} | to_json | to_json }},&lt;BR /&gt;"clock": {{ event["timestamp"] | default(now() | int) }}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"id": {{ execution.id | default(1) }}&lt;BR /&gt;}&lt;/LI-SPOILER&gt;&lt;P&gt;y si lo haces para una red interna te conviene hacerlo con el edgeconnect incluido para que puedan llegar las peticiones a tu zabbix&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Aug 2026 07:35:17 GMT</pubDate>
    <dc:creator>rgarzon1</dc:creator>
    <dc:date>2026-08-19T07:35:17Z</dc:date>
    <item>
      <title>How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303443#M2718</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;
&lt;P&gt;I'm currently working on a project to push Dynatrace Problems directly into Zabbix 7.0 using a Webhook (Custom Integration).&lt;/P&gt;
&lt;P&gt;The Challenge:&lt;/P&gt;
&lt;P&gt;The Zabbix API (/zabbix/api_jsonrpc.php) requires a specific JSON-RPC 2.0 structure (methods like history.push). The default Dynatrace Webhook UI sends a flat JSON payload, which causes Zabbix to return an "invalid params" error despite the HTTP 200 connection success.&lt;/P&gt;
&lt;P&gt;What I have tried:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Zabbix Trapper: Works manually via binary protocol, but Dynatrace speaks HTTP.&lt;/LI&gt;
&lt;LI&gt;Custom Webhook: Connects successfully, but fails at the API application layer due to the JSON format.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My Questions:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Has anyone successfully "wrapped" the Dynatrace Problem payload into a JSON-RPC compilant structure within the Webhook UI?&lt;/LI&gt;
&lt;LI&gt;Would the new Dynatrace Automation Engine (Workflows) be a better fit to construct this specific JSON-RPC call? If so, does anyone have a JS snippet for this?&lt;/LI&gt;
&lt;LI&gt;Are there any existing Extensions or templates for Zabbix 7.0 inbound alerts?&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've attached a screenshot showing the API error response for reference. Any insights or examples would be life-saving!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Fernando Moreira&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 05:56:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303443#M2718</guid>
      <dc:creator>Fernando_Moreir</dc:creator>
      <dc:date>2026-08-19T05:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303497#M2719</link>
      <description>&lt;P&gt;hi Fernando&lt;BR /&gt;&lt;BR /&gt;Dynatrace Workflows is definitely the best approach here—we have implemented this before with great results. You can easily construct the required JSON-RPC 2.0 payload using Jinja templating as shown below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_1-1787124794297.png"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34054iDB43AAC531E4657B/image-size/medium?v=v2&amp;amp;px=400" alt="rgarzon1_1-1787124794297.png" title="rgarzon1_1-1787124794297.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;aproach in jinja&lt;/P&gt;&lt;LI-SPOILER&gt;{&lt;BR /&gt;"jsonrpc": "2.0",&lt;BR /&gt;"method": "history.push",&lt;BR /&gt;"params": [&lt;BR /&gt;{&lt;BR /&gt;"itemid": {{ zabbix_item_id | default(10600) }},&lt;BR /&gt;"value": {{ {&lt;BR /&gt;"problem_id": event["event.id"] | default("N/A"),&lt;BR /&gt;"title": event["event.name"] | default("Dynatrace Alert"),&lt;BR /&gt;"status": event["event.status"] | default("OPEN"),&lt;BR /&gt;"severity": event["event.category"] | default("INFRASTRUCTURE"),&lt;BR /&gt;"impact": event["event.impact"] | default("UNKNOWN"),&lt;BR /&gt;"url": event["event.details_url"] | default("")&lt;BR /&gt;} | to_json | to_json }},&lt;BR /&gt;"clock": {{ event["timestamp"] | default(now() | int) }}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"id": {{ execution.id | default(1) }}&lt;BR /&gt;}&lt;/LI-SPOILER&gt;&lt;P&gt;y si lo haces para una red interna te conviene hacerlo con el edgeconnect incluido para que puedan llegar las peticiones a tu zabbix&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 07:35:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303497#M2719</guid>
      <dc:creator>rgarzon1</dc:creator>
      <dc:date>2026-08-19T07:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303501#M2720</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/51579"&gt;@rgarzon1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for this detailed response! The Jinja templating approach with Workflows looks incredibly powerful and exactly what Zabbix 7.0 needs for its JSON-RPC structure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have a specific constraint: I am working on Dynatrace Managed environment that currently does not have the Automation Engine / Workflows enabled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because of this, I am restricted to using the classic Custom Integration (Webhook). From your experience:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is it possible to "trick" the classic Webhook's Custom Payload to send a valid JSON-RPC 2.0 structure (including the params array)?&lt;/LI&gt;&lt;LI&gt;Or is a middleware (e.g, a Python/Node script acting as a translator) mandatory when Workflows are not available in a Managed environment?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I've already tested the history.push method via curl and it works perfectly on Zabbix 7.0, so the goal is really down to how to format that call within the limits of a Managed Webhooks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for the "Champion" level support!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fernando Moreira&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 08:17:58 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303501#M2720</guid>
      <dc:creator>Fernando_Moreir</dc:creator>
      <dc:date>2026-08-19T08:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303502#M2721</link>
      <description>&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;Maybe another solution would be create a custom extension in some Activegate since you are in Managed. It will take more time but you will have full control.&lt;/P&gt;&lt;P&gt;Python script will get problems via Dynatrace API and send them to Zabbix API. I think Python library is rich enough to format a compliant&amp;nbsp;&lt;SPAN&gt;JSON-RPC&amp;nbsp;structure.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Another option would be Dynatrace is not pushing, Zabbix is pulling problems via Dynatrace API. But you need to use LLD in Zabbix and another Zabbix features to create problems dynamically.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 08:32:59 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303502#M2721</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-08-19T08:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303503#M2722</link>
      <description>&lt;P&gt;Options on Dynatrace Managed are limited. You need a service in between for the conversion.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 08:35:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303503#M2722</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-08-19T08:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to: Inbound Integration from Dynatrace Problems to Zabbix 7.0 (JSON-RPC 2.0)</title>
      <link>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303535#M2723</link>
      <description>&lt;P&gt;Hi Fernando&lt;/P&gt;&lt;P&gt;did you try something like this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_1-1787152727363.png"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34066iEB61477058D18A08/image-size/medium?v=v2&amp;amp;px=400" alt="rgarzon1_1-1787152727363.png" title="rgarzon1_1-1787152727363.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;{&lt;BR /&gt;"jsonrpc": "2.0",&lt;BR /&gt;"method": "history.push",&lt;BR /&gt;"params": [&lt;BR /&gt;{&lt;BR /&gt;"itemid": 10600,&lt;BR /&gt;"value": "{\"problem_id\":\"{ProblemID}\",\"pid\":\"{PID}\",\"title\":\"{ProblemTitle}\",\"state\":\"{State}\",\"impact\":\"{ProblemImpact}\",\"severity\":\"{ProblemSeverity}\",\"impacted_entities\":\"{NamesOfImpactedEntities}\",\"url\":\"{ProblemURL}\"}"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"id": 1&lt;BR /&gt;}&lt;/LI-SPOILER&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rgarzon1_0-1787152609933.png"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/34065i01DA8BC7B09FE32B/image-size/medium?v=v2&amp;amp;px=400" alt="rgarzon1_0-1787152609933.png" title="rgarzon1_0-1787152609933.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;theroricaly works. but idk, i dont have a zabbix in this moment.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 15:19:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/How-to-Inbound-Integration-from-Dynatrace-Problems-to-Zabbix-7-0/m-p/303535#M2723</guid>
      <dc:creator>rgarzon1</dc:creator>
      <dc:date>2026-08-19T15:19:06Z</dc:date>
    </item>
  </channel>
</rss>

