<?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: Eval JSON_EXTRACT Issues in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525174#M148162</link>
    <description>&lt;LI-CODE lang="markup"&gt;index=_internal | head 1 | fields _raw _time | eval _raw="{
  \"cities\": [
    {
      \"name\": \"London\",
      \"Bridges\": [
        { \"name\": \"Tower Bridge\", \"length\": 801 },
        { \"name\": \"Millennium Bridge\", \"length\": 1066 }
      ]
    },
    {
      \"name\": \"Venice\",
      \"Bridges\": [
        { \"name\": \"Rialto Bridge\", \"length\": 157 },
        { \"name\": \"Bridge of Sighs\", \"length\": 36 },
        { \"name\": \"Ponte della Paglia\" }
      ]
    },
    {
      \"name\": \"San Francisco\",
      \"Bridges\": [
        { \"name\": \"Golden Gate Bridge\", \"length\": 8981 },
        { \"name\": \"Bay Bridge\", \"length\": 23556 }
      ]
    }
  ]
}"
| rename COMMENT as "the logic"
| spath cities{} output=cities
| stats count by cities
| spath input=cities Bridges{} output=Bridges
| mvexpand Bridges
| spath input=cities name output=city
| spath input=Bridges
| table city name length&lt;/LI-CODE&gt;</description>
    <pubDate>Sat, 17 Oct 2020 06:09:19 GMT</pubDate>
    <dc:creator>to4kawa</dc:creator>
    <dc:date>2020-10-17T06:09:19Z</dc:date>
    <item>
      <title>Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/524888#M148072</link>
      <description>&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;I'm working on extracting some key info out of an Ansible HEC collector.&amp;nbsp; I'm hoping to use json_extract stuff like run time, machine etc.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The data shows up in Search&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;The data is formatted in proper json "tree" view and color coding in Search.&lt;/LI&gt;&lt;LI&gt;Ansible app uses the _json source type.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;When I tried to use .&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...| eval foo = json_extract(&amp;lt;objectname&amp;gt;) | table foo&lt;/LI-CODE&gt;&lt;P&gt;I can only get it show values for the first object in the list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;After many hours of fiddling around I decided to see if I could get json_extract to work in a simpler scenario. I decided to try out the&lt;STRONG&gt;&amp;nbsp;"cities"&lt;/STRONG&gt;&amp;nbsp;example from the Splunk online Dovs&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/SCS/current/SearchReference/JSONFunctions" target="_blank"&gt;https://docs.splunk.com/Documentation/SCS/current/SearchReference/JSONFunctions&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ingested the example below as a file. I did NOT use _json source type so no index field extractions we should just have the raw JSON below.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "cities": [
    {
      "name": "London",
      "Bridges": [
        { "name": "Tower Bridge", "length": 801 },
        { "name": "Millennium Bridge", "length": 1066 }
      ]
    },
    {
      "name": "Venice",
      "Bridges": [
        { "name": "Rialto Bridge", "length": 157 },
        { "name": "Bridge of Sighs", "length": 36 },
        { "name": "Ponte della Paglia" }
      ]
    },
    {
      "name": "San Francisco",
      "Bridges": [
        { "name": "Golden Gate Bridge", "length": 8981 },
        { "name": "Bay Bridge", "length": 23556 }
      ]
    }
  ]
}&lt;/LI-CODE&gt;&lt;P&gt;I then try the following statement from the Splunk Doc&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...| eval extract_cities = json_extract(cities) | table extract_cities&lt;/LI-CODE&gt;&lt;P&gt;I get nothing.&lt;/P&gt;&lt;P&gt;The example says I should get this below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JSON functions - Splunk Documentation 2020-10-15 10-44-48.png" style="width: 936px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/11308iE033E0B70513DD9E/image-size/large?v=v2&amp;amp;px=999" role="button" title="JSON functions - Splunk Documentation 2020-10-15 10-44-48.png" alt="JSON functions - Splunk Documentation 2020-10-15 10-44-48.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm on Splunk 8.0.6. Is this a bug?&amp;nbsp; This is the first time I've had to work with JSON on this box.&lt;/P&gt;&lt;P&gt;Many thanks in advance for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 15:37:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/524888#M148072</guid>
      <dc:creator>indigo42</dc:creator>
      <dc:date>2020-10-15T15:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525174#M148162</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=_internal | head 1 | fields _raw _time | eval _raw="{
  \"cities\": [
    {
      \"name\": \"London\",
      \"Bridges\": [
        { \"name\": \"Tower Bridge\", \"length\": 801 },
        { \"name\": \"Millennium Bridge\", \"length\": 1066 }
      ]
    },
    {
      \"name\": \"Venice\",
      \"Bridges\": [
        { \"name\": \"Rialto Bridge\", \"length\": 157 },
        { \"name\": \"Bridge of Sighs\", \"length\": 36 },
        { \"name\": \"Ponte della Paglia\" }
      ]
    },
    {
      \"name\": \"San Francisco\",
      \"Bridges\": [
        { \"name\": \"Golden Gate Bridge\", \"length\": 8981 },
        { \"name\": \"Bay Bridge\", \"length\": 23556 }
      ]
    }
  ]
}"
| rename COMMENT as "the logic"
| spath cities{} output=cities
| stats count by cities
| spath input=cities Bridges{} output=Bridges
| mvexpand Bridges
| spath input=cities name output=city
| spath input=Bridges
| table city name length&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 17 Oct 2020 06:09:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525174#M148162</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-10-17T06:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525448#M148290</link>
      <description>&lt;P&gt;Thanks to4kawa for the redirect to spath!&lt;/P&gt;&lt;P&gt;I'm trying extract fields from the json output from ansible win_update. Which as fairly deep nesting.&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;index=* ansible_task.action="win_updates" 
| eval win_upd_failed=spath(_raw, "ansible_result.failed_update_count") 
| eval win_upd_found=spath(_raw, "ansible_result.found_update_count")
| eval win_upd_installed=spath(_raw, "ansible_result.installed_update_count")
| eval win_upd_reboot=spath(_raw, "ansible_result.reboot_required")
| eval win_upd_reboot=spath(_raw, "ansible_result.filtered_updates.categories")
| table ansible_host win_upd_failed  win_upd_found win_upd_installed win_upd_reboot runtime&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This part works well...&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the next issue... I need to pull the KB:&amp;nbsp; numbers and categories: which are buried in there like this. The problem is they exist in an object that gets dynamically named. I don't need to know the object name ever. It's under updates { in the json below...&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;   ansible_check_mode: false
   ansible_host: XXXXXXXXX
   ansible_playbook: update.yml
   ansible_result: { [-]
     _ansible_no_log: false
     changed: true
     failed_update_count: 0
     filtered_updates: { [-]
     }
     found_update_count: 2
     installed_update_count: 2
     reboot_required: true
     updates: { [-]
       a33fefeb-b078-4cde-b9b9-f3473007bef2: { [-] &amp;lt;--I can't pre-populate this in path.
         categories: [ [-]
           Security Updates
           Windows Server 2016
         ]
         id: a33fefeb-b078-4cde-b9b9-f3473007bef2
         installed: true
         kb: [ [-]
           4580346
         ]
         title: 2020-10 Cumulative Update for Windows Server 2016 for x64-based Systems (KB4580346)
       }
       b0a743d6-025a-4ca4-a998-b019a5b176f3: { [+]
       }
     }
   }&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 was trying to get something like this to work with no luck&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;spath path=ansible_result.filtered_updates.updates{}.categories{} output=foo&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 can only get the categories like this by using the darn ID GUID thing. Which I can't pre populate.&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;index=* ansible_task.action="win_updates" 
| spath ansible_result.filtered_updates output=filtered_updates
| spath input=filtered_updates path="25ca9da5-4eba-4cc5-94b5-d25f1a70e216{}.categories{}" output=foo
| table foo&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 for looking into this!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 20:52:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525448#M148290</guid>
      <dc:creator>indigo42</dc:creator>
      <dc:date>2020-10-19T20:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525484#M148304</link>
      <description>&lt;P&gt;Ok This almost works but....&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=* ansible_task.action="win_updates" session="f725550b-c8f2-4d01-89e4-6a07527060d3" 
| eval win_upd_failed=spath(_raw, "ansible_result.failed_update_count") 
| eval win_upd_found=spath(_raw, "ansible_result.found_update_count")
| eval win_upd_installed=spath(_raw, "ansible_result.installed_update_count")
| eval win_upd_reboot=spath(_raw, "ansible_result.reboot_required")
| foreach ansible_result.updates*.categories{} [eval upd_cat='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.updates*.installed [eval upd_inst='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.updates*.kb{} [eval upd_kb='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.updates*.title [eval upd_title='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.filtered_reason [eval flt_rsn='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.categories{} [eval flt_upd_cat='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.kb{} [eval flt_kb='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.title [eval flt_title='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| table ansible_host win_upd_failed win_upd_found win_upd_installed runtime win_upd_reboot ansible_result.found_update_count upd_inst upd_kb upd_cat upd_title flt_upd_cat flt_rsn flt_kb flt_title&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But...it only show the last value, instead of multiple values for the following&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| foreach ansible_result.updates*.categories{} [eval upd_cat='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.updates*.kb{} [eval upd_kb='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.categories{} [eval flt_upd_cat='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| foreach ansible_result.filtered_updates*.kb{} [eval flt_kb='&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']&lt;/LI-CODE&gt;&lt;P&gt;The rest of them show multiple values as they should.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 03:16:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525484#M148304</guid>
      <dc:creator>indigo42</dc:creator>
      <dc:date>2020-10-20T03:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525541#M148323</link>
      <description>&lt;P&gt;your log is not valid json and _raw.&lt;BR /&gt;&lt;BR /&gt;&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;index=_internal |head 1| fields _raw | eval _raw="{\"ansible_check_mode\":false,\"ansible_host\":\"XXXXXXXXX\",\"ansible_playbook\":\"update.yml\",\"ansible_result\":{\"_ansible_no_log\":false,\"changed\":true,\"failed_update_count\":0,\"filtered_updates\":{},\"found_update_count\":2,\"installed_update_count\":2,\"reboot_required\":true,\"updates\":{\"a33fefeb-b078-4cde-b9b9-f3473007bef2\":{\"categories\":[\"Security Updates\",\"Windows Server 2016\"],\"id\":\"a33fefeb-b078-4cde-b9b9-f3473007bef2\",\"installed\":true,\"kb\":[4580346],\"title\":\"2020-10 Cumulative Update for Windows Server 2016 for x64-based Systems (KB4580346)\"},\"b0a743d6-025a-4ca4-a998-b019a5b176f3\":{}}}}"
| spath&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Accurate path is ansible_result.updates.a33fefeb-b078-4cde-b9b9-f3473007bef2.kb{}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rename ansible_result.updates.a33fefeb-b078-4cde-b9b9-f3473007bef2.* as *
| rename *{} as *&lt;/LI-CODE&gt;&lt;P&gt;how about this?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 10:40:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525541#M148323</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-10-20T10:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525559#M148326</link>
      <description>&lt;P&gt;I copied a section out of the whole JSON, I may have missed something.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is I can't pre populate the session ID (the&amp;nbsp;&amp;nbsp;b0a743d6-025a-4ca4-a998-b019a5b176f3 part is dynamically generated.&amp;nbsp; So if I were to psuedo code it, I would need something like this...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ansible_result.updates.*.*&lt;/LI-CODE&gt;&lt;P&gt;But alas, it doesn't seem to want to let me do that.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Since this is a json object type I was able to find an index extracted field to wild card, so I tried this...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=* ansible_task.action="win_updates"  ansible_host="XXXX"
| foreach ansible_result.filtered_updates*.kb* [eval flt_kb=flt_kb.'&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;']
| table flt_kb ansible_result.filtered_updates*.kb*&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;It produced all of the values but it did not concatenate them in the end.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 13:21:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525559#M148326</guid>
      <dc:creator>indigo42</dc:creator>
      <dc:date>2020-10-20T13:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525667#M148364</link>
      <description>&lt;P&gt;I got something that works.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval upd_kb=""
| foreach ansible_result.filtered_updates.*.kb{} [eval upd_kb=upd_kb.if(upd_kb=="","",if(isnull('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'),"",",")).if(isnull('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'),"",'&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;') ] 
| table upd_kb&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I modified the issue from this &lt;A href="https://community.splunk.com/t5/Splunk-Search/How-handle-JSON-Event-with-associative-Array/m-p/432708" target="_self"&gt;post&lt;/A&gt;&amp;nbsp; here. Their problem was just like mine except my data is all in one event, so I could simplify some things. I loved the isnull feature, so I stole it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much all for helping me on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will give props to you for stearing me away from json_extract though! I was convinced that was the way to go.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 02:13:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/525667#M148364</guid>
      <dc:creator>indigo42</dc:creator>
      <dc:date>2020-10-21T02:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/532359#M150384</link>
      <description>&lt;P&gt;I just stumbled over the same issue.&lt;/P&gt;&lt;P&gt;The reason why it fails is because the eval command &lt;EM&gt;json_extract&lt;/EM&gt; expects a FIELD as the first argument.&lt;/P&gt;&lt;P&gt;So when you run&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...| eval extract_cities = json_extract(cities) | table extract_cities&lt;/LI-CODE&gt;&lt;P&gt;it evaluates the content of a field named "cities", which does not exist. Hence no results.&lt;/P&gt;&lt;P&gt;Just try&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...| eval extract_cities = json_extract(_raw) | table extract_cities&lt;/LI-CODE&gt;&lt;P&gt;and it will work.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 17:06:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/532359#M150384</guid>
      <dc:creator>waechtler_amaso</dc:creator>
      <dc:date>2020-12-08T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Eval JSON_EXTRACT Issues</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/532400#M150403</link>
      <description>&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/SCS/current/SearchReference/JSONFunctions" target="_blank"&gt;https://docs.splunk.com/Documentation/SCS/current/SearchReference/JSONFunctions&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cities is not the JSON field yet, I guess.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 21:33:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Eval-JSON-EXTRACT-Issues/m-p/532400#M150403</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-12-08T21:33:25Z</dc:date>
    </item>
  </channel>
</rss>

