Splunk Search

Change _Time to another field on a Single Query

erog
Engager

Hello,

I need to find a way to use another field for _Time on a single query (I don't want to change props just for 1 query)

Sample Time: 

 

2021-06-19T04:15:59.845Z

 

 

I've tried several strptime I've seen in other questions but to no avail. I did get one to format previously for a table format using the following

 

 

| eval SeenTimeStringConverted=strftime(strptime(Time,"%Y-%m-%dT%H:%M:%S.%6N"),"%m/%d/%Y %H:%M:%S %p")

 

 

Here's my query I've been working on.

 

 

sourcetype="aws:cloudwatchlogs:securityhub" "CIS" "detail.findings{}.Compliance.Status"!=NULL | rename "detail.findings{}.FirstObservedAt" as Time | eval _time=strptime(Time,"%Y-%m-%dT%H:%M:%S.%6N") | timechart count by "detail.findings{}.Compliance.Status"

 

 

 

 

Labels (1)
0 Karma
1 Solution

PickleRick
SplunkTrust
SplunkTrust
| makeresults 
| eval Time="2021-06-19T04:15:59.845Z" 
| eval _time=strptime(Time,"%Y-%m-%dT%H:%M:%S.%N%Z")

View solution in original post

PickleRick
SplunkTrust
SplunkTrust
| makeresults 
| eval Time="2021-06-19T04:15:59.845Z" 
| eval _time=strptime(Time,"%Y-%m-%dT%H:%M:%S.%N%Z")
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...