Splunk Search

Can you help me chart a statistics table on a month by month basis?

x213217
Explorer

Hello,

I have a search that generates a statistics table based on the timerange I select.

How can I select, lets say, a timerange of 1 year and have the statistics generated and displayed over each month? I want to avoid manually having to change the time range to select each month, view statistics, etc...

This is my search

index=autosys source=
| where status="SUCCESS"
| eval startTimeEpoch = strptime(startTime, "%Y-%m-%d %H:%M:%S")
| eval startTimeHour = strftime(startTimeEpoch, "%H") 
| eval endTimeEpoch = strptime(endTime, "%Y-%m-%d %H:%M:%S")
| eval endTimeHour = strftime(endTimeEpoch, "%H") 
| eventstats count(startTimeHour) AS startHourCount by startTimeHour
| eventstats count(endTimeHour) As endHourCount by endTimeHour
| eventstats count(jobName) As RunCount by jobName
| eval startHourPercent = ((startHourCount / RunCount) * 100)
| eval endHourPercent = ((endHourCount / RunCount) * 100)
| eval roundedStartHourPercent =round(startHourPercent)
| eval roundedEndHourPercent =round(endHourPercent)
| dedup startTimeHour endTimeHour
| sort -roundedStartHourPercent
| sort -roundedEndHourPercent
| table jobName startTimeHour endTimeHour 

alt text

Tags (2)
0 Karma

somesoni2
Revered Legend

YOu don't show any of the calculated fields in the final output, do you really need to do those calculations? What type of reporting you're trying to do?

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...