Splunk Search

Add AVG to Chart Results

jessicadrechsel
New Member

Hello everyone.

I want to make a statistic of tickets. How many are opend everyday by CI Name. And I wnat to add an AVG of Tickets opened over all days.

CI Name2021-01-202021-01-202021-01-20AVG
Test 15112,3
Test 23333
     

 

Thats my current search:

 

index=prod_test 
| dedup dv_number 
| eval openday=strftime(strptime(opened_at, "%Y-%m-%d %H:%M:%S"), "%Y-%m-%d")  
| chart count(dv_number) as anzahl by dv_cmdb_ci openday
| sort anzahl desc

 

Labels (1)
0 Karma

tscroggins
Champion

@jessicadrechsel 

Here's one possibility using timechart, appendpipe, and transpose:

index=prod_test
| timechart limit=0 span=1d useother=f count by dv_number
| eval _time=strftime(_time, "%F")
| appendpipe [ | stats avg(*) as * | eval _time="AVG" ]
| transpose 0 column_name="dv_number" header_field="_time"

0 Karma
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!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...