<?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: Stack Dashboard with 3 values in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Stack-Dashboard-with-3-values/m-p/582741#M47738</link>
    <description>&lt;P&gt;Do you mean something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=10000
| eval _raw="{
    \"Device Details\": {
        \"Device\": \"\" ,
        \"Build Version\": \"build_".printf("%02d",random()%10)."\",
        \"Application install status\": \"".mvindex(split("success|failure","|"),random()%2)."\",
        \"Application launch status\": \"".mvindex(split("success|failure","|"),random()%2)."\"
    },
    \"apkAnalysed\": \"".mvindex(split("Not |","|"),random()%2)."Analysed\",
    \"id\": \"googleplay\",
    \"appName\": \"whatsapp\", 
    \"appStore\": \"googleplay\",
    \"timeStamp\": 0,
    \"md5sum\": \"\",
    \"packageName\": \"\",
    \"date\": \"2021-12-09\",
    \"downloadPath\": \"https: xxxx\",
    \"apkAnalytics\": \"\"
}"
| spath "Device Details.Build Version" output=BuildVersion
| spath "Device Details.Application install status" output=InstallStatus
| spath "Device Details.Application launch status" output=LaunchStatus
| spath "apkAnalysed"
| stats count(eval(apkAnalysed="Analysed")) as Analysed count(eval(InstallStatus=="success")) as InstallSuccess count(eval(LaunchStatus=="success")) as LaunchSuccess by BuildVersion&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1643287088543.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17721i6EBEB55CD8627EC6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1643287088543.png" alt="ITWhisperer_0-1643287088543.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jan 2022 12:38:16 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2022-01-27T12:38:16Z</dc:date>
    <item>
      <title>Stack Dashboard with 3 values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Stack-Dashboard-with-3-values/m-p/582733#M47737</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a json event like below, for each "Build Version" which runs on weekly/daily basis it will try to install different&amp;nbsp; apps ("appName" in json) reports the&amp;nbsp;&amp;nbsp;app's "Application install status" as "success" or "failure, similarly for "Application launch status"&amp;nbsp; and&amp;nbsp;"apkAnalysed" status as "Analysed" or "Not Analysed"&lt;/P&gt;&lt;P&gt;Now I want a dashboard that looks like below, for each "Build Version" how many have success ,failure status and&amp;nbsp;"apkAnalysed" status as&amp;nbsp; "Analysed"&amp;nbsp;in 3 stacks.&lt;/P&gt;&lt;P&gt;is this possible in splunk, i have tried plotting using chart option but it doesn't help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="MicrosoftTeams-image.png" style="width: 660px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17719i33433B7FADD5103E/image-size/large?v=v2&amp;amp;px=999" role="button" title="MicrosoftTeams-image.png" alt="MicrosoftTeams-image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Device Details": {
        "Device": "" ,
        "Build Version": "build_01",
        "Application install status": "success",
        "Application launch status": "Success"
    },
    "apkAnalysed": "Analysed",
    "id": "googleplay",
    "appName": "whatsapp", 
    "appStore": "googleplay",
    "timeStamp": 0,
    "md5sum": "",
    "packageName": "",
    "date": "2021-12-09",
    "downloadPath": "https: xxxx",
    "apkAnalytics": ""
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 12:05:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Stack-Dashboard-with-3-values/m-p/582733#M47737</guid>
      <dc:creator>shahbaz</dc:creator>
      <dc:date>2022-01-27T12:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Stack Dashboard with 3 values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Stack-Dashboard-with-3-values/m-p/582741#M47738</link>
      <description>&lt;P&gt;Do you mean something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=10000
| eval _raw="{
    \"Device Details\": {
        \"Device\": \"\" ,
        \"Build Version\": \"build_".printf("%02d",random()%10)."\",
        \"Application install status\": \"".mvindex(split("success|failure","|"),random()%2)."\",
        \"Application launch status\": \"".mvindex(split("success|failure","|"),random()%2)."\"
    },
    \"apkAnalysed\": \"".mvindex(split("Not |","|"),random()%2)."Analysed\",
    \"id\": \"googleplay\",
    \"appName\": \"whatsapp\", 
    \"appStore\": \"googleplay\",
    \"timeStamp\": 0,
    \"md5sum\": \"\",
    \"packageName\": \"\",
    \"date\": \"2021-12-09\",
    \"downloadPath\": \"https: xxxx\",
    \"apkAnalytics\": \"\"
}"
| spath "Device Details.Build Version" output=BuildVersion
| spath "Device Details.Application install status" output=InstallStatus
| spath "Device Details.Application launch status" output=LaunchStatus
| spath "apkAnalysed"
| stats count(eval(apkAnalysed="Analysed")) as Analysed count(eval(InstallStatus=="success")) as InstallSuccess count(eval(LaunchStatus=="success")) as LaunchSuccess by BuildVersion&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1643287088543.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17721i6EBEB55CD8627EC6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1643287088543.png" alt="ITWhisperer_0-1643287088543.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 12:38:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Stack-Dashboard-with-3-values/m-p/582741#M47738</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-27T12:38:16Z</dc:date>
    </item>
  </channel>
</rss>

