<?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  show to line chart for failureCount, warningCounttimechart by time? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598606#M208436</link>
    <description>&lt;P&gt;Thanks, it works, However I am doing like below&lt;/P&gt;&lt;P&gt;&amp;lt;search id="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="deng03-cis-dev-audit" | spath PATH=data.labels.verbose_message output=verbose_message | eval serviceName = mvindex(split(index, "-"), 1)."-".mvindex(split(host, "-"), 2) |search "data.labels.activity_type_name"="ViolationOpenEventv1" | where (verbose_message like "%Oldest unacked message age%evt%" or verbose_message like "%Oldest unacked message age%rec%") | eval error=case(like(verbose_message,"%above the threshold of 1800.000%"), "warning", like(verbose_message,"%above the threshold of 300.000%"), "failure")&amp;nbsp; &amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;$time.earliest$&amp;lt;/earliest&amp;gt;&lt;/P&gt;&lt;P&gt;Now I want to append a line in below&amp;nbsp;&amp;lt;row&amp;gt;&lt;BR /&gt;&amp;lt;panel&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;STATS : SLI/SLO Dashboard count&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;table&amp;gt;&lt;BR /&gt;&amp;lt;search base="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;/row&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;$time.latest$&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;/P&gt;&lt;P&gt;How can we append line in&amp;nbsp;&amp;lt;search base="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&amp;lt;/search&amp;gt;?&lt;/P&gt;</description>
    <pubDate>Fri, 20 May 2022 05:15:03 GMT</pubDate>
    <dc:creator>dezmadi</dc:creator>
    <dc:date>2022-05-20T05:15:03Z</dc:date>
    <item>
      <title>How to  show to line chart for failureCount, warningCounttimechart by time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598416#M208378</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using below query in my Dashboard&lt;/P&gt;
&lt;P&gt;index="deng03-cis-dev-audit" | spath PATH=data.labels.verbose_message output=verbose_message | eval serviceName = mvindex(split(index, "-"), 1)."-".mvindex(split(host, "-"), 2) |search "data.labels.activity_type_name"="ViolationOpenEventv1" | where (verbose_message like "%Oldest unacked message age%evt%" or verbose_message like "%Oldest unacked message age%rec%") | eval error=case(like(verbose_message,"%above the threshold of 1800.000%"), "warning", like(verbose_message,"%above the threshold of 300.000%"), "failure") | stats values(serviceName) as serviceName count(eval(error=="failure")) as failureCount count(eval(error=="warning")) as warningCounttimechart&lt;/P&gt;
&lt;P&gt;I want to show to line chart for&amp;nbsp;failureCount,&amp;nbsp;warningCounttimechart by time, I tried appending&amp;nbsp; timechart span=1d count by failureCount, warningCounttimechart, but of no use&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2022 07:14:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598416#M208378</guid>
      <dc:creator>dezmadi</dc:creator>
      <dc:date>2022-05-19T07:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk multiple line chart date wise</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598420#M208380</link>
      <description>&lt;P&gt;Try changing&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats values(serviceName) as serviceName count(eval(error=="failure")) as failureCount count(eval(error=="warning")) as warningCounttimechart&lt;/LI-CODE&gt;&lt;P&gt;to&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| timechart count by error&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 19 May 2022 06:09:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598420#M208380</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-19T06:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to  show to line chart for failureCount, warningCounttimechart by time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598606#M208436</link>
      <description>&lt;P&gt;Thanks, it works, However I am doing like below&lt;/P&gt;&lt;P&gt;&amp;lt;search id="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="deng03-cis-dev-audit" | spath PATH=data.labels.verbose_message output=verbose_message | eval serviceName = mvindex(split(index, "-"), 1)."-".mvindex(split(host, "-"), 2) |search "data.labels.activity_type_name"="ViolationOpenEventv1" | where (verbose_message like "%Oldest unacked message age%evt%" or verbose_message like "%Oldest unacked message age%rec%") | eval error=case(like(verbose_message,"%above the threshold of 1800.000%"), "warning", like(verbose_message,"%above the threshold of 300.000%"), "failure")&amp;nbsp; &amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;$time.earliest$&amp;lt;/earliest&amp;gt;&lt;/P&gt;&lt;P&gt;Now I want to append a line in below&amp;nbsp;&amp;lt;row&amp;gt;&lt;BR /&gt;&amp;lt;panel&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;STATS : SLI/SLO Dashboard count&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;table&amp;gt;&lt;BR /&gt;&amp;lt;search base="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;/row&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;$time.latest$&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;/P&gt;&lt;P&gt;How can we append line in&amp;nbsp;&amp;lt;search base="pubsubLatencyHighAckDelayDFBaseSearch"&amp;gt;&amp;lt;/search&amp;gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2022 05:15:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-show-to-line-chart-for-failureCount-warningCounttimechart/m-p/598606#M208436</guid>
      <dc:creator>dezmadi</dc:creator>
      <dc:date>2022-05-20T05:15:03Z</dc:date>
    </item>
  </channel>
</rss>

