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 ...

Rounding off the Splunk Dashboard Contest

What does a contest-winning Splunk dashboard look like? In this case, it isn't in a browser tab at all. It ...

A Four Part Event Series: AI + Observability: AI Agents, LLMs, Apps, & Infrastructure

AI + Observability: AI Agents, LLMs, Apps, & Infrastructure The rapid evolution of artificial intelligence ...