Splunk Search

How to make the time readable in stats latest(_time)?

yshen
Communicator

By the following query, I can list the hosts status and when they have their status change:

 

index=snmptrapd 
| table _time Agent_Hostname alertStatus_1

 

with this query the _time values are readable as for example, 

2020-08-19 21:07:50

However, when I only want to find the latest time when a host has a certain status, by the following query,

 

index=snmptrapd 
| stats latest(_time) by Agent_Hostname alertStatus_1

 

then 

Agent_Hostname alertStatus_1 latest(_time)

l18-tempmoncritical1597896470
l20-tempmoncritical1597901380
l20-tempmonnormal1597891753

 

How can I make the field for latest(_time) still readable as before?

Labels (1)
Tags (2)
0 Karma
1 Solution

isoutamo
SplunkTrust
SplunkTrust

Hi

_time is some kind of special that it shows it's value "correctly" without any helps. On all other time fields which has value as unix epoch you must convert those to human readable form. One way to do it is 

index=snmptrapd 
| stats latest(_time)as latestTime by Agent_Hostname alertStatus_1
| eval latestTime = strftime(latestTime, "%F %T")

You could found more about working with time fields

r. Ismo

View solution in original post

altink
Builder

can anyone advise on this ?

regards
Altin

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

_time is some kind of special that it shows it's value "correctly" without any helps. On all other time fields which has value as unix epoch you must convert those to human readable form. One way to do it is 

index=snmptrapd 
| stats latest(_time)as latestTime by Agent_Hostname alertStatus_1
| eval latestTime = strftime(latestTime, "%F %T")

You could found more about working with time fields

r. Ismo

altink
Builder

Hi

I think I am doing the same thing, but it does not work for me

 

https://community.splunk.com/t5/Dashboards-Visualizations/strftime-empties-stats-ed-field/m-p/530449...

best
Altin

0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...