<?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: Customize the Episode Review dashboard using a JSON-formatted dashboard definition in Splunk ITSI</title>
    <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700186#M2945</link>
    <description>&lt;P&gt;JSON dashboard definition is for Studio not Classic. What is your question here (or does that already answer it!)?&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2024 10:40:35 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2024-09-26T10:40:35Z</dc:date>
    <item>
      <title>Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700183#M2944</link>
      <description>&lt;P&gt;Hello, guys!&lt;/P&gt;&lt;P&gt;I'm trying to use the episodes table as the base search in the Edit Dashboard view, as well in the Dashboard Classic using the source, but here we already have the results in the table. I'll attach my code snippet below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
    "dataSources": {
        "dsQueryCounterSearch1": {
            "options": {
                "query": "| where AlertSource = AWS and AlertSeverity IN (6,5,4,3,1) | dedup Identifier | stats count as AWS",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },
        "mttrSearch": {
            "options": {
                "query": "| `itsi_event_management_get_mean_time(resolved)`",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },
        "episodesBySeveritySearch": {
            "options": {
                "query": "|`itsi_event_management_episode_by_severity`",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },
        "noiseReductionSearch": {
            "options": {
                "query": "| `itsi_event_management_noise_reduction`",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },
        "percentAckSearch": {
            "options": {
                "query": "| `itsi_event_management_get_episode_count(acknowledged)` | eval acknowledgedPercent=(Acknowledged/total)*100 | table acknowledgedPercent",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },
        "mttaSearch": {
            "options": {
                "query": "| `itsi_event_management_get_mean_time(acknowledged)`",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        }
    },
    "visualizations": {
        "vizQueryCounterSearch1": {
            "title": "Query Counter 1",
            "type": "splunk.singlevalue",
            "options": {
                "backgroundColor": "#ffffff",
                "sparklineDisplay": "off",
                "trendDisplay": "off",
                "trendValue": 0
            },
            "dataSources": {
                "primary": "dsQueryCounterSearch1"
            }
        },
        "episodesBySeverity": {
            "title": "Episodes by Severity",
            "type": "splunk.bar",
            "options": {
                "backgroundColor": "#ffffff",
                "barSpacing": 5,
                "dataValuesDisplay": "all",
                "legendDisplay": "off",
                "showYMajorGridLines": false,
                "yAxisLabelVisibility": "hide",
                "xAxisMajorTickVisibility": "hide",
                "yAxisMajorTickVisibility": "hide",
                "xAxisTitleVisibility": "hide",
                "yAxisTitleVisibility": "hide"
            },
            "dataSources": {
                "primary": "episodesBySeveritySearch"
            }
        },
        "noiseReduction": {
            "title": "Total Noise Reduction",
            "type": "splunk.singlevalue",
            "options": {
                "backgroundColor": "&amp;gt; majorValue | rangeValue(backgroundColorThresholds)",
                "numberPrecision": 2,
                "sparklineDisplay": "off",
                "trendDisplay": "off",
                "trendValue": 0,
                "unit": "%"
            },
            "context": {
                "backgroundColorThresholds": [
                    {
                        "from": 95,
                        "value": "#65a637"
                    },
                    {
                        "from": 90,
                        "to": 95,
                        "value": "#6db7c6"
                    },
                    {
                        "from": 87,
                        "to": 90,
                        "value": "#f7bc38"
                    },
                    {
                        "from": 85,
                        "to": 87,
                        "value": "#f58f39"
                    },
                    {
                        "to": 85,
                        "value": "#d93f3c"
                    }
                ]
            },
            "dataSources": {
                "primary": "noiseReductionSearch"
            }
        },
        "percentAck": {
            "title": "Episodes Acknowledged",
            "type": "splunk.singlevalue",
            "options": {
                "backgroundColor": "#ffffff",
                "numberPrecision": 2,
                "sparklineDisplay": "off",
                "trendDisplay": "off",
                "trendValue": 0,
                "unit": "%"
            },
            "dataSources": {
                "primary": "percentAckSearch"
            }
        },
        "mtta": {
            "title": "Mean Time to Acknowledged",
            "type": "splunk.singlevalue",
            "options": {
                "backgroundColor": "#ffffff",
                "sparklineDisplay": "off",
                "trendDisplay": "off",
                "trendValue": 0,
                "unit": "minutes"
            },
            "dataSources": {
                "primary": "mttaSearch"
            }
        }
    },
    "layout": {
        "type": "grid",
        "options": {
            "display": "auto-scale",
            "height": 240,
            "width": 1440
        },
        "structure": [
            {
                "item": "vizQueryCounterSearch1",
                "type": "block",
                "position": {
                    "x": 0,
                    "y": 80,
                    "w": 288,
                    "h": 220
                }
            },
            {
                "item": "episodesBySeverity",
                "type": "block",
                "position": {
                    "x": 288,
                    "y": 80,
                    "w": 288,
                    "h": 220
                }
            },
            {
                "item": "noiseReduction",
                "type": "block",
                "position": {
                    "x": 576,
                    "y": 80,
                    "w": 288,
                    "h": 220
                }
            },
            {
                "item": "percentAck",
                "type": "block",
                "position": {
                    "x": 864,
                    "y": 80,
                    "w": 288,
                    "h": 220
                }
            },
            {
                "item": "mtta",
                "type": "block",
                "position": {
                    "x": 1152,
                    "y": 80,
                    "w": 288,
                    "h": 220
                }
            }
        ]
    }
}&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;I really appreciate your help, have a great day &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 10:11:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700183#M2944</guid>
      <dc:creator>MaximilianoML</dc:creator>
      <dc:date>2024-09-26T10:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700186#M2945</link>
      <description>&lt;P&gt;JSON dashboard definition is for Studio not Classic. What is your question here (or does that already answer it!)?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 10:40:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700186#M2945</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-26T10:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700222#M2946</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;Yes, actually I'm editing the dashboard on&amp;nbsp;&lt;A href="https://itsi-*.splunkcloud.com/en-US/app/itsi/itsi_event_management?" target="_blank"&gt;https://itsi-*.splunkcloud.com/en-US/app/itsi/itsi_event_management?&lt;/A&gt;&amp;nbsp;, and this is the view:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MaximilianoML_0-1727358124197.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32820i4D8421485405988D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MaximilianoML_0-1727358124197.png" alt="MaximilianoML_0-1727358124197.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm looking for a way to make a simple query in the results, like this code snippet:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;"dsQueryCounterSearch1": {
"options": {
"query": "| where AlertSource = AWS and AlertSeverity IN (6,5,4,3,1) | dedup Identifier | stats count as AWS",
"queryParameters": {
"earliest": "$earliest_time$",
"latest": "$latest_time$"
}
},
"type": "ds.search"
},&lt;/LI-CODE&gt;&lt;P&gt;but doesn't return anything, any ideia how to refer the base search like the default querys?&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S: This data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MaximilianoML_1-1727358391998.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32821i8AFC6A54A99552D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MaximilianoML_1-1727358391998.png" alt="MaximilianoML_1-1727358391998.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 13:47:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700222#M2946</guid>
      <dc:creator>MaximilianoML</dc:creator>
      <dc:date>2024-09-26T13:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700234#M2947</link>
      <description>&lt;P&gt;Which search are you trying to extend - if it is "mttrSearch", you would do something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    "dataSources": {
        "dsQueryCounterSearch1": {
            "options": {
                "extend": "mttrSearch",
                "query": "| where AlertSource = AWS and AlertSeverity IN (6,5,4,3,1) | dedup Identifier | stats count as AWS",
                "queryParameters": {
                    "earliest": "$earliest_time$",
                    "latest": "$latest_time$"
                }
            },
            "type": "ds.search"
        },&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 26 Sep 2024 14:51:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700234#M2947</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-26T14:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700237#M2948</link>
      <description>&lt;P&gt;This is the problem, I don't how this works... but I want to use the data that appears on the table in the bottom:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MaximilianoML_0-1727362764656.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32823i49C4E70B80323474/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MaximilianoML_0-1727362764656.png" alt="MaximilianoML_0-1727362764656.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 15:00:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700237#M2948</guid>
      <dc:creator>MaximilianoML</dc:creator>
      <dc:date>2024-09-26T15:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700240#M2949</link>
      <description>&lt;P&gt;What is the data source for that table? The JSON you have shared does not appear to cover that&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 15:09:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700240#M2949</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-26T15:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Customize the Episode Review dashboard using a JSON-formatted dashboard definition</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700325#M2950</link>
      <description>&lt;P&gt;So, I didn't find how to use a base search, and then I just decided to proceed with a simple query as well in the Search Page.&lt;/P&gt;&lt;P&gt;P.S. The stuff between ` are Macros, you can check here:&amp;nbsp;&lt;A href="https://itsi-*.splunkcloud.com/en-GB/manager/itsi/data/macros" target="_blank"&gt;https://itsi-*.splunkcloud.com/en-GB/manager/itsi/data/macros&lt;/A&gt;&amp;nbsp;, it's interesting things but is not helpful for me right now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, friend!&lt;/P&gt;&lt;P&gt;Maximiliano Lopes&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 10:04:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Customize-the-Episode-Review-dashboard-using-a-JSON-formatted/m-p/700325#M2950</guid>
      <dc:creator>MaximilianoML</dc:creator>
      <dc:date>2024-09-27T10:04:30Z</dc:date>
    </item>
  </channel>
</rss>

