Splunk Search

How do I add time stamp or label onto my timechart to mark a specific time/event?

sharonmok
Path Finder

Hi! I've got a very simple timechart query that pulls up number of user sessions per day. What I want to do is to add a label or a line that marks when a major event occurred so I can see how the user sessions have changed after it. How do I go about adding these labels?

Query being used:
| timechart span=1day@day dc(session_id) values(session_id)

niketn
Legend

@sharonmok, if you are on Splunk 7+ you can take advantage of Event Annotations

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

sharonmok
Path Finder

Unfortunately, I'm on 6.6.4

0 Karma

DalJeanis
Legend

One simple way to do this is just to add another field to cause a "blip" at the date/time that you want. This could be done either by ...

| timechart span=1day@day dc(session_id) values(session_id)
| eval blip=case(_time=the time of the event, 1000)

... or by ...

| append [|makeresults | eval _time=the time of the event, blip=1000 | table _time blip]
| timechart span=1day@day dc(session_id) values(session_id) max(blip) 

sharonmok
Path Finder

Thanks for your reply. I tried both of these and unfortunately, a blip doesn't get created. It's just the same chart.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...