<?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: XQL chart editor in Cortex XDR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-chart-editor/m-p/1222172#M7978</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/1602113155"&gt;@T.Nurmi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This took a whole lot of effort to make the query. Please refer to below:&lt;/P&gt;
&lt;P&gt;config timeframe = 1y&lt;BR /&gt;| dataset = incidents&lt;BR /&gt;| filter status in (ENUM.RESOLVED_FALSE_POSITIVE, ENUM.RESOLVED_AUTO_RESOLVE)&lt;BR /&gt;| fields creation_time, status&lt;BR /&gt;| alter month = format_timestamp("%Y-%m", creation_time) // Year-Month format&lt;BR /&gt;| alter false_positive_count = if(status = ENUM.RESOLVED_FALSE_POSITIVE, 1, 0)&lt;BR /&gt;| alter auto_resolve_count = if(status = ENUM.RESOLVED_AUTO_RESOLVE , 1, 0)&lt;BR /&gt;| comp sum(false_positive_count) as false_positive_total, sum(auto_resolve_count) as auto_resolve_total by month&lt;BR /&gt;| replacenull false_positive_total = 0, auto_resolve_total = 0&lt;BR /&gt;| sort desc month&lt;/P&gt;
&lt;P&gt;| view graph type = column subtype = grouped show_callouts = `true` xaxis = month yaxis = false_positive_total,auto_resolve_total seriescolor("false_positive_total","#ff0000") seriescolor("auto_resolve_total","#0000ff") xaxistitle = "Month" yaxistitle = "Number of Incidents" seriestitle("false_positive_total","Resolved False Positives") seriestitle("auto_resolve_total","Auto Resolved Incidents")&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you feel this has answered your query, please let us know by clicking like and on "mark this as a Solution". Thank you.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Feb 2025 10:54:13 GMT</pubDate>
    <dc:creator>aspatil</dc:creator>
    <dc:date>2025-02-27T10:54:13Z</dc:date>
    <item>
      <title>XQL chart editor</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-chart-editor/m-p/1221130#M7932</link>
      <description>&lt;P&gt;Hi. just i'm little stuck...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;config timeframe = 1y&lt;BR /&gt;|dataset= incidents&lt;BR /&gt;|filter (status in (ENUM.RESOLVED_FALSE_POSITIVE,RESOLVED_AUTO_RESOLVE))&lt;BR /&gt;|fields creation_time ,status&lt;BR /&gt;|alter month = format_timestamp("%m",creation_time )&lt;BR /&gt;|sort asc month&lt;BR /&gt;|comp count(status ) as total_auto_resolved_inc_month by month,status&lt;BR /&gt;| view graph type = column subtype = grouped xaxis = month yaxis = total_auto_resolved_inc_month&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and i got this result&amp;gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TNurmi_0-1740054064047.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/66134i5E6D2E3F54C05168/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TNurmi_0-1740054064047.png" alt="TNurmi_0-1740054064047.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and i like to get two different line with same month. Now there is those two different status for same line...&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 12:23:17 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-chart-editor/m-p/1221130#M7932</guid>
      <dc:creator>T.Nurmi</dc:creator>
      <dc:date>2025-02-20T12:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: XQL chart editor</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-chart-editor/m-p/1222172#M7978</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/1602113155"&gt;@T.Nurmi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This took a whole lot of effort to make the query. Please refer to below:&lt;/P&gt;
&lt;P&gt;config timeframe = 1y&lt;BR /&gt;| dataset = incidents&lt;BR /&gt;| filter status in (ENUM.RESOLVED_FALSE_POSITIVE, ENUM.RESOLVED_AUTO_RESOLVE)&lt;BR /&gt;| fields creation_time, status&lt;BR /&gt;| alter month = format_timestamp("%Y-%m", creation_time) // Year-Month format&lt;BR /&gt;| alter false_positive_count = if(status = ENUM.RESOLVED_FALSE_POSITIVE, 1, 0)&lt;BR /&gt;| alter auto_resolve_count = if(status = ENUM.RESOLVED_AUTO_RESOLVE , 1, 0)&lt;BR /&gt;| comp sum(false_positive_count) as false_positive_total, sum(auto_resolve_count) as auto_resolve_total by month&lt;BR /&gt;| replacenull false_positive_total = 0, auto_resolve_total = 0&lt;BR /&gt;| sort desc month&lt;/P&gt;
&lt;P&gt;| view graph type = column subtype = grouped show_callouts = `true` xaxis = month yaxis = false_positive_total,auto_resolve_total seriescolor("false_positive_total","#ff0000") seriescolor("auto_resolve_total","#0000ff") xaxistitle = "Month" yaxistitle = "Number of Incidents" seriestitle("false_positive_total","Resolved False Positives") seriestitle("auto_resolve_total","Auto Resolved Incidents")&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you feel this has answered your query, please let us know by clicking like and on "mark this as a Solution". Thank you.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 10:54:13 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-chart-editor/m-p/1222172#M7978</guid>
      <dc:creator>aspatil</dc:creator>
      <dc:date>2025-02-27T10:54:13Z</dc:date>
    </item>
  </channel>
</rss>

