<?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: Workflow in Automations</title>
    <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299387#M2600</link>
    <description>&lt;P&gt;It is definitely SaaS. Workflows are SaaS only feature.&lt;/P&gt;</description>
    <pubDate>Wed, 13 May 2026 06:35:28 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2026-05-13T06:35:28Z</dc:date>
    <item>
      <title>Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299341#M2596</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello Community,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am working on creating a Dynatrace workflow where I start with &lt;STRONG&gt;sample JSON data&lt;/STRONG&gt; and need to convert that JSON into the &lt;STRONG&gt;BizEvents format&lt;/STRONG&gt; so it can be ingested into Grail.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you please help me with the correct JavaScript structure for this conversion? Here’s the sample JSON I am working with and the code I have so far:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;javascript&lt;/SPAN&gt;Because&amp;nbsp; when i am ingesting and fetching bizevents through DQL&amp;nbsp; I am getting No records found in the dashboards&lt;BR /&gt;The approach I have used is - Trigger-&amp;gt;Javascript-&amp;gt;Ingest Business events&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;function&lt;/SPAN&gt; &lt;SPAN&gt;main&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;{
  &lt;/SPAN&gt;&lt;SPAN&gt;// Sample JSON data&lt;/SPAN&gt;
  &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;data &lt;/SPAN&gt;&lt;SPAN&gt;= &lt;/SPAN&gt;&lt;SPAN&gt;{
    &lt;/SPAN&gt;&lt;SPAN&gt;requestId&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"12345"&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;dateTime&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"2024-04-22T14:30:00.000Z"&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;totalProxies&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;proxyList&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[
      &lt;/SPAN&gt;&lt;SPAN&gt;{
        &lt;/SPAN&gt;&lt;SPAN&gt;proxyName&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"ddd"&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;environment&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"hhh"&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;revision&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;created&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"2024-04-22T14:30:00.000Z"&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;lastModified&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"2024-04-22T14:30:00.000Z"&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;basePath&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"/basePath"&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;deployState&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;,
        &lt;/SPAN&gt;&lt;SPAN&gt;TargetServer&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Server1"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Server2"&lt;/SPAN&gt;&lt;SPAN&gt;],
        &lt;/SPAN&gt;&lt;SPAN&gt;targetEndpoint&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"/Service1"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"/Service2"&lt;/SPAN&gt;&lt;SPAN&gt;],
        &lt;/SPAN&gt;&lt;SPAN&gt;sharedFlows&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"sgg"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"sgg"&lt;/SPAN&gt;&lt;SPAN&gt;]
      &lt;/SPAN&gt;&lt;SPAN&gt;}
    &lt;/SPAN&gt;&lt;SPAN&gt;]
  &lt;/SPAN&gt;&lt;SPAN&gt;};

  &lt;/SPAN&gt;&lt;SPAN&gt;// Convert each proxy into a BizEvent&lt;/SPAN&gt;
  &lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;data.&lt;/SPAN&gt;&lt;SPAN&gt;proxyList&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;map&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;proxy =&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;({
    &lt;/SPAN&gt;&lt;SPAN&gt;"event.provider"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"apigee"&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;"event.type"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"apigee.proxy.metadata"&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;"event.category"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"inventory"&lt;/SPAN&gt;&lt;SPAN&gt;,
    &lt;/SPAN&gt;&lt;SPAN&gt;attributes&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;{
      &lt;/SPAN&gt;&lt;SPAN&gt;bucket&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"test-poc"&lt;/SPAN&gt;&lt;SPAN&gt;,   &lt;/SPAN&gt;&lt;SPAN&gt;// custom marker&lt;/SPAN&gt;
      &lt;SPAN&gt;requestId&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;data.&lt;/SPAN&gt;&lt;SPAN&gt;requestId&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;dateTime&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;data.&lt;/SPAN&gt;&lt;SPAN&gt;dateTime&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;totalProxies&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;data.&lt;/SPAN&gt;&lt;SPAN&gt;totalProxies&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;proxyName&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;proxyName&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;environment&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;environment&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;revision&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;revision&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;created&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;created&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;lastModified&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;lastModified&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;basePath&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;basePath&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;deployState&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;deployState&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;targetServers&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;TargetServer&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;targetEndpoints&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;targetEndpoint&lt;/SPAN&gt;&lt;SPAN&gt;,
      &lt;/SPAN&gt;&lt;SPAN&gt;sharedFlows&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;proxy.&lt;/SPAN&gt;&lt;SPAN&gt;sharedFlows&lt;/SPAN&gt;
    &lt;SPAN&gt;}
  &lt;/SPAN&gt;&lt;SPAN&gt;}));&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;H3&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; My Questions&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Is this the correct way to structure BizEvents JSON in a workflow JavaScript step?&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Do I need to add or change any mandatory fields for Grail ingestion?&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Are there best practices for handling multiple proxies in the array (e.g., batching vs individual events)?&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance for your guidance!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 11:41:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299341#M2596</guid>
      <dc:creator>tmehta3</dc:creator>
      <dc:date>2026-05-12T11:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299346#M2597</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Since you are in Managed... Are workflows available in your environment?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 12:29:56 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299346#M2597</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-05-12T12:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299347#M2598</link>
      <description>&lt;P&gt;Yes workflows are available in my environment . I am working on staging now&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 12:32:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299347#M2598</guid>
      <dc:creator>tmehta3</dc:creator>
      <dc:date>2026-05-12T12:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299367#M2599</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was not aware workflows were available in Managed environment... Are you in SaaS?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 16:03:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299367#M2599</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-05-12T16:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299387#M2600</link>
      <description>&lt;P&gt;It is definitely SaaS. Workflows are SaaS only feature.&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 06:35:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299387#M2600</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-05-13T06:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299391#M2601</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/96104"&gt;@tmehta3&lt;/a&gt;&amp;nbsp;I'm not sure what issue you are trying to solve. Maybe a different option of raising business events - (in OpenPipeline) may fit your case better. Be aware that workflows have some execution limitations and you may run in throttling issues if your workflow is executed too often.&lt;BR /&gt;&lt;BR /&gt;For an example to raise a bizevent from JavaScript in the platform, see&amp;nbsp;&lt;A href="https://developer.dynatrace.com/develop/sdks/client-classic-environment-v2/#businesseventsclient" target="_blank"&gt;https://developer.dynatrace.com/develop/sdks/client-classic-environment-v2/#businesseventsclient&lt;/A&gt;&amp;nbsp;(example included).&lt;BR /&gt;As then it comes to the data:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You need the mandatory fields - event.provider and event.type at least with event.category being recommended&lt;/LI&gt;&lt;LI&gt;Follow the semantic dictionary -&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/semantic-dictionary-business-analytics#business-events-fields" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/semantic-dictionary-business-analytics#business-events-fields&lt;/A&gt;&amp;nbsp;and I recommend following that in general for your attributes&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/shortlink/semantic-dictionary-global-field-reference" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/semantic-dictionary-global-field-reference&lt;/A&gt;&amp;nbsp;(typically fields such as url.path for example)&lt;/LI&gt;&lt;LI&gt;If you really need workflow and you want to create multiple events from a single execution, send multiple events in a batch&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 13 May 2026 07:51:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299391#M2601</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-05-13T07:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299393#M2602</link>
      <description>&lt;P&gt;Hi there,&lt;BR /&gt;&lt;BR /&gt;I've checked this on my own demo environment, I am able to ingest this event via:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;/*
* This function will run in the DYNATRACE JavaScript runtime.
* For information visit https://dt-url.net/functions-help
*/
import { businessEventsClient } from '@dynatrace-sdk/client-classic-environment-v2';

export default async function () {

  // Sample JSON data
  const data = {
    requestId: "12345",
    dateTime: "2024-04-22T14:30:00.000Z",
    totalProxies: 100,
    proxyList: [
      {
        proxyName: "ddd",
        environment: "hhh",
        revision: 1,
        created: "2024-04-22T14:30:00.000Z",
        lastModified: "2024-04-22T14:30:00.000Z",
        basePath: "/basePath",
        deployState: true,
        TargetServer: ["Server1", "Server2"],
        targetEndpoint: ["/Service1", "/Service2"],
        sharedFlows: ["sgg", "sgg"]
      }
    ]}

  console.log(data);


  // Convert each proxy into a BizEvent
  const mapEvent =  data.proxyList.map(proxy =&amp;gt; ({
    "event.provider": "apigee",
    "event.type": "apigee.proxy.metadata",
    "event.category": "inventory",
    "attributes": {
      bucket: "test-poc",   // custom marker
      requestId: data.requestId,
      dateTime: data.dateTime,
      totalProxies: data.totalProxies,
      proxyName: proxy.proxyName,
      environment: proxy.environment,
      revision: proxy.revision,
      created: proxy.created,
      lastModified: proxy.lastModified,
      basePath: proxy.basePath,
      deployState: proxy.deployState,
      targetServers: proxy.TargetServer,
      targetEndpoints: proxy.targetEndpoint,
      sharedFlows: proxy.sharedFlows
    }
  }));
  console.log(mapEvent)

businessEventsClient
  .ingest({
    body: mapEvent,
    type: 'application/json',
  })
  .then(() =&amp;gt; console.log('Event ingested'))
  .catch((e) =&amp;gt; console.error('Failed to ingest event: ' + e));
  
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;The event pops up in my environment, could you verify whether you are doing the same steps?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michiel_otten_0-1778659090419.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/33135iB0ED1B23849B575E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michiel_otten_0-1778659090419.png" alt="michiel_otten_0-1778659090419.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 07:59:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299393#M2602</guid>
      <dc:creator>michiel_otten</dc:creator>
      <dc:date>2026-05-13T07:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow</title>
      <link>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299394#M2603</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have just moved this thread to "Automations" thread instead of Managed.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 08:02:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Automations/Workflow/m-p/299394#M2603</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2026-05-13T08:02:42Z</dc:date>
    </item>
  </channel>
</rss>

