Splunk Search

How do I get Timechart to start on a specific day of the week

mumblingsages
Path Finder

I have a collection of log data in an index and for the purposes of this discussion _time has the value I want. When I do:

index="my_index" | timechart count span=7d

The resultant visualization always seems to start on a Thursday. I would like it to start on a Sunday. Is there a way to do this?

Tags (1)
0 Karma
1 Solution

sbbadri
Motivator

try this ,

index="my_index" | eval Day1ofWeek = strftime(relative_time(_time,"@w0"),"%m/%d") | chart count by Day1ofWeek

View solution in original post

0 Karma

sbbadri
Motivator

try this ,

index="my_index" | eval Day1ofWeek = strftime(relative_time(_time,"@w0"),"%m/%d") | chart count by Day1ofWeek

0 Karma

mumblingsages
Path Finder

Sabbadri,
This definitely appears to work, but can you help understand why? More specifically where did you find the definition of @w0 in the relative_time function?

0 Karma

mumblingsages
Path Finder

Secondary question...

Is there anyway to force this value back into _time so one can use single value visualizations?

EDIT:
Nevermind.... I figured this part out!

0 Karma

somesoni2
Revered Legend

Do like this

index="my_index" | eval _time=relative_time(_time,"@w0") | chart count by _time
0 Karma

sbbadri
Motivator

please check below link,

http://docs.splunk.com/Documentation/Splunk/6.6.2/Search/Specifytimemodifiersinyoursearch

Topic: Examples of relative time modifiers

0 Karma

mumblingsages
Path Finder

Thanks much!!!

0 Karma

somesoni2
Revered Legend

Try | timechart span=1w count

0 Karma

mumblingsages
Path Finder

Somesoni2,
This yields the same result, unfortunately.

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...