<?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: Mismatch ']' in the search of Python Splunk SDK package in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574174#M200101</link>
    <description>&lt;P&gt;Come on. You have Splunk, don't just pull the raw data and process it on the receiver's side.&lt;/P&gt;&lt;P&gt;Do a proper search and retrieve the final results.&lt;/P&gt;&lt;P&gt;In your case the events look XML-ish. Maybe you should use spath or xpath to extract the data you want from the events.&lt;/P&gt;&lt;P&gt;And once again - avoid "*something" as a condition.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Nov 2021 11:36:39 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2021-11-09T11:36:39Z</dc:date>
    <item>
      <title>Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/573861#M199985</link>
      <description>&lt;P&gt;My python is 3.8.5 and splunk-sdk is 1.6.16.&amp;nbsp; My Splunk developer gives me a URL and I get its search string to retrieve data as shown below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bergen288_0-1636141902635.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/16758i41902BBDFACF8A44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bergen288_0-1636141902635.png" alt="bergen288_0-1636141902635.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Below is my search string and additional python code: &lt;STRONG&gt;search/earliest/latest&lt;/STRONG&gt; are added after copy/paste search string.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;SEARCH_STRING = f"""&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; search sourcetype="builder:payeeservice" host="JWPP*BLDR*P*" "*PayeeAddResponse" "*" "*" "*" "*" "*" "*" "*"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; earliest=-1h@h latest=-0h@h&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |rex d5p1:Description&amp;gt;(?&amp;lt;Description&amp;gt;.*&amp;lt;/d5p1:Description&amp;gt;)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |eval Description = replace(Description,"&amp;lt;[/]*[d]5p1:[\S]*&amp;gt;|&amp;lt;[d]5p1:[\S\s\"\=]*/&amp;gt;", "")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |rex "GU\(((?P&amp;lt;SponsorId&amp;gt;[^;]+);(?P&amp;lt;SubscriberId&amp;gt;[^;]+);(?P&amp;lt;SessionId&amp;gt;[^;]*);(?P&amp;lt;CorrelationId&amp;gt;[^;]+);(?P&amp;lt;Version&amp;gt;\w+))\)"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |table _time,SponsorId, SubscriberId,SessionId, CorrelationId,Description&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |join type=left CorrelationId [search sourcetype="builder:payeeservice" host="JWPP*BLDR*P*" &amp;nbsp;"*AdditionalInformation*" |xmlkv ]&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |eval Timestamp = if((TenantId != ""),Timestamp,_time),PayeeName = if((TenantId != ""),PayeeName,""), Message = if((Description != ""),Description,Message), Exception = if((TenantId != ""),Exception,""), Address = if((TenantId != ""),Address,""), PayeeType = if((TenantId != ""),PayeeType,""),MerchantId = if((TenantId != ""),MerchantId,""),AccountNumber = if((TenantId != ""),AccountNumber,""),SubscriberId = if((TenantId != ""),UserId,SubscriberId),SponsorId = if((TenantId != ""),TenantId,SponsorId)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |table Timestamp, SponsorId,SubscriberId, PayeeName,Message,Exception,CorrelationId,SessionId,PayeeName,Address,PayeeType,MerchantId,AccountNumber&lt;/DIV&gt;&lt;DIV&gt;"""&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;splunklib&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;results&lt;/SPAN&gt; &lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;results&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;service = connect_Splunk()&lt;/DIV&gt;&lt;DIV&gt;rr = results.ResultsReader(service.jobs.create(SEARCH_STRING))&lt;/DIV&gt;&lt;DIV&gt;ord_list = []&lt;/DIV&gt;&lt;DIV&gt;for&amp;nbsp;result in rr:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; if isinstance(result, results.Message):&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; #skip messages&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pass&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; elif isinstance(result, dict):&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # Normal events are returned as dicts&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ord_list.append(result)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;I get this error so something is wrong in my search string.&amp;nbsp; How to fix it?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;splunklib.binding.HTTPError: HTTP 400 Bad Request -- Error in 'SearchParser': Mismatched ']'.&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Nov 2021 20:11:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/573861#M199985</guid>
      <dc:creator>bergen288</dc:creator>
      <dc:date>2021-11-05T20:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/573899#M199998</link>
      <description>&lt;P&gt;Firstly - what is this abomination&lt;/P&gt;&lt;PRE&gt; search sourcetype="builder:payeeservice" host="JWPP*BLDR*P*" "*PayeeAddResponse" "*" "*" "*" "*" "*" "*" "*"&lt;/PRE&gt;&lt;P&gt;Wildcards at the beginning cause you to&amp;nbsp; scan whole events. Not a very good idea. And those repeated wildcards are pointless.&lt;/P&gt;&lt;P&gt;Secondly, think if you can do it as some form of stats. Joins are much less effective and have limitations.&lt;/P&gt;&lt;P&gt;Thirdly - start your search from the beginning and add subsequent steps to see where is the error. It's much easier to pinpoint a mistake this way than debug whole complicated search.&lt;/P&gt;&lt;P&gt;And lastly - it has nothing to do with python since the search itself gives you errors.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Nov 2021 09:44:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/573899#M199998</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-11-06T09:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574034#M200041</link>
      <description>&lt;P&gt;Good advice.&amp;nbsp; Now, I only keep the following simple search statement with "_raw" column only as it contains all my required fields.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;SEARCH_STRING = """&lt;/DIV&gt;&lt;/DIV&gt;&amp;nbsp; &amp;nbsp;search sourcetype="builder:payeeservice" host=JWPP*BLDRBP* "*AdditionalInformation*"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; earliest=-1h@h latest=-0h@h&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |table _raw&lt;/DIV&gt;&lt;DIV&gt;"""&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The sample data is in OrderDict format as shown below.&amp;nbsp; I need to extract all fields between&amp;nbsp;&amp;nbsp;&amp;lt;NetworkPayeeAddManager&amp;gt; and&amp;nbsp;&amp;lt;/NetworkPayeeAddManager&amp;gt; or between&amp;nbsp;&amp;lt;PayeeAddManager&amp;gt; and&amp;nbsp;&amp;lt;/PayeeAddManager&amp;gt; and save all information to Pandas DataFrame.&amp;nbsp; What's the best way to do it?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;OrderedDict([('_raw', '2021-11-08 08:58:23,832 [42] INFO &amp;nbsp;FiservLog.stdlog - &amp;lt;NetworkPayeeAddManager&amp;gt;&amp;lt;TenantId&amp;gt;13744&amp;lt;/TenantId&amp;gt;&amp;lt;UserId&amp;gt;999176993878&amp;lt;/UserId&amp;gt;&amp;lt;SourceMethodName&amp;gt;LogInfoSecure&amp;lt;/SourceMethodName&amp;gt;&amp;lt;SourceLineNumber&amp;gt;234&amp;lt;/SourceLineNumber&amp;gt;&amp;lt;Message&amp;gt;NetworkPayee was added successfully&amp;lt;/Message&amp;gt;&amp;lt;Timestamp&amp;gt;2021-11-08T13:58:23.831628Z&amp;lt;/Timestamp&amp;gt;&amp;lt;Exception /&amp;gt;&amp;lt;AdditionalInformation&amp;gt;&amp;lt;SessionId&amp;gt;F7E65ED4D8C74E6699C62F23ECF5D000200TWNQ9X1AA1754513234A6367FEE06&amp;lt;/SessionId&amp;gt;&amp;lt;Timestamp&amp;gt;11/8/2021 1:58:23 PM&amp;lt;/Timestamp&amp;gt;&amp;lt;CorrelationId&amp;gt;2461b5d9839a46739e9a3e918ca0681b-01&amp;lt;/CorrelationId&amp;gt;&amp;lt;PayeeName&amp;gt;Louisville fire brick&amp;lt;/PayeeName&amp;gt;&amp;lt;Address&amp;gt;{"Address1":"Po 9229","Address2":null,"City":"Louisville","State":"KY","Zip5":"40209","Zip4":null,"Zip2":null}&amp;lt;/Address&amp;gt;&amp;lt;PayeeType&amp;gt;UnManagedPayee&amp;lt;/PayeeType&amp;gt;&amp;lt;AccountNumber&amp;gt;XX2222&amp;lt;/AccountNumber&amp;gt;&amp;lt;/AdditionalInformation&amp;gt;&amp;lt;/NetworkPayeeAddManager&amp;gt;')])&lt;/DIV&gt;&lt;DIV&gt;OrderedDict([('_raw', '2021-11-08 08:58:24,783 [105] INFO &amp;nbsp;FiservLog.stdlog - &amp;lt;PayeeAddManager&amp;gt;&amp;lt;TenantId&amp;gt;DI737&amp;lt;/TenantId&amp;gt;&amp;lt;UserId&amp;gt;344801483&amp;lt;/UserId&amp;gt;&amp;lt;SourceMethodName&amp;gt;LogInfoSecure&amp;lt;/SourceMethodName&amp;gt;&amp;lt;SourceLineNumber&amp;gt;234&amp;lt;/SourceLineNumber&amp;gt;&amp;lt;Message&amp;gt;Payee was added successfully&amp;lt;/Message&amp;gt;&amp;lt;Timestamp&amp;gt;2021-11-08T13:58:24.7831103Z&amp;lt;/Timestamp&amp;gt;&amp;lt;Exception /&amp;gt;&amp;lt;AdditionalInformation&amp;gt;&amp;lt;SessionId&amp;gt;7FC6442718864CE4838E50B026C8D0A0000TWNXSV1721BE0D804F295706DD39E&amp;lt;/SessionId&amp;gt;&amp;lt;Timestamp&amp;gt;11/8/2021 1:58:24 PM&amp;lt;/Timestamp&amp;gt;&amp;lt;CorrelationId&amp;gt;ab33b59c-756e-4144-ad62-6f0afadbe8eb&amp;lt;/CorrelationId&amp;gt;&amp;lt;PayeeName&amp;gt;Gail Nezworski&amp;lt;/PayeeName&amp;gt;&amp;lt;Address&amp;gt;{"Address1":"2280 S 460 E","Address2":null,"City":"LaGrange","State":"IN","Zip5":"46761","Zip4":null,"Zip2":null}&amp;lt;/Address&amp;gt;&amp;lt;PayeeType&amp;gt;UnManagedPayee&amp;lt;/PayeeType&amp;gt;&amp;lt;AccountNumber&amp;gt;XXXXX1888&amp;lt;/AccountNumber&amp;gt;&amp;lt;/AdditionalInformation&amp;gt;&amp;lt;/PayeeAddManager&amp;gt;')])&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:02:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574034#M200041</guid>
      <dc:creator>bergen288</dc:creator>
      <dc:date>2021-11-08T15:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574038#M200042</link>
      <description>&lt;P&gt;I would expect the output dataframe has columns from first "TenantId" to last "AccountNumber" with values such as 13744, XX2222.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:14:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574038#M200042</guid>
      <dc:creator>bergen288</dc:creator>
      <dc:date>2021-11-08T15:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574174#M200101</link>
      <description>&lt;P&gt;Come on. You have Splunk, don't just pull the raw data and process it on the receiver's side.&lt;/P&gt;&lt;P&gt;Do a proper search and retrieve the final results.&lt;/P&gt;&lt;P&gt;In your case the events look XML-ish. Maybe you should use spath or xpath to extract the data you want from the events.&lt;/P&gt;&lt;P&gt;And once again - avoid "*something" as a condition.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 11:36:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/574174#M200101</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-11-09T11:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575476#M200535</link>
      <description>&lt;P&gt;Rick:&lt;/P&gt;&lt;P&gt;I modified my search string based on your hints.&amp;nbsp; In one minute at 9:33am today, there are 1672 rows.&amp;nbsp; Unfortunately, 23 rows do not have&amp;nbsp;PayeeType column so they have 12 columns while all others have 13 columns which will cause failure to load whole data into Pandas dataframe.&amp;nbsp; Below is an example of _raw column.&amp;nbsp; It doesn't have&amp;nbsp;PayeeType.&amp;nbsp; In addition, there is a chance that&amp;nbsp;AccountNumber may have the same issue.&amp;nbsp; Is there a way to let Splunk generate "null" value for them so that all rows have 13 columns even though&amp;nbsp;PayeeType and/or&amp;nbsp;AccountNumber might be missing in _raw value?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;"2021-11-18 09:33:06,900 [59] INFO FiservLog.stdlog - &amp;lt;PayeeAddManager&amp;gt;&amp;lt;TenantId&amp;gt;FI05&amp;lt;/TenantId&amp;gt;&amp;lt;UserId&amp;gt;559852410&amp;lt;/UserId&amp;gt;&amp;lt;SourceMethodName&amp;gt;LogInfoSecure&amp;lt;/SourceMethodName&amp;gt;&amp;lt;SourceLineNumber&amp;gt;234&amp;lt;/SourceLineNumber&amp;gt;&amp;lt;Message&amp;gt;WARNING:Error adding Payee:Subscriber status prevents this action from being completed&amp;lt;/Message&amp;gt;&amp;lt;Timestamp&amp;gt;2021-11-18T14:33:06.899739Z&amp;lt;/Timestamp&amp;gt;&amp;lt;Exception /&amp;gt;&amp;lt;AdditionalInformation&amp;gt;&amp;lt;SessionId&amp;gt;463949F06E9F4B93A57570E8B56489A0201T4Q4P019019D467AADD625BC88A04&amp;lt;/SessionId&amp;gt;&amp;lt;Timestamp&amp;gt;11/18/2021 2:33:06 PM&amp;lt;/Timestamp&amp;gt;&amp;lt;CorrelationId&amp;gt;1637245986853&amp;lt;/CorrelationId&amp;gt;&amp;lt;PayeeName&amp;gt;PNC CARD SERVICES&amp;lt;/PayeeName&amp;gt;&amp;lt;Address&amp;gt;null&amp;lt;/Address&amp;gt;&amp;lt;AccountNumber&amp;gt;XXXXXXXXXXXX8590&amp;lt;/AccountNumber&amp;gt;&amp;lt;/AdditionalInformation&amp;gt;&amp;lt;/PayeeAddManager&amp;gt;"&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; search sourcetype="builder:payeeservice" host=JWPP*BLDRBP* "*AdditionalInformation*"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; earliest=-27m@m latest=-26m@m &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=Timestamp "//NetworkPayeeAddManager/Timestamp"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=TenantId "//NetworkPayeeAddManager/TenantId"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=UserId "//NetworkPayeeAddManager/UserId"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=SourceMethodName "//NetworkPayeeAddManager/SourceMethodName"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=SourceLineNumber "//NetworkPayeeAddManager/SourceLineNumber"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=Message "//NetworkPayeeAddManager/Message"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=Exception "//NetworkPayeeAddManager/Exception"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=SessionId "//NetworkPayeeAddManager/AdditionalInformation/SessionId"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=CorrelationId "//NetworkPayeeAddManager/AdditionalInformation/CorrelationId"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=PayeeName "//NetworkPayeeAddManager/AdditionalInformation/PayeeName"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=Address "//NetworkPayeeAddManager/AdditionalInformation/Address"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=AccountNumber "//NetworkPayeeAddManager/AdditionalInformation/AccountNumber"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |xpath outfield=PayeeType "//NetworkPayeeAddManager/AdditionalInformation/PayeeType"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; |table Timestamp TenantId UserId SourceMethodName SourceLineNumber Message Exception SessionId&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;CorrelationId PayeeName Address AccountNumber PayeeType&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 Nov 2021 15:48:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575476#M200535</guid>
      <dc:creator>bergen288</dc:creator>
      <dc:date>2021-11-18T15:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575619#M200583</link>
      <description>&lt;P&gt;Yup.&lt;/P&gt;&lt;P&gt;You can use fillnull &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.3/SearchReference/Fillnull" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.2.3/SearchReference/Fillnull&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think it's what you need.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 11:22:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575619#M200583</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-11-19T11:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Mismatch ']' in the search of Python Splunk SDK package</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575682#M200591</link>
      <description>&lt;P&gt;Yes, I got "null" value for PayeeType after adding "|fillnull value=null PayeeType" in my SEARCH_STRING.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:19:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Mismatch-in-the-search-of-Python-Splunk-SDK-package/m-p/575682#M200591</guid>
      <dc:creator>bergen288</dc:creator>
      <dc:date>2021-11-19T16:19:20Z</dc:date>
    </item>
  </channel>
</rss>

