Splunk Search

Why is entry time not displaying?

Italy1358
Path Finder

When a user is added i need the time to be recorded and displayed in a field called used_added. I created the field name and can see if in the csv table but there is no time per entry.

<query>
| inputlookup USB.csv
| eval user_added = strftime(_time, "%Y-%d-%m %H:%M:%S")
| append [ | makeresults
| eval user="$user_tok$", description="$description_tok$", revisit="$revisit_tok$", Action="$dropdown_tok$" ]
| fields - _time
| table user_added, user_added, user, category, department, description, revisit, status
| lookup lookup_ims user as user OUTPUT category department
| outputlookup USB.csv
</query>
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The user_added field is in a separate event from the other fields because of the append command.  What's more, I believe the _time field will be null since there is no event with such a field when user_added is defined.  Consider using now(), instead.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The user_added field is in a separate event from the other fields because of the append command.  What's more, I believe the _time field will be null since there is no event with such a field when user_added is defined.  Consider using now(), instead.

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

AI for AppInspect

We’re excited to announce two new updates to AppInspect designed to save you time and make the app approval ...

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...