<?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: How to change the _time text in the table? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275835#M83217</link>
    <description>&lt;P&gt;Just add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fieldformat _time = "week " . strftime(_time, "%U")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 30 May 2016 18:35:51 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2016-05-30T18:35:51Z</dc:date>
    <item>
      <title>How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275834#M83216</link>
      <description>&lt;P&gt;How to change the _time text in the table?&lt;/P&gt;

&lt;P&gt;How to change in _time of  "2016-04-01" to "first week", for example.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/1426iC4BA98C50E4CC749/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2016 18:05:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275834#M83216</guid>
      <dc:creator>renanprado96</dc:creator>
      <dc:date>2016-05-30T18:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275835#M83217</link>
      <description>&lt;P&gt;Just add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fieldformat _time = "week " . strftime(_time, "%U")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 May 2016 18:35:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275835#M83217</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-05-30T18:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275836#M83218</link>
      <description>&lt;P&gt;Its Possible to change the week number for the month?&lt;BR /&gt;
Of 1-5?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Days 1-7 - week 1
Days 8-14 - week 2
Days 15-21 - week 3
Days 22-28 - week 4 
Days 29-31 - week 5
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 May 2016 19:13:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275836#M83218</guid>
      <dc:creator>renanprado96</dc:creator>
      <dc:date>2016-05-30T19:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275837#M83219</link>
      <description>&lt;P&gt;&lt;A href="http://apidock.com/ruby/DateTime/strftime"&gt;strftime&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;doesn't have such an option, only the week of the year...&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2016 20:37:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275837#M83219</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2016-05-30T20:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275838#M83220</link>
      <description>&lt;P&gt;Like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fieldformat _time = case((tonumber(strftime(_time, "%d")) &amp;lt;= 7),  "1",
                           (tonumber(strftime(_time, "%d")) &amp;lt;= 14), "2",
                           (tonumber(strftime(_time, "%d")) &amp;lt;= 21), "3",
                           (tonumber(strftime(_time, "%d")) &amp;lt;= 28), "4",
                                                            true(), "5")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 May 2016 12:09:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275838#M83220</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2016-05-31T12:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the _time text in the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275839#M83221</link>
      <description>&lt;P&gt;Thank you!!!&lt;BR /&gt;
Have a good day..&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 13:56:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-the-time-text-in-the-table/m-p/275839#M83221</guid>
      <dc:creator>renanprado96</dc:creator>
      <dc:date>2016-05-31T13:56:55Z</dc:date>
    </item>
  </channel>
</rss>

