Create a new field using eval and list it along with the other fields you care about in a table
|notablegeneratingsearch
|eval pci_id="10.1"
|table pci_id,alltheotherfieldsyoucareabout
Alternatively could use the tag field.
... View more
Give this a try (assuming your logged in time is identified your _time of the event)
Your search which contain two fields user id and time
| timechart span=1h dc(userId) as "Total Users"
| eval Time=strftime(_time,"%H:%M")."--".strftime(_time+3600,"%H:%M")
| table Time "Total Users"
... View more
Hi
I do a check for THP and to me it's off. Why do you think it is on?
I check all the process and it returns nothing.
grep -e AnonHugePages /proc/*/smaps | awk '{ if($2>4) print $0} ' | awk -F "/" '{print $0; system("ps -fp " $3)} ' | grep splunk
... View more