Splunk Search

How do I get a time curve with field values?

WXY
Path Finder

Hello.

Now, I must get a time curve using a field value .

My data has these fields:_time,CreateDate

There is a data : 2018-09-18 20:30:04 , CreateDate="2018-09-18 01:04:19.95", EndDate="2018-09-18 09:16:47.813"

"2018-09-18 20:30:04 " is _time,

"2018-09-18 01:04:19.95" is CreateDate,

I want to get a time curve using the CreateDate field.

What should I do ?

Tags (3)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi WXY,
if you want to span events every hour, try something like this:

your_search
| eval CreateDate=strptime(CreateDate,"%Y-%m-%d %H:%M:%S.%N")
| bin span=1h CreateDate
| stats count BY CreateDate
| eval CreateDate=strftime(CreateDate,"%Y-%m-%d %H:%M:%S.%N")

Bye.
Giuseppe

0 Karma

renjith_nair
Legend

@WXY,

Try

"your search" |eval _time=strptime(CreateDate,"%Y-%m-%d %H:%M:%S.%N") |timechart "field you want to chart"
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...