Dashboards & Visualizations

Not able to get Date in proper format when put in Visualization

aditsss
Motivator

Hi Everyone,

I am using below query:

index=abc ns=uio app_nameapi "ARC EVENT RECEIVED FROM SOURCE"| rex "RID:(?<RID>(\w+-){4}\w+)-(?<sourceagent>\w+-\w+)"|timechart count(RID) as "RID" by sourceagent

when I put it in line chart I am getting dates like this:

Tue March 2

Wed March 3

I want it all in proper date format.

In statics its coming in date format but when I put in line chart . Not getting proper dates.

Can someone guide me on this.

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

It is not clear what you consider to be a proper time format.

_time is automatically formatted so you could rename it and specify the format you want

index=abc ns=uio app_nameapi "ARC EVENT RECEIVED FROM SOURCE"| rex "RID:(?<RID>(\w+-){4}\w+)-(?<sourceagent>\w+-\w+)"|timechart count(RID) as "RID" by sourceagent
| rename _time as time
| fieldformat time=strftime(time,"%Y/%m/%d")

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

It is not clear what you consider to be a proper time format.

_time is automatically formatted so you could rename it and specify the format you want

index=abc ns=uio app_nameapi "ARC EVENT RECEIVED FROM SOURCE"| rex "RID:(?<RID>(\w+-){4}\w+)-(?<sourceagent>\w+-\w+)"|timechart count(RID) as "RID" by sourceagent
| rename _time as time
| fieldformat time=strftime(time,"%Y/%m/%d")

 

Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...