<?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: DQL makeTimeseries with Summarize in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289822#M2795</link>
    <description>&lt;P&gt;Julian, my question now is if the Guardian opens the problem by itself, or do i need a workflow to look at the guardian and open a problem based on its validation?&lt;/P&gt;</description>
    <pubDate>Wed, 19 Nov 2025 09:42:08 GMT</pubDate>
    <dc:creator>Joao1</dc:creator>
    <dc:date>2025-11-19T09:42:08Z</dc:date>
    <item>
      <title>Combine makeTimeseries with Summarize in DQL for Advanced Analysis</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289063#M2723</link>
      <description>&lt;P&gt;We had a requirement:&lt;/P&gt;
&lt;P&gt;To alert when a certain event ID in the Application Log didn't occur in a time window of 2 hours.&lt;/P&gt;
&lt;P&gt;Since metric events have a limit of 60 minutes in its violating window, we talked internally and thought about the following process:&lt;/P&gt;
&lt;P&gt;1. First create a CUSTOM_INFO event through pipeline to look for that event with a dt.davis.timeout of 120 minutes.&lt;/P&gt;
&lt;P&gt;2. Create a Davis Anomaly Detector to look at the amount of ACTIVE events at ANY time to see if it was below 1. If it was, then we would create the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Problem:&lt;/P&gt;
&lt;P&gt;We're currently having trouble creating the necessary DQL to create a timeseries based on a Summarize (which is the count of the total ACTIVE events at any time).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the DQL we currently managed to create:&lt;/P&gt;
&lt;P&gt;fetch events&lt;BR /&gt;| filter event.status == "ACTIVE"&lt;BR /&gt;and event.type == "CUSTOM_INFO"&lt;BR /&gt;and matchesPhrase(event.name, "Event")&lt;BR /&gt;| summarize totalCount = count(), by:{timestamp=bin(timestamp,1m)}&lt;BR /&gt;| makeTimeseries test = avg(totalCount), by:{timestamp}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your help! Thanks in advance.&lt;/P&gt;
&lt;P&gt;João&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 12:44:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289063#M2723</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-12-17T12:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289105#M2727</link>
      <description>&lt;P&gt;Hi João &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You’re very close — your DQL is already correct in principle.&lt;BR /&gt;However, it’s not necessary to explicitly specify by:{timestamp} in the makeTimeseries function.&lt;/P&gt;&lt;P&gt;The time dimension is implicit: makeTimeseries automatically interprets the aggregated data over time (based on the timestamp field). So you can simplify your query as follows:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;fetch events
| filter event.status == "ACTIVE"
and event.type == "CUSTOM_INFO"
and matchesPhrase(event.name, "Event")
| summarize totalCount = count(), by:{timestamp=bin(timestamp,1m)}
| makeTimeseries test = avg(totalCount)&lt;/LI-CODE&gt;&lt;P&gt;This will produce the same result — the by:timestamp is redundant because the function already treats the timestamp as the time dimension by default.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:10:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289105#M2727</guid>
      <dc:creator>JeanBlanc</dc:creator>
      <dc:date>2025-11-05T14:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289107#M2728</link>
      <description>&lt;P&gt;Hi Jean,&lt;/P&gt;&lt;P&gt;I used your query, with the following results:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joao1_0-1762352015612.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30821i7BFBF621AD3B9C0F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joao1_0-1762352015612.png" alt="Joao1_0-1762352015612.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is still the same, this query shows when the events happened at a certain time. And what we want is&amp;nbsp;&lt;SPAN&gt;the count of the total ACTIVE events at any time, which should be a continuous line of (in this case with a timeframe of 2 hours) value 4. Is this possible?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:15:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289107#M2728</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-05T14:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289113#M2729</link>
      <description>&lt;P&gt;Ah, I see — I might have misunderstood your goal earlier.&lt;BR /&gt;If what you want is to group and count the &lt;STRONG&gt;ACTIVE&lt;/STRONG&gt; events over a 2-hour period, you can try something like this:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;fetch events 
| filter event.status == "ACTIVE" and event.type == "CUSTOM_INFO" and matchesPhrase(event.name, "Event") 
| summarize totalCount = count(), by:{timestamp=bin(timestamp, 2h)} 
| makeTimeseries test = avg(totalCount)&lt;/LI-CODE&gt;&lt;P&gt;This should group your active events into 2-hour windows and show a more stable count over time.&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;Jean&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:37:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289113#M2729</guid>
      <dc:creator>JeanBlanc</dc:creator>
      <dc:date>2025-11-05T14:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289114#M2730</link>
      <description>&lt;P&gt;Hey Jean,&lt;/P&gt;&lt;P&gt;Still not what we're trying to accomplish. That query still returns the datapoints based on when they arrived. We want to create a anomaly detector based on the amount of active events with that filter at any time completely disregarding when they arrived. But i do understand we need a timeframe for the anomaly detector to work, and that is the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:44:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289114#M2730</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-05T14:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289115#M2731</link>
      <description>&lt;P&gt;Yes, Davis Anomaly Detector only works with a timeseries metric and a timeframe from 1 to 60 minutes.&lt;/P&gt;&lt;P&gt;Maybe you need to create a metric based on your needs and then create a detector to alert when an issue occured.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:49:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289115#M2731</guid>
      <dc:creator>JeanBlanc</dc:creator>
      <dc:date>2025-11-05T14:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289117#M2732</link>
      <description>&lt;P&gt;We didn't create a metric because of specific problem of a timeframe from 1 to 60 minutes. The solution we found is explained in the original post in the step 1 and 2. And we're stuck on step 2.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:53:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289117#M2732</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-05T14:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289152#M2735</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63241"&gt;@Joao1&lt;/a&gt;&amp;nbsp;to solve the challenge, I'd not use Davis Anomaly Detector (which requires time series data and works on last hour data only), but site reliability guardian instead. Trigger it from a simple workflow. Raise Davis problem opening event in an open pipeline processing the site reliability guardian.&amp;nbsp;&lt;/P&gt;&lt;P&gt;CC &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/40725"&gt;@PedroDeodato&lt;/a&gt; / &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/77112"&gt;@PedroSantos&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 09:54:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289152#M2735</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-06T09:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289160#M2736</link>
      <description>&lt;P&gt;Hello Julius,&lt;/P&gt;&lt;P&gt;So, something like this?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joao1_0-1762436612256.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30828i2848067BD51BF709/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joao1_0-1762436612256.png" alt="Joao1_0-1762436612256.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 13:43:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289160#M2736</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-06T13:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289173#M2737</link>
      <description>&lt;P&gt;You are truly a legend,&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;!!&lt;/P&gt;&lt;P&gt;Will definitely try it out!&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 18:06:04 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289173#M2737</guid>
      <dc:creator>PedroDeodato</dc:creator>
      <dc:date>2025-11-06T18:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289206#M2741</link>
      <description>&lt;P&gt;You can do that on the logs directly.&amp;nbsp;&lt;BR /&gt;On events, I would not filter on active status. Initially, your requirement is:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;SPAN&gt;To alert when a certain event ID in the Application Log didn't occur in a time window of 2 hours.&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So if you create some events from logs, you just want to query and summarize. Just if you want to grab it as a davis event, you might need to filter on event.start and not only on timestamp as for non-active events, the timestamp represents the time when the event changed its status to closed for example.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.davis.events, from:-2h
| filter matchesPhrase(event.name, "Event")
| filter event.category=="CUSTOM_ALERT"
| filter event.start&amp;gt;now()-2h
| summarize count()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2025 10:29:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289206#M2741</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-07T10:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289820#M2794</link>
      <description>&lt;P&gt;So, i assume guardian can validate on a determined timeframe, in this case 2 hours, so that means i don't have to strictly use events. Instead i can query logs directly as you said and then configure the guardian to alert when the count is below 0 on a 2 hour timeframe, correct?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 09:37:37 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289820#M2794</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-19T09:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289822#M2795</link>
      <description>&lt;P&gt;Julian, my question now is if the Guardian opens the problem by itself, or do i need a workflow to look at the guardian and open a problem based on its validation?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 09:42:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289822#M2795</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-19T09:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289841#M2796</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63241"&gt;@Joao1&lt;/a&gt;&amp;nbsp;SRG does not open any Davis problems. You can do that in the openpipeline:&lt;BR /&gt;First create a bizevents OpenPipeline pipeline:&lt;BR /&gt;Add a DQL processing step matching:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;event.type == "guardian.validation.objective"&lt;/LI-CODE&gt;&lt;P&gt;with DQL:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;parse `guardian.objective`, """JSON:objective"""
| fieldsAdd objective.name=objective[name]
, objective.objectiveType=objective[objectiveType]
, objective.dqlQuery=objective[dqlQuery]
, objective.comparisonOperator=objective[comparisonOperator]
, objective.target=objective[target]
, objective.warning=objective[warning]
, objective.status=objective[status]
, objective.value=objective[value]
, objective.fieldName=objective[fieldName]
| fieldsRemove objective&lt;/LI-CODE&gt;&lt;P&gt;This will help you to preprocess the objective validation results.&lt;BR /&gt;&lt;BR /&gt;In the Davis tab in the pipeline, create a Davis event when conditions match, example below. Adapt Objective Name and Guardian ID&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;event.provider == "dynatrace.site.reliability.guardian" 
and event.type=="guardian.validation.objective" 
and guardian.id=="vu9U3hXa3q0AAAABADFhcHA6ZHluYXRyYWNlLnNpdGUucmVsaWFiaWxpdHkuZ3VhcmRpYW46Z3VhcmRpYW5zAAZ0ZW5hbnQABnRlbmFudAAkYmZiMGQ3NjktNzQyMS0zOTdmLWIyYjItMDEzZmE5ZjI1NmYxvu9U3hXa3q0"
and objective.status=="fail"
and matchesPhrase(objective.name,"My Objective")&lt;/LI-CODE&gt;&lt;P&gt;And provide data for the Davis event you want (don't forget to add dt.davis.timeout to set the problem duration for example).&lt;BR /&gt;&lt;BR /&gt;And finally&amp;nbsp;create a route for bizevents for SRG:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_0-1763551492842.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30948i9834809541879010/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_0-1763551492842.png" alt="Julius_Loman_0-1763551492842.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SRG bizevents should be then processed by the pipeline you just created. You will need to create the pipeline just once and then you can add davis events for other SRG related objective validations, (different SRGs, objectives, etc...).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:39:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289841#M2796</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-19T11:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289844#M2797</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63241"&gt;@Joao1&lt;/a&gt;&amp;nbsp;Correct, trigger the validation from a simple workflow like this, for example every 1 hour and set the timeframe for SRG to 2 hours. So every hour, the SRG will be called for timeframe of last two hours:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_1-1763551937837.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30949iC5595FB2F4A72CCE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_1-1763551937837.png" alt="Julius_Loman_1-1763551937837.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the SRG you need to create the objective on logs like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch logs
| filter matchesPhrase(content, "this message should occur")
| summarize count=count()&lt;/LI-CODE&gt;&lt;P&gt;And add a condition of your choice:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_2-1763552264107.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30950iE71AE7560E281E18/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_2-1763552264107.png" alt="Julius_Loman_2-1763552264107.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:37:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289844#M2797</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-19T11:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289847#M2798</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;, i created everything as you said, but the problem is not being created.&lt;/P&gt;&lt;P&gt;I can see that the event is entering the pipeline as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joao1_0-1763553393397.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30951iBEAA7AB5F711C841/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joao1_0-1763553393397.png" alt="Joao1_0-1763553393397.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can that graph, when it goes up it's me executing the workflow to create the bizevent based on the guardian validation.&lt;/P&gt;&lt;P&gt;i have the parsing as you said inside the pipeline, and then i created in the Data Extraction the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;event.type == "guardian.validation.finished"&lt;BR /&gt;and matchesPhrase(guardian.name, "test")&lt;BR /&gt;and matchesPhrase(validation.status, "fail")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the properties, event.type is set as CUSTOM_ALERT.&lt;/P&gt;&lt;P&gt;I have these properties though:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joao1_1-1763553535268.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30952iF6BD7BDB2C9CA6C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joao1_1-1763553535268.png" alt="Joao1_1-1763553535268.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can i do that or is that the reason for the problem to not open?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:59:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289847#M2798</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-19T11:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289850#M2799</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/63241"&gt;@Joao1&lt;/a&gt;,&amp;nbsp; please see the validation results in a notebook:&lt;BR /&gt;&lt;BR /&gt;fetch bizevents&lt;BR /&gt;| filter&amp;nbsp;&lt;SPAN&gt;event.type == "guardian.validation.finished"&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;and check the data you have.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 12:17:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289850#M2799</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-19T12:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289856#M2800</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;executed the dql query as requested, i have various entries, the most recent one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"timestamp": "2025-11-19T12:26:28.541000000Z",&lt;BR /&gt;"validation.triggered_by.user.id": "30683445-5db3-4298-ba95-ed1beb67c869",&lt;BR /&gt;"validation.id": "d7c1aba1-698e-4b5c-94d6-97ee25d1e47c",&lt;BR /&gt;"event.id": "450b6a24-acbf-48da-bd25-be573d191701",&lt;BR /&gt;"guardian.description": "This guardian is used to validate how many events occured in a timeframe of two hours. Event is there is no events in that timeframe we want to alert.",&lt;BR /&gt;"validation.from": "2025-11-19T10:26:28.149Z",&lt;BR /&gt;"validation.workflow.trigger_type": "Manual",&lt;BR /&gt;"dt.openpipeline.pipelines": [&lt;BR /&gt;"bizevents:default"&lt;BR /&gt;],&lt;BR /&gt;"validation.workflow.type": "STANDARD",&lt;BR /&gt;"guardian.id": "vu9U3hXa3q0AAAABADFhcHA6ZHluYXRyYWNlLnNpdGUucmVsaWFiaWxpdHkuZ3VhcmRpYW46Z3VhcmRpYW5zAAZ0ZW5hbnQABnRlbmFudAAkNjhhNzdhZWUtZmQwZi0zYzliLTg4YjktMDE4MGJjMGZjMjY3vu9U3hXa3q0",&lt;BR /&gt;"event.provider": "dynatrace.site.reliability.guardian",&lt;BR /&gt;"guardian.name": "Application Name (sss) - Event 114",&lt;BR /&gt;"validation.summary": "{\"pass\":0,\"warning\":0,\"fail\":1,\"error\":0,\"info\":0}",&lt;BR /&gt;"validation.errors": "[]",&lt;BR /&gt;"guardian.variables": "[]",&lt;BR /&gt;"dt.openpipeline.source": "/api/v2/bizevents/ingest",&lt;BR /&gt;"event.kind": "BIZ_EVENT",&lt;BR /&gt;"validation.workflow.execution.id": "d4133133-864c-447e-b6b2-100b58bd4bcc",&lt;BR /&gt;"validation.workflow.id": "648494f6-58c1-4b33-9017-1783cf7e0f79",&lt;BR /&gt;"validation.to": "2025-11-19T12:26:28.149Z",&lt;BR /&gt;"event.type": "guardian.validation.finished",&lt;BR /&gt;"validation.status": "fail"&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the DQL matcher i have in the data extraction:&lt;/P&gt;&lt;P&gt;event.type == "guardian.validation.finished"&lt;/P&gt;&lt;P&gt;and it's not opening the problem.&lt;/P&gt;&lt;P&gt;event type:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joao1_0-1763555537587.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30954iF2E1C319C2AEA796/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joao1_0-1763555537587.png" alt="Joao1_0-1763555537587.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 12:32:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289856#M2800</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-19T12:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289887#M2805</link>
      <description>&lt;P&gt;Looks like the event did not go to a custom pipeline:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"dt.openpipeline.pipelines": [
"bizevents:default"
],&lt;/LI-CODE&gt;&lt;P&gt;I don't see the objective fields (see DQL processor in my pipeline)&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 15:46:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289887#M2805</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-11-19T15:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: DQL makeTimeseries with Summarize</title>
      <link>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289890#M2806</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;, it's fixed.&lt;/P&gt;&lt;P&gt;My dynamic route was wrongly configured. It had&amp;nbsp;event.type == "guardian.validation.objective" instead of&amp;nbsp;event.type == "guardian.validation.finished"&lt;/P&gt;&lt;P&gt;I fixed it and the problem opened. Thanks so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 16:40:23 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Combine-makeTimeseries-with-Summarize-in-DQL-for-Advanced/m-p/289890#M2806</guid>
      <dc:creator>Joao1</dc:creator>
      <dc:date>2025-11-19T16:40:23Z</dc:date>
    </item>
  </channel>
</rss>

