All Apps and Add-ons

How to build max and sum in two timecharts per day

tgdvopab
Path Finder

Hello

I want to use two timecharts:
1st to build the max value per day, Database
2nd to build to sum of the first values from the timechart per day

The code looks like the following:

index=msexchange eventtype=msexchange-database-stats | timechart span=1d max(FileSize) as maxDBSizeperday by Database | timechart span=1d sum(maxDBSizeperday)

This doesn't work.
Could anyone help me?

0 Karma
1 Solution

jkat54
SplunkTrust
SplunkTrust

See if this works:

index=msexchange eventtype=msexchange-database-stats 
| bin span=1d
| stats max(FileSize) as maxDBSizeperday by Database , _time
| stats values(maxDBSizeperday) sum(maxDBSizeperday) by Database, _time

It should produce a statistics table that you can then take to the visualization tab and it will look just like a timechart if you select a line chart etc.

View solution in original post

sundareshr
Legend

Try this

index=msexchange eventtype=msexchange-database-stats | timechart span=1d max(FileSize) as maxDBSizeperday by Database | addtotals | table _time Total
0 Karma

jkat54
SplunkTrust
SplunkTrust

See if this works:

index=msexchange eventtype=msexchange-database-stats 
| bin span=1d
| stats max(FileSize) as maxDBSizeperday by Database , _time
| stats values(maxDBSizeperday) sum(maxDBSizeperday) by Database, _time

It should produce a statistics table that you can then take to the visualization tab and it will look just like a timechart if you select a line chart etc.

Get Updates on the Splunk Community!

Get ready to show some Splunk Certification swagger at .conf24!

Dive into the deep end of data by earning a Splunk Certification at .conf24. We're enticing you again this ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Now On-Demand Join us to learn more about how you can leverage Service Level Objectives (SLOs) and the new ...

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...