Created
May 21, 2025 06:51
-
-
Save rezamt/3b8ce5a81ce99548351d0131ccc9962b to your computer and use it in GitHub Desktop.
splunk-report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index=your_index_name sourcetype="your_sourcetype" IsInteractive=true | |
| eval week=strftime(_time, "%U"), day=strftime(_time, "%Y-%m-%d") | |
| eval Result=if(ResultType="0", "Success", "Failure") | |
| eval weekLabel=case(relative_time(now(), "@w0") <= _time, "This Week", relative_time(now(), "-1w@w0") <= _time AND _time < relative_time(now(), "@w0"), "Last Week", "Other") | |
| search weekLabel="This Week" OR weekLabel="Last Week" | |
| stats count by day, weekLabel, Result | |
| eval Label=case(Result="Success" AND weekLabel="This Week", "Current Success", | |
Result="Failure" AND weekLabel="This Week", "Current Failure", | |
Result="Success" AND weekLabel="Last Week", "Success Trend (Last Week)", | |
Result="Failure" AND weekLabel="Last Week", "Failure Trend (Last Week)") | |
| timechart span=1d sum(count) as count by Label |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment