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!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

 Ready to master Kubernetes and cloud monitoring like the pros? Join Splunk’s Growth Engineering team for an ...

Update Your SOAR Apps for Python 3.13: What Community Developers Need to Know

To Community SOAR App Developers - we're reaching out with an important update regarding Python 3.9's ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...