<?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: Why is the KV pair extraction with custom delimiters not working? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439640#M76645</link>
    <description>&lt;P&gt;Really curious if that works, because I don't think DELIMS in transforms.conf is intended to contain multi-character delimiter strings. Each character is interpreted on its own as a delimeter and especially with the space occuring in both delimiters, I kind of expect this will fail.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jun 2019 14:37:17 GMT</pubDate>
    <dc:creator>FrankVl</dc:creator>
    <dc:date>2019-06-24T14:37:17Z</dc:date>
    <item>
      <title>Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439638#M76643</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;

&lt;P&gt;I'm trying to get extraction to work on a dynamic key value log.&lt;/P&gt;

&lt;P&gt;I've tried the following without any success (open to other suggestions away from this).&lt;/P&gt;

&lt;P&gt;Ideally the output should be:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Thread=5\=/blah/blah
Method=GET
URI=/
Protocol=HTTP/1.1
IP=1.2.3.4
Port=54809
Referer=https://referrer
field=value
.
.
.
field=value
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[testsourcetype_log]
CHARSET=UTF-8
KV_MODE=none
NO_BINARY_CHECK=true
SHOULD_LINEMERGE=false
category=Testing
description=Test KV log sourcetype
disabled=false
pulldown_type=true
REPORT-kv=kv_extraction
EXTRACT-status=^(\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2})\s\[(?&amp;lt;status&amp;gt;\w+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[kv_extraction]
DELIMS = "]", ":"
MV_ADD=true   
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;log snip:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2019-03-01T09:42:01 [status] [Thread: 5=/blah/blah] [Method: GET] [URI: /blah/blah]  [Protocol: HTTP/1.1] [IP: 1.2.3.4] [Port: 54809] [Referer: https://referrer] [..] ... [..] text string here
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;References:&lt;BR /&gt;
&lt;A href="https://www.splunk.com/blog/2008/02/12/delimiter-based-key-value-pair-extraction.html"&gt;https://www.splunk.com/blog/2008/02/12/delimiter-based-key-value-pair-extraction.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/170826/set-delimiter.html"&gt;https://answers.splunk.com/answers/170826/set-delimiter.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;

&lt;P&gt;UPDATE 6/25:&lt;BR /&gt;
I've tried combinations from @FrankVl, @VatsalJagani, @woodcock but it seems none of them work.&lt;/P&gt;

&lt;P&gt;Naturally, I've restarted splunk after each change. Here is the output from btool to show that I'm not going insane&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/opt/splunk/bin/splunk cmd btool props list
[testsourcetype_log]
ADD_EXTRA_TIME_FIELDS = True
ANNOTATE_PUNCT = True
AUTO_KV_JSON = true
BREAK_ONLY_BEFORE =
BREAK_ONLY_BEFORE_DATE = True
CHARSET = UTF-8
DATETIME_CONFIG = /etc/datetime.xml
DEPTH_LIMIT = 1000
HEADER_MODE =
KV_MODE = none
LEARN_MODEL = true
LEARN_SOURCETYPE = true
LINE_BREAKER_LOOKBEHIND = 100
MATCH_LIMIT = 100000
MAX_DAYS_AGO = 2000
MAX_DAYS_HENCE = 2
MAX_DIFF_SECS_AGO = 3600
MAX_DIFF_SECS_HENCE = 604800
MAX_EVENTS = 256
MAX_TIMESTAMP_LOOKAHEAD = 128
MUST_BREAK_AFTER =
MUST_NOT_BREAK_AFTER =
MUST_NOT_BREAK_BEFORE =
NO_BINARY_CHECK = true
SEGMENTATION = indexing
SEGMENTATION-all = full
SEGMENTATION-inner = inner
SEGMENTATION-outer = outer
SEGMENTATION-raw = none
SEGMENTATION-standard = standard
SHOULD_LINEMERGE = false
TRANSFORMS =
TRANSFORMS-kv = kv_extraction
TRUNCATE = 10000
category = Testing
description = Test KV log sourcetype
detect_trailing_nulls = false
disabled = false
maxDist = 100
priority =
pulldown_type = true
sourcetype =

/opt/splunk/bin/splunk cmd btool transforms list
[kv_extraction]
CAN_OPTIMIZE = True
CLEAN_KEYS = True
DEFAULT_VALUE =
DEPTH_LIMIT = 1000
DEST_KEY =
FORMAT = $1::$2
KEEP_EMPTY_VALS = False
LOOKAHEAD = 4096
MATCH_LIMIT = 100000
MV_ADD = true
REGEX = \[([^:[]+):\s+([^\]]+)]
SOURCE_KEY = _raw
WRITE_META = False
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Updated props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[testsourcetype_log]
CHARSET=UTF-8
KV_MODE=none
NO_BINARY_CHECK=true
SHOULD_LINEMERGE=false
category=Testing
description=Test KV log sourcetype
disabled=false
pulldown_type=true
TRANSFORMS-kv=kv_extraction
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;updated transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[kv_extraction]
REGEX = \[([^:[]+):\s+([^\]]+)]
FORMAT = $1::$2
MV_ADD=true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;UPDATE 6/27:&lt;/P&gt;

&lt;P&gt;Using a clean splunk docker image, I:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;recreated indexers, inputs, props, transforms on the docker instance (external volume)&lt;/LI&gt;
&lt;LI&gt;stripped those files to a bare minimum&lt;/LI&gt;
&lt;LI&gt;renamed the sourcetype (to be sure that Splunk is reading props/transforms)&lt;/LI&gt;
&lt;LI&gt;moved the configs from being inside an app to system/local/*.conf&lt;/LI&gt;
&lt;LI&gt;checked the knowledge object existence via the gui (new/renamed transform is listed)&lt;/LI&gt;
&lt;LI&gt;checked the knowledge object permissions (global)&lt;/LI&gt;
&lt;LI&gt;and restarted after each change&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;nada, log is being ingested but no new fields created (except for the &lt;STRONG&gt;value&lt;/STRONG&gt; of &lt;CODE&gt;thread&lt;/CODE&gt; that is &lt;CODE&gt;field: 5 value: /blah/blah/&lt;/CODE&gt;)&lt;/P&gt;

&lt;P&gt;current config:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$ cat system/local/inputs.conf
[default]
host = 7278c011e1e0

[monitor:///opt/splunk/var/log/testlogs/*.log]
disabled=false
sourcetype=blahblah
index = testindex

$ cat system/local/props.conf
[blahblah]
CHARSET=UTF-8
KV_MODE=none
NO_BINARY_CHECK=true
SHOULD_LINEMERGE=false
category=Testing
description=Test KV log sourcetype access
disabled=false
pulldown_type=true
TRANSFORMS-blahkv=blahkvextraction
#TRANSFORMS-replace_source = replacedefaultsource2

$ cat system/local/transforms.conf
[blahkvextraction]
FORMAT = $1::$2
MV_ADD = 1
#REGEX = \[([^:[]+):\s+([^\]]+)]
REGEX = \[([^:\]]+):\s+([^\]]+)\]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;BTW: for @FrankVl, @VatsalJagani, @woodcock, thanks. I have used iterations of each of your code and strongly believe that it works. I've done variations of the below to prove that your solutions work and it does (I get one instance of field1=Thread, field2= &lt;CODE&gt;value&lt;/CODE&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=testindex sourcetype=blahblah
| rex field=_raw "\[(?&amp;lt;field1&amp;gt;[^:\]]+):\s+(?&amp;lt;field2&amp;gt;[^\]]+)\]"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:03:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439638#M76643</guid>
      <dc:creator>splunked38</dc:creator>
      <dc:date>2019-06-24T14:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439639#M76644</link>
      <description>&lt;P&gt;Can you try:  &lt;CODE&gt;DELIMS = "] [", ": "&lt;/CODE&gt;?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:13:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439639#M76644</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-24T14:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439640#M76645</link>
      <description>&lt;P&gt;Really curious if that works, because I don't think DELIMS in transforms.conf is intended to contain multi-character delimiter strings. Each character is interpreted on its own as a delimeter and especially with the space occuring in both delimiters, I kind of expect this will fail.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:37:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439640#M76645</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-24T14:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439641#M76646</link>
      <description>&lt;P&gt;Yeah right my bad, it will not work. Instead use REGEX from transforms as suggested in answer.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:40:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439641#M76646</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-24T14:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439642#M76647</link>
      <description>&lt;P&gt;If you can't get it working with the &lt;CODE&gt;DELIMS&lt;/CODE&gt; suggestion from @VatsalJagani then try it using REGEX:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[kv_extraction]
REGEX = \[([^:\]]+):\s+([^\]]+)\]
FORMAT = $1::$2
MV_ADD=true 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;See: &lt;A href="https://regex101.com/r/PDHjzk/1"&gt;https://regex101.com/r/PDHjzk/1&lt;/A&gt;&lt;BR /&gt;
Note: this assumes fieldnames do not contain &lt;CODE&gt;:&lt;/CODE&gt; or &lt;CODE&gt;]&lt;/CODE&gt; and field values do not contain &lt;CODE&gt;]&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:42:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439642#M76647</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-24T14:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439643#M76648</link>
      <description>&lt;P&gt;Hello @splunked38,&lt;/P&gt;

&lt;P&gt;Please give a shot to below transforms instead of DELIMS.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[kv_extraction]
REGEX = \[([^:\[]+):\s+([^\]]+)\]
FORMAT = $1::$2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 14:43:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439643#M76648</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-24T14:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439644#M76649</link>
      <description>&lt;P&gt;I tried @VatsalJagani's example but it didn't work (then again, it could other things as well)&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 18:38:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439644#M76649</guid>
      <dc:creator>splunked38</dc:creator>
      <dc:date>2019-06-24T18:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439645#M76650</link>
      <description>&lt;P&gt;Try this in transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[kv_extraction]
REGEX = \[([^:[]+):\s+([^\]]+)]
FORMAT = $1::$2
MV_ADD = true
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Jun 2019 19:50:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439645#M76650</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-06-24T19:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439646#M76651</link>
      <description>&lt;P&gt;Try transform that I've given in my answer if that is not working then comment further issues that you are having and we'll debug issues further.&lt;BR /&gt;
Also, what do you mean by "it could other things as well", please describe.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 03:44:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439646#M76651</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-25T03:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439647#M76652</link>
      <description>&lt;P&gt;You're missing the &lt;CODE&gt;:&lt;/CODE&gt; between key and value. Also: using &lt;CODE&gt;*?&lt;/CODE&gt; is typically not the best performing construct and is best avoided if it is possible to just use a more specific regex that doesn't require backtracking.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 06:54:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439647#M76652</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-25T06:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439648#M76653</link>
      <description>&lt;P&gt;Yeah agree with you @FrankVI. Here is the well performing regex  &lt;CODE&gt;\[([^:]+):\s*([^\]]+)\]&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 07:06:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439648#M76653</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-25T07:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439649#M76654</link>
      <description>&lt;P&gt;With still one small mistake (I made that myself as well initially). Have a look at what this regex does with the provided sample event: &lt;A href="https://regex101.com/r/NtE461/1"&gt;https://regex101.com/r/NtE461/1&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;That is why I added a &lt;CODE&gt;\]&lt;/CODE&gt; in the character class of the first capture group. @woodcock solved it by adding a &lt;CODE&gt;[&lt;/CODE&gt; in there, which has roughly the same effect.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 07:20:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439649#M76654</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-25T07:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439650#M76655</link>
      <description>&lt;P&gt;Yeah right, to be on safer side I always add  &lt;CODE&gt;\&lt;/CODE&gt; before all special characters in regex. In our new regex is using only 87 steps to complete with sample event.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 07:25:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439650#M76655</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-25T07:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439651#M76656</link>
      <description>&lt;P&gt;My point was that it trips over the &lt;CODE&gt;[status]&lt;/CODE&gt; part when using your regex. It takes &lt;CODE&gt;status] [Thread&lt;/CODE&gt; as the first fieldname.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 07:41:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439651#M76656</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-25T07:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439652#M76657</link>
      <description>&lt;P&gt;This regex is working for me -  &lt;CODE&gt;\[([^:\[]+):\s+([^\]]+)\]&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 08:32:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439652#M76657</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-25T08:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439653#M76658</link>
      <description>&lt;P&gt;Yes, adding the &lt;CODE&gt;\[&lt;/CODE&gt; to the first capture group's negative character set solves it indeed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 08:41:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439653#M76658</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-25T08:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439654#M76659</link>
      <description>&lt;P&gt;Commenting on the update:&lt;BR /&gt;
Have you deployed the config on the searchhead(s)? Did you confirm from the GUI (settings - fields -&amp;gt;...) that the &lt;CODE&gt;TRANSFORMS-kv&lt;/CODE&gt; is indeed enabled and shared Global?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 11:29:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439654#M76659</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2019-06-25T11:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439655#M76660</link>
      <description>&lt;P&gt;Mine definitely works on your sample data set; see here:&lt;BR /&gt;
&lt;A href="https://regex101.com/r/s0ACKL/1"&gt;https://regex101.com/r/s0ACKL/1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 15:14:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439655#M76660</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-06-25T15:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439656#M76661</link>
      <description>&lt;P&gt;Mine definitely works on your sample data set; see here:&lt;BR /&gt;
&lt;A href="https://regex101.com/r/s0ACKL/1"&gt;https://regex101.com/r/s0ACKL/1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 15:14:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439656#M76661</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-06-25T15:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the KV pair extraction with custom delimiters not working?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439657#M76662</link>
      <description>&lt;P&gt;I initially installed this on a standalone SH, btool output that I posted says that the config is loaded.&lt;/P&gt;

&lt;P&gt;Having said that, the props/transforms is part of an app not system wide. so it &lt;EM&gt;may&lt;/EM&gt; be the problem.&lt;/P&gt;

&lt;P&gt;I'm currently standing up a &lt;EM&gt;clean&lt;/EM&gt; SH/indexer instance to retest and check the perms. I'll report back shortly.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 10:44:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-KV-pair-extraction-with-custom-delimiters-not-working/m-p/439657#M76662</guid>
      <dc:creator>splunked38</dc:creator>
      <dc:date>2019-06-26T10:44:00Z</dc:date>
    </item>
  </channel>
</rss>

