<?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: timechart call Time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472540#M132986</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval _raw="raw
2020-04-15 07:18:28.978 WSABXXX checkXXXX
2020-04-15 08:18:28.968 WSABXXX checkXXXX"
| multikv forceheader=1
| rex "(?&amp;lt;timestamp&amp;gt;\S+\s\S+).(?&amp;lt;user&amp;gt;\S+).(?&amp;lt;method&amp;gt;\S+)"
| eval timeStamp=strptime(timestamp,"%F %T.%3Q")
| stats range(timeStamp) by user method
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Check your REGEX and &lt;CODE&gt;|eval timeStamp) ...&lt;/CODE&gt;result. &lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2020 11:37:45 GMT</pubDate>
    <dc:creator>to4kawa</dc:creator>
    <dc:date>2020-04-16T11:37:45Z</dc:date>
    <item>
      <title>timechart call Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472536#M132982</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I tried to made a timechart (call duration) , the value I onyl have is the Users and the methods and the call timestamp. I want see how long the call takes with the user again one method?&lt;/P&gt;

&lt;P&gt;thats my datas&lt;/P&gt;

&lt;P&gt;timestamp       user    method&lt;/P&gt;

&lt;P&gt;2020-04-15 07:18:28.978 WSABXXX  checkXXXX&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 07:22:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472536#M132982</guid>
      <dc:creator>area34</dc:creator>
      <dc:date>2020-04-15T07:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: timechart call Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472537#M132983</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=yours
| eval timestamp=strptime(timestamp,"%F %T.%3Q")
| stats range(timestamp) as duration by user method
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Apr 2020 14:12:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472537#M132983</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-04-15T14:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: timechart call Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472538#M132984</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;yeah now I want the the calls the field is empty...&lt;/P&gt;

&lt;P&gt;index=*&lt;/P&gt;

&lt;P&gt;| rex field=msg "(?\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}.\d{3}).&lt;EM&gt;- \w{5}.\w{5}.\w{7}.\w{10}.(?P.&lt;/EM&gt;)-  user=(?.*)- method=(?\w+)"&lt;BR /&gt;
| eval timeStamp=strptime(timestamp,"%F %T.%3Q")&lt;BR /&gt;
| stats range(timeStamp) as call by user action&lt;/P&gt;

&lt;P&gt;sourc&lt;BR /&gt;
|&lt;BR /&gt;
|&lt;BR /&gt;
V&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;user    method call
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;1   WSxxx   checkmethod &lt;BR /&gt;
2   WSyyy   getmethod&lt;BR /&gt;
3   WStztzz getOBmethod  &lt;/P&gt;

&lt;P&gt;what should I do if I want &lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 06:18:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472538#M132984</guid>
      <dc:creator>area34</dc:creator>
      <dc:date>2020-04-16T06:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: timechart call Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472539#M132985</link>
      <description>&lt;P&gt;my search&lt;BR /&gt;
| rex field=msg "(?\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}.\d{3}).&lt;EM&gt;- \w{5}.\w{5}.\w{7}.\w{10}.(?P.&lt;/EM&gt;)-  user=(?.*)- method=(?\w+)"&lt;BR /&gt;
| eval timeStamp=strptime(timestamp,"%F %T.%3Q")&lt;BR /&gt;
| stats range(timeStamp) as call by user method&lt;/P&gt;

&lt;P&gt;my result&lt;BR /&gt;
    user    method          call&lt;BR /&gt;
1   WSxxx   checkmethod &lt;BR /&gt;
2   WSyyy   getmethod&lt;BR /&gt;
3   WStztzz getOBmethod  &lt;/P&gt;

&lt;P&gt;Now in the the field call is empty I want that field should count how often the user called method&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 06:21:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472539#M132985</guid>
      <dc:creator>area34</dc:creator>
      <dc:date>2020-04-16T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: timechart call Time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472540#M132986</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval _raw="raw
2020-04-15 07:18:28.978 WSABXXX checkXXXX
2020-04-15 08:18:28.968 WSABXXX checkXXXX"
| multikv forceheader=1
| rex "(?&amp;lt;timestamp&amp;gt;\S+\s\S+).(?&amp;lt;user&amp;gt;\S+).(?&amp;lt;method&amp;gt;\S+)"
| eval timeStamp=strptime(timestamp,"%F %T.%3Q")
| stats range(timeStamp) by user method
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Check your REGEX and &lt;CODE&gt;|eval timeStamp) ...&lt;/CODE&gt;result. &lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 11:37:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timechart-call-Time/m-p/472540#M132986</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-04-16T11:37:45Z</dc:date>
    </item>
  </channel>
</rss>

