<?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: Question about not standard source type in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498037#M140153</link>
    <description>&lt;P&gt;Will try this solution too!&lt;BR /&gt;
Thanks&lt;/P&gt;</description>
    <pubDate>Sun, 17 May 2020 04:29:48 GMT</pubDate>
    <dc:creator>glm_cybaze</dc:creator>
    <dc:date>2020-05-17T04:29:48Z</dc:date>
    <item>
      <title>Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498032#M140148</link>
      <description>&lt;P&gt;Hi to all, I'm new to the splunk use and I have an issue with a software that write logs in a non standard way (of my fresh knowledge of splunk)&lt;BR /&gt;
    {&lt;BR /&gt;&lt;BR /&gt;
       "name":"clientLogger",&lt;BR /&gt;
       "level":30,&lt;BR /&gt;
       "levelName":"info",&lt;BR /&gt;
       "msg":"[audio] iceServers",&lt;BR /&gt;
       "time":"2018-08-27T19:32:57.389Z",&lt;BR /&gt;
       "src":"xxxxxx",&lt;BR /&gt;
       "v":1,&lt;BR /&gt;
       "extraInfo":{&lt;BR /&gt;&lt;BR /&gt;
          "sessionToken":"e7boenucj1pwkbfc",&lt;BR /&gt;
          "meetingId":"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1535398242909",&lt;BR /&gt;
          "requesterUserId":"w_klfavdlkumj8",&lt;BR /&gt;
          "fullname":"Ios",&lt;BR /&gt;
          "confname":"Demo Meeting",&lt;BR /&gt;
          "externUserID":"w_klfavdlkumj8"&lt;BR /&gt;
       },&lt;BR /&gt;
       "url":"xxxx",&lt;BR /&gt;
       "userAgent":"Mozilla/5.0",&lt;BR /&gt;
       "count":1&lt;BR /&gt;
    }&lt;BR /&gt;
and in splunk the log are:&lt;BR /&gt;
&lt;IMG src="https://community.splunk.com/storage/temp/290749-inkedsplunk-04-li2.jpg" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;the only info I need are:&lt;BR /&gt;
- time&lt;BR /&gt;
- fullname&lt;BR /&gt;
- confname&lt;/P&gt;

&lt;P&gt;But regex don't work and I don't recognize how to set only the proper field!&lt;BR /&gt;
Some help or how to guide would be helpful!&lt;BR /&gt;
Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 05:25:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498032#M140148</guid>
      <dc:creator>glm_cybaze</dc:creator>
      <dc:date>2020-09-30T05:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498033#M140149</link>
      <description>&lt;P&gt;&lt;CODE&gt;rex&lt;/CODE&gt; should work.  You didn't say what you tried, so we can't say what you might have done wrong.  Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo
| rex "time\":\"(?&amp;lt;time&amp;gt;[^\"]+)"
| rex "fullname\":\"(?&amp;lt;fullname&amp;gt;[^\"]+)"
| rex "confname\":\"(?&amp;lt;confname&amp;gt;[^\"]+)"
| table time, fullname, confname
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 16:59:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498033#M140149</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-05-16T16:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498034#M140150</link>
      <description>&lt;P&gt;Thanks, i used in search and work! created report and dashboard! now i try to replicate and add more complex analisys!&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 23:27:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498034#M140150</guid>
      <dc:creator>glm_cybaze</dc:creator>
      <dc:date>2020-05-16T23:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498035#M140151</link>
      <description>&lt;P&gt;make props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;SEDCMD-trim = s/.*?\]//g
TRUNCATE = 0
INDEXED_EXTRACTION = none
KV_MODE = json
SHOULD_LINEMERGE = false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can see the fields &lt;CODE&gt;{}.time&lt;/CODE&gt; , &lt;CODE&gt;extraInfo{}.fullname&lt;/CODE&gt; and &lt;CODE&gt;extraInfo{}.confname&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 23:35:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498035#M140151</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-05-16T23:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498036#M140152</link>
      <description>&lt;P&gt;If your problem is resolved then please accept an answer to help future readers.&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 23:58:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498036#M140152</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-05-16T23:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Question about not standard source type</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498037#M140153</link>
      <description>&lt;P&gt;Will try this solution too!&lt;BR /&gt;
Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 04:29:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Question-about-not-standard-source-type/m-p/498037#M140153</guid>
      <dc:creator>glm_cybaze</dc:creator>
      <dc:date>2020-05-17T04:29:48Z</dc:date>
    </item>
  </channel>
</rss>

