<?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: Showing Specific Values in a dashboard in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745312#M241406</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index="ifi" appEnvrnNam="ANY" msgTxt="StandardizedAddress SUCCEEDED*"&lt;BR /&gt;| eval _raw="Standardizedss SUCCEEDED - FROM: {\"Standardizedss \":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City\":\"GREEN\",\"County\":null,\"State\":\"WY\",\"ZipCode\":\"44444-9360\",\"Latitude\":null,\"Longitude\":null,\"IsStandardized\":true,\"AddressStandardization\":1,\"AddressStandardizationType\":0},\"RESULT\":1,\"AddressDetails\":[{\"AssociatedName\":\"\",\"HouseNumber\":\"123\",\"Predirection\":\"\",\"StreetName\":\"NAANNA SAND RD\",\"Suffix\":\"RD\",\"Postdirection\":\"\",\"SuiteName\":\"\",\"SuiteRange\":\"\",\"City\":\"GREEN\",\"CityAbbreviation\":\"GREEN\",\"State\":\"WY\",\"ZipCode\":\"44444\",\"Zip4\":\"9360\",\"County\":\"Warren\",\"CountyFips\":\"27\",\"CoastalCounty\":0,\"Latitude\":77.0999,\"Longitude\":-99.999,\"Fulladdress1\":\"123 NAANNA SAND RD\",\"Fulladdress2\":\"\",\"HighRiseDefault\":false}],\"WarningMessages\":[\"This mail requires a number or Apartment number.\"],\"ErrorMessages\":[],\"GeoErrorMessages\":[],\"Succeeded\":true,\"ErrorMessage\":null}"&lt;BR /&gt;| rex "StandardizedAddres SUCCEEDED - FROM: (?&amp;lt;event&amp;gt;.*)"&lt;BR /&gt;| spath input=event&lt;BR /&gt;| rename AddressDetails{}.* as *, WarningMessages{} as WarningMessages&lt;BR /&gt;| table Latitude Longitude WarningMessages&lt;/P&gt;</description>
    <pubDate>Thu, 01 May 2025 14:56:00 GMT</pubDate>
    <dc:creator>msarkaus</dc:creator>
    <dc:date>2025-05-01T14:56:00Z</dc:date>
    <item>
      <title>Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745204#M241382</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hello,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;I have this Splunk log that contains tons of quotes, commas, and other special characters. I’m trying to only pull the &lt;FONT color="#0000FF"&gt;Latitude":77.0999&lt;/FONT&gt;, &lt;FONT color="#0000FF"&gt;Longitude":-99.999&lt;/FONT&gt; and from time to time there will be &lt;FONT color="#0000FF"&gt;WarningMessages: This mail requires a number or Apartment number&lt;/FONT&gt; that I would like to capture in a dashboard.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;StandardizedAddres SUCCEEDED - FROM: {"Address1":"123 NAANNA SAND RD","Address2":"","City":”GREEN","County":null,"State":"WY","ZipCode":"44444-9360","Latitude":null,"Longitude":null,"IsStandardized":true,"AddressStatus":1,"AddressStandardizationType":0} RESULT: 1 | {"AddressDetails":[{"AssociatedName":"","HouseNumber":"123","Predirection":"","StreetName":" NAANNA SAND RD ","Suffix":"RD","Postdirection":"","SuiteName":"","SuiteRange":"","City":" GREEN","CityAbbreviation":"GREEN","State":"WY","ZipCode":"44444","Zip4":"9360","County":"Warren","CountyFips":"27","CoastalCounty":0,"&lt;FONT color="#0000FF"&gt;Latitude":77.0999&lt;/FONT&gt;,"&lt;FONT color="#0000FF"&gt;Longitude":-99.999&lt;/FONT&gt;,"Fulladdress1":"123 NAANNA SAND RD ","Fulladdress2":"","HighRiseDefault":false}]," &lt;FONT color="#0000FF"&gt;WarningMessages":["This mail requires a number or Apartment number&lt;/FONT&gt;."]:[],"ErrorMessages":[],"GeoErrorMessages":[],"Succeeded":true,"ErrorMessage":null}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently use the query below, but I’m not having any luck. This is past my skill set, please help….&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;index="cf" Environment="NA" msgTxt="API=/api-123BusOwnCommon/notis*" &lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;| eval msgTxt=" API=/api-123BusOwnCommon/notis /WGR97304666665/05-08-2024 CalStatus=Success Controller=InsideApi_ notis Action= notis Duration=3 data*"&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;| rex "Duration=(?&amp;lt;Duration&amp;gt;\w+)"&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;| timechart span=1h avg(Duration) AS avg_response by msgTxt&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to show the data like this in Splunk:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Latitude&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt;Longitude&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;FONT color="#000000"&gt;WarningMessages&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT color="#000000"&gt;2.351&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;42.23&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Error in blah&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT color="#000000"&gt;4.10&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;88.235&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hello world&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT color="#000000"&gt;454.2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;50.02&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Blah blah blah blah...............&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 19:45:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745204#M241382</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-04-29T19:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745218#M241383</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249566"&gt;@msarkaus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following should hopefully work for you:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "\"Latitude\"\s*:\s*(?&amp;lt;Latitude&amp;gt;-?\d+\.\d+)"
| rex "\"Longitude\"\s*:\s*(?&amp;lt;Longitude&amp;gt;-?\d+\.\d+)"
| rex "\"WarningMessages\"\s*:\s*\[\s*\"(?&amp;lt;WarningMessages&amp;gt;[^\"]*)"
| table _time Latitude Longitude WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;Here is a full working example for you to try with:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1745960685662.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38795i4A1125D73F3BAB28/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1745960685662.png" alt="livehybrid_0-1745960685662.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| windbag | head 1 
| eval _raw="StandardizedAddres SUCCEEDED - FROM: {\"StandardizedAddres\":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City\":\"GREEN\",\"County\":null,\"State\":\"WY\",\"ZipCode\":\"44444-9360\",\"Latitude\":null,\"Longitude\":null,\"IsStandardized\":true,\"AddressStatus\":1,\"AddressStandardizationType\":0},\"RESULT\":1,\"AddressDetails\":[{\"AssociatedName\":\"\",\"HouseNumber\":\"123\",\"Predirection\":\"\",\"StreetName\":\"NAANNA SAND RD\",\"Suffix\":\"RD\",\"Postdirection\":\"\",\"SuiteName\":\"\",\"SuiteRange\":\"\",\"City\":\"GREEN\",\"CityAbbreviation\":\"GREEN\",\"State\":\"WY\",\"ZipCode\":\"44444\",\"Zip4\":\"9360\",\"County\":\"Warren\",\"CountyFips\":\"27\",\"CoastalCounty\":0,\"Latitude\":77.0999,\"Longitude\":-99.999,\"Fulladdress1\":\"123 NAANNA SAND RD\",\"Fulladdress2\":\"\",\"HighRiseDefault\":false}],\"WarningMessages\":[\"This mail requires a number or Apartment number.\"],\"ErrorMessages\":[],\"GeoErrorMessages\":[],\"Succeeded\":true,\"ErrorMessage\":null}"
| rex "\"Latitude\"\s*:\s*(?&amp;lt;Latitude&amp;gt;-?\d+\.\d+)"
| rex "\"Longitude\"\s*:\s*(?&amp;lt;Longitude&amp;gt;-?\d+\.\d+)"
| rex "\"WarningMessages\"\s*:\s*\[\s*\"(?&amp;lt;WarningMessages&amp;gt;[^\"]*)"
| table _time Latitude Longitude WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 21:04:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745218#M241383</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-29T21:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745226#M241386</link>
      <description>&lt;P&gt;Your event is a heading, followed by a JSON object, so one approach is to simply create a field extraction to extract the JSON object and then you have access to all the fields directly.&lt;/P&gt;&lt;P&gt;This example shows what that would look like - the rex statement extracts the JSON inline, but you could do that as a calculated field. The spath parses the JSON&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults
| eval _raw="StandardizedAddres SUCCEEDED - FROM: {\"StandardizedAddres\":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City\":\"GREEN\",\"County\":null,\"State\":\"WY\",\"ZipCode\":\"44444-9360\",\"Latitude\":null,\"Longitude\":null,\"IsStandardized\":true,\"AddressStatus\":1,\"AddressStandardizationType\":0},\"RESULT\":1,\"AddressDetails\":[{\"AssociatedName\":\"\",\"HouseNumber\":\"123\",\"Predirection\":\"\",\"StreetName\":\"NAANNA SAND RD\",\"Suffix\":\"RD\",\"Postdirection\":\"\",\"SuiteName\":\"\",\"SuiteRange\":\"\",\"City\":\"GREEN\",\"CityAbbreviation\":\"GREEN\",\"State\":\"WY\",\"ZipCode\":\"44444\",\"Zip4\":\"9360\",\"County\":\"Warren\",\"CountyFips\":\"27\",\"CoastalCounty\":0,\"Latitude\":77.0999,\"Longitude\":-99.999,\"Fulladdress1\":\"123 NAANNA SAND RD\",\"Fulladdress2\":\"\",\"HighRiseDefault\":false}],\"WarningMessages\":[\"This mail requires a number or Apartment number.\"],\"ErrorMessages\":[],\"GeoErrorMessages\":[],\"Succeeded\":true,\"ErrorMessage\":null}"
| rex "StandardizedAddres SUCCEEDED - FROM: (?&amp;lt;event&amp;gt;.*)"
| spath input=event
| rename AddressDetails{}.* as *, WarningMessages{} as WarningMessages
| table Latitude Longitude WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;Note that your AddressDetails is actually a JSON array, so in theory it could contain multiple results, so doing this with the JSON extraction will handle any possible case where you get more than one result in the address array.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 22:40:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745226#M241386</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-04-29T22:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745265#M241393</link>
      <description>&lt;P&gt;I pleased to see your query is working; however, it's repeating the same values.&lt;/P&gt;&lt;P&gt;Sorry, I did not explain that there will be 1000's of logs, each with a different value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="msarkaus_0-1746023324233.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38808i5FC055EBCED404E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="msarkaus_0-1746023324233.png" alt="msarkaus_0-1746023324233.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 14:30:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745265#M241393</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-04-30T14:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745267#M241394</link>
      <description>&lt;P&gt;Thank you it is working; however, it's repeating the same value. The search will be returning 1000's of logs each with a different value and some will not contain a warning message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="msarkaus_0-1746023489852.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38809i5867DBEFDBEF9D13/image-size/medium?v=v2&amp;amp;px=400" role="button" title="msarkaus_0-1746023489852.png" alt="msarkaus_0-1746023489852.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 14:32:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745267#M241394</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-04-30T14:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745289#M241397</link>
      <description>&lt;P&gt;Can you show your search, it seems that those numbers and warnings are the same as the example you gave - if that is what it is showing, then that is likely what the data contains. Can you show an example of a couple of messages and your search because the search will work - note that you should not include the &lt;STRONG&gt;eval _raw&lt;/STRONG&gt;&amp;nbsp;part, as that is just setting up example test data to show you how the rest of the search can work&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 22:33:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745289#M241397</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-04-30T22:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745312#M241406</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index="ifi" appEnvrnNam="ANY" msgTxt="StandardizedAddress SUCCEEDED*"&lt;BR /&gt;| eval _raw="Standardizedss SUCCEEDED - FROM: {\"Standardizedss \":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City\":\"GREEN\",\"County\":null,\"State\":\"WY\",\"ZipCode\":\"44444-9360\",\"Latitude\":null,\"Longitude\":null,\"IsStandardized\":true,\"AddressStandardization\":1,\"AddressStandardizationType\":0},\"RESULT\":1,\"AddressDetails\":[{\"AssociatedName\":\"\",\"HouseNumber\":\"123\",\"Predirection\":\"\",\"StreetName\":\"NAANNA SAND RD\",\"Suffix\":\"RD\",\"Postdirection\":\"\",\"SuiteName\":\"\",\"SuiteRange\":\"\",\"City\":\"GREEN\",\"CityAbbreviation\":\"GREEN\",\"State\":\"WY\",\"ZipCode\":\"44444\",\"Zip4\":\"9360\",\"County\":\"Warren\",\"CountyFips\":\"27\",\"CoastalCounty\":0,\"Latitude\":77.0999,\"Longitude\":-99.999,\"Fulladdress1\":\"123 NAANNA SAND RD\",\"Fulladdress2\":\"\",\"HighRiseDefault\":false}],\"WarningMessages\":[\"This mail requires a number or Apartment number.\"],\"ErrorMessages\":[],\"GeoErrorMessages\":[],\"Succeeded\":true,\"ErrorMessage\":null}"&lt;BR /&gt;| rex "StandardizedAddres SUCCEEDED - FROM: (?&amp;lt;event&amp;gt;.*)"&lt;BR /&gt;| spath input=event&lt;BR /&gt;| rename AddressDetails{}.* as *, WarningMessages{} as WarningMessages&lt;BR /&gt;| table Latitude Longitude WarningMessages&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 14:56:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745312#M241406</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-01T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745313#M241407</link>
      <description>&lt;P&gt;Scratch that first line..&lt;/P&gt;&lt;P&gt;Use this&lt;/P&gt;&lt;P&gt;index="ifi" appEnvrnNam="ANY" msgTxt="Standardizess SUCCEEDED - FROM:*"&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 15:00:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745313#M241407</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-01T15:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745336#M241413</link>
      <description>&lt;P&gt;The _raw=... line is OUR example based on your data to demonstrate the solution. You MUST not include that in YOUR search, as it makes every event equal to that _raw value.&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 23:08:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745336#M241413</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-01T23:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745484#M241459</link>
      <description>&lt;P&gt;So if I'm not to use&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;| eval _raw="StandardizedAddres SUCCEEDED - FROM: {\"StandardizedAddres.................."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Should I use&amp;nbsp;&lt;/P&gt;&lt;P&gt;| eval &lt;SPAN&gt;msgTxt&lt;/SPAN&gt;="StandardizedAddres SUCCEEDED - FROM: {\"StandardizedAddres\":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And do I not include the /?&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 12:10:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745484#M241459</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-05T12:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745496#M241463</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249566"&gt;@msarkaus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like you have multiple events with the same content in then? If you have 1000s of events you should probably use something like stats to group them up:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats count by Latitude Longitude WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 14:59:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745496#M241463</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-05T14:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745525#M241470</link>
      <description>&lt;P class="lia-align-justify"&gt;I'm having issues getting this to work.&amp;nbsp; I posted my&amp;nbsp; search in a earlier post.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;I was told not to use the eval _raw line, I've tried removing it and I have used&amp;nbsp;| eval msgTxt="&lt;/P&gt;&lt;P class="lia-align-justify"&gt;and it is still not working. What am I doing wrong? Please help. thanks&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 20:20:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745525#M241470</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-05T20:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745532#M241477</link>
      <description>&lt;P&gt;Can you post your exact search&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 23:09:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745532#M241477</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-05T23:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745560#M241488</link>
      <description>&lt;P&gt;When I use&amp;nbsp;| eval msgTxt= I get no results, but if I use | eval _raw it returns the requested data, but it repeats the same values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index="cif" appEnvrnNam="Production" msgTxt="StandardizedAddressService SUCCEEDED*"&lt;/P&gt;&lt;P&gt;| eval msgTxt="StandardizedAddressService SUCCEEDED - FROM: {\"StandardizedAddressService\":\"SUCCEEDED\",\"FROM\":{\"Address1\":\"123 NAANNA SAND RD\",\"Address2\":\"\",\"City\":\"GREEN\",\"County\":null,\"State\":\"WY\",\"ZipCode\":\"44444-9360\",\"Latitude\":null,\"Longitude\":null,\"IsStandardized\":false,\"AddressStandardizationStatus\":1,\"AddressStandardizationType\":1},\"RESULT\":1,\"AddressDetails\":[{\"AssociatedName\":\"\",\"HouseNumber\":\"123\",\"Predirection\":\"\",\"StreetName\":\"NAANNA SAND RD\",\"Suffix\":\"RD\",\"Postdirection\":\"\",\"SuiteName\":\"\",\"SuiteRange\":\"\",\"City\":\"GREEN\",\"CityAbbreviation\":\"GREEN\",\"State\":\"WY\",\"ZipCode\":\"44444\",\"Zip4\":\"9360\",\"County\":\"Warren\",\"CountyFips\":\"27\",\"CoastalCounty\":0,\"Latitude\":77.0999,\"Longitude\":-99.999,\"Fulladdress1\":\"123 NAANNA SAND RD\",\"Fulladdress2\":\"\",\"HighRiseDefault\":false}],\"WarningMessages\":[],\"ErrorMessages\":[],\"GeoErrorMessages\":[],\"Succeeded\":true,\"ErrorMessage\":null}"&lt;/P&gt;&lt;P&gt;| rex "\"Latitude\"\s*:\s*(?&amp;lt;Latitude&amp;gt;-?\d+\.\d+)"&lt;/P&gt;&lt;P&gt;| rex "\"Longitude\"\s*:\s*(?&amp;lt;Longitude&amp;gt;-?\d+\.\d+)"&lt;/P&gt;&lt;P&gt;| rex "\"WarningMessages\"\s*:\s*\[\s*\"(?&amp;lt;WarningMessages&amp;gt;[^\"]*)"&lt;/P&gt;&lt;P&gt;| table _time Latitude Longitude WarningMessages&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 14:56:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745560#M241488</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-06T14:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745605#M241501</link>
      <description>&lt;P&gt;Do NOT use eval for anything to set any value to "StandardizedAddressService bla bla bla"&lt;/P&gt;&lt;P&gt;That is data that I understand is coming from your event - when you make that eval statement you are setting a field called msgTxt (in your example) to the value you give it.&lt;/P&gt;&lt;P&gt;What is the name of your field that contains that phrase in your index=... search&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should extract the "event" field using the rex statement specifying the field you want to extract from, e.g&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex field=msgTxt blablabla&lt;/LI-CODE&gt;&lt;P&gt;and then just use the original SPL I posted at the beginning&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| spath input=event
| rename AddressDetails{}.* as *, WarningMessages{} as WarningMessages
| table Latitude Longitude WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;after that.&lt;/P&gt;&lt;P&gt;If you get something unexpected, add some more fields to the table statement at the end to show what those fields are&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 00:35:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745605#M241501</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-07T00:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745689#M241518</link>
      <description>&lt;P&gt;I have used the &lt;STRONG&gt;rex field=msgTxt&lt;/STRONG&gt; but I keep getting errors. I'm sorry but I've worked on this for hours, and nothing seems to work. I'm still pretty new to Splunk and this is not in my skill-set.&lt;/P&gt;&lt;P&gt;Maybe I should start over..&lt;/P&gt;&lt;P&gt;However, the results I'm looking for have slightly changed. The field or log that contains my results are located in &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;msgTxt&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;and I would like to pull both&amp;nbsp;&amp;nbsp;&lt;FONT color="#0000FF"&gt;Latitude&lt;/FONT&gt;&lt;FONT&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Longitude&lt;/FONT&gt; &lt;/STRONG&gt;values and the &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;WarningMessages&lt;/STRONG&gt;&lt;/FONT&gt;.&amp;nbsp; The field has&amp;nbsp;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Latitude&lt;/FONT&gt; &lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Longitude &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#0000FF"&gt;&lt;FONT color="#000000"&gt;listed twice. Most of the time the first set will return 0's and the log will always be in this format.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The log looks like this:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;StandardizedAddressService SUCCEEDED - FROM: {"Address1":"63 Somewhere NW ST","Address2":null,"City":"OKLAND&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;&amp;nbsp;CITY","County":null,"State":"OK","ZipCode":"99999-1111","&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Latitude&lt;/STRONG&gt;&lt;/FONT&gt;":&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;97.999&lt;/FONT&gt;&lt;/STRONG&gt;,"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Longitude&lt;/STRONG&gt;&lt;/FONT&gt;":&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;-97.999&lt;/FONT&gt;&lt;/STRONG&gt;,"IsStandardized":false,"AddressStandardizationStatus":0,"AddressStandardizationType":0} RESULT: 1 | {"AddressDetails":[{"AssociatedName":"","HouseNumber":"63","Predirection":"NW","StreetName":"Somewhere","Suffix":"ST","Postdirection":"","SuiteName":"","SuiteRange":"","City":"OKLAND CITY","CityAbbreviation":"OKLAND CITY","State":"OK","ZipCode":"99999","Zip4":"1111","County":"Oklahoma","CountyFips":"40109","CoastalCounty":0,"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Latitude&lt;/STRONG&gt;&lt;/FONT&gt;":&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;97.999&lt;/FONT&gt;&lt;/STRONG&gt;,"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Longitude&lt;/STRONG&gt;&lt;/FONT&gt;":&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;-97.999&lt;/FONT&gt;&lt;/STRONG&gt;"Fulladdress1":"63 Somewhere NW ST","Fulladdress2":"","HighRiseDefault":false}],"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;WarningMessages&lt;/STRONG&gt;&lt;/FONT&gt;":[],"ErrorMessages":[],"GeoErrorMessages":[],"Succeeded":true,"ErrorMessage":null}&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;I'm hoping to see the following results:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Latitude&amp;nbsp; &amp;nbsp; Longitude&amp;nbsp; &amp;nbsp;Latitude&amp;nbsp; &amp;nbsp;Longitude&amp;nbsp; &amp;nbsp; WarningMessages&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;99.2541&amp;nbsp; &amp;nbsp; &amp;nbsp;-25.214&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;99.254&amp;nbsp; &amp;nbsp; &amp;nbsp;-25.214&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NULL&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;00.0000&amp;nbsp; &amp;nbsp; &amp;nbsp;-00.000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 99.254&amp;nbsp; &amp;nbsp; &amp;nbsp;-21.218&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;NULL&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;00.0000&amp;nbsp; &amp;nbsp; &amp;nbsp;-00.000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;00.000 &amp;nbsp; &amp;nbsp;-00.000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Error message with something&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The results for all of the &lt;SPAN&gt;phrases&amp;nbsp;&lt;/SPAN&gt;will be different and I will be searching through1000's of logs. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;If it's too much work to show both set of the&amp;nbsp;&lt;FONT color="#0000FF"&gt;Latitude&lt;/FONT&gt;&lt;FONT&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Longitude &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#0000FF"&gt;&lt;FONT color="#000000"&gt;values, then the second set would work.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly appreciated..&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 12:48:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745689#M241518</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-07T12:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745739#M241531</link>
      <description>&lt;P&gt;It seems like things are moving under your feet - the syntax of your log message has changed from your original example, which had the text&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;StandardizedAddressService&lt;/STRONG&gt;, now it's&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;StandardizedAddress&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that if you create a regex to extract the fields, and the message changes, it will break the extraction.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It would be useful, when you say you have errors - to show what you tried and what the result was, otherwise it's almost impossible to come up with some solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, on these assumptions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;a) you have a JSON object after FROM: {}&lt;BR /&gt;b) another JSON object after RESULT:&amp;nbsp; 1 | {} - is "1" a fixed value or variable?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that your example does NOT show valid JSON for the result. It is missing a comma after the Longitude value before the F - not sure if that is a typo or in your data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;97.999&lt;/FONT&gt;&lt;/STRONG&gt;,"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Longitude&lt;/STRONG&gt;&lt;/FONT&gt;":&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;-97.999&lt;/FONT&gt;&lt;/STRONG&gt;"F&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Assuming it is a typo then your search should be this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Your base data search goes here...

``` This line extracts the from and result JSON objects from your msgTxt field ```
| rex field=msgTxt "FROM:\s*(?&amp;lt;from&amp;gt;.*) RESULT:[^{]*(?&amp;lt;result&amp;gt;.*)"

``` This extracts the JSON from each of those objects ```
| spath input=from
| spath input=result
``` and this makes the field names a bit more sensible ```
| rename AddressDetails{}.* as Result.*, WarningMessages{} as Result.WarningMessages
| table Latitude Longitude *.Latitude *.Longitude Result.WarningMessages&lt;/LI-CODE&gt;&lt;P&gt;If you reply to these, please post your code in code blocks, so that it's easy to read&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 01:28:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745739#M241531</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-08T01:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Specific Values in a dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745797#M241543</link>
      <description>&lt;P&gt;Thank you the solution you provided worked..&amp;nbsp;I appreciate your patience and willingness to help me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 18:42:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Showing-Specific-Values-in-a-dashboard/m-p/745797#M241543</guid>
      <dc:creator>msarkaus</dc:creator>
      <dc:date>2025-05-08T18:42:07Z</dc:date>
    </item>
  </channel>
</rss>

