<?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: Chart over multiple fields in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653141#M53682</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258668"&gt;@NathanAsh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Aug 2023 06:40:38 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2023-08-04T06:40:38Z</dc:date>
    <item>
      <title>How to creat a chart over multiple fields?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650456#M53316</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need some thing like the following one as the final output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="svc.JPG" style="width: 333px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/26255i5ED772579F71A953/image-size/large?v=v2&amp;amp;px=999" role="button" title="svc.JPG" alt="svc.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I have tried some thing like this...but not the one i expected...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;....query | chart values(percent) over svc by ResponseCode &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is it possible to include something like this, checked and its not working...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;....query | chart values(percent) over Channel,svc by ResponseCode&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 20:51:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650456#M53316</guid>
      <dc:creator>NathanAsh</dc:creator>
      <dc:date>2023-08-03T20:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650478#M53317</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258668"&gt;@NathanAsh&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Splunk isn't Excel, so it isn't possible to exactly have this output.&lt;/P&gt;&lt;P&gt;You have only one workaround:&lt;/P&gt;&lt;P&gt;having the channel value in each row, in the same field of the ResponseCode:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval Column= Channel." - ".svc
| chart values(percent) over Column by ResponseCode&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 06:21:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650478#M53317</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-14T06:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650505#M53320</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats values(percent) as percent by Channel,svc,ResponseCode
| eval {ResponseCode} = percent
| fields - ResponseCode percent
| stats values(*) as * by Channel,svc
| fillnull value=0&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 14 Jul 2023 08:05:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650505#M53320</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-07-14T08:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650567#M53323</link>
      <description>&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt; said - it doesn't work this way in Splunk. It's indeed not Excel, but that's not the _reason_. It's just that it's impossible to have such relationship between separate rows of results - in Splunk every result is an entity in its own rights so you can't "make" one result row to "stick" with another one.&lt;/P&gt;&lt;P&gt;Maybe - just maybe - someone did a custom visualization which merges cells on presentation but I doubt that.&lt;/P&gt;&lt;P&gt;You can use multivalue functions to simulate this behaviour to some extent but this functionality is very limited and doesn't allow for - for example - reordering several columns "together". It doesn't work well with "holes" in the results either.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 13:53:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/650567#M53323</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2023-07-14T13:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653090#M53674</link>
      <description>&lt;P&gt;Thanks, something better results&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 16:02:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653090#M53674</guid>
      <dc:creator>NathanAsh</dc:creator>
      <dc:date>2023-08-03T16:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653141#M53682</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258668"&gt;@NathanAsh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2023 06:40:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653141#M53682</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-08-04T06:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653611#M53738</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have another query in connection with these queries output. Don't know whether to open another request or continue with this..&lt;/P&gt;&lt;P&gt;Let me brief the requirements here,&lt;/P&gt;&lt;P&gt;I am planning to create an alert based on the above query results, in that i need to include the trigger condition as response code 200's value less than 85% records to be mailed. how do I go about configuring the trigger condition. I am just trying search 200&amp;lt;85, yet to see the alert being generated.&lt;/P&gt;&lt;P&gt;Can you please help me with that?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 19:38:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653611#M53738</guid>
      <dc:creator>NathanAsh</dc:creator>
      <dc:date>2023-08-08T19:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653691#M53755</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258668"&gt;@NathanAsh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;it's always better to open a new question to have a quicker and maybe better answer.&lt;/P&gt;&lt;P&gt;Always remember to accept one answer for te other people of the Community and giving Karma Points to all the Contributors.&lt;/P&gt;&lt;P&gt;Anyway, I hint to insert the condition in the alert search and configure your alert when there are results.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 07:34:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653691#M53755</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-08-09T07:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Chart over multiple fields</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653741#M53759</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks. Yes, finally I did that already its working fine. Even that search custom query was working , it got messed up in the mail filtering rules. Thanks for your suggestions .&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 14:22:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-creat-a-chart-over-multiple-fields/m-p/653741#M53759</guid>
      <dc:creator>NathanAsh</dc:creator>
      <dc:date>2023-08-09T14:22:53Z</dc:date>
    </item>
  </channel>
</rss>

