Dashboards & Visualizations

Sum last count over servers and time chart

n0cturne
Loves-to-Learn

Hello,

I have 5 Servers. Every server has an actual count of user sessions. I want them to sum up, without loosing the trend funcion in the single value chart. 

This is my actual query:

 

 

index=ascrm sourcetype=jmx NumUiSessions=* host IN (z1il0095*,z1il0096*,z1il0097*,z1il0098*)
| stats latest(NumUiSessions) as latest_NumUiSessions by host
| stats sum(latest_NumUiSessions) AS UISessions

 

 

 Could anyone give me a clou?

Best regards

Benjamin

Labels (2)
0 Karma

n0cturne
Loves-to-Learn

I want to trend against the value x hours ago. I have a time picker with token. This time token shoul be used to define x.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Something like this?

index=ascrm sourcetype=jmx NumUiSessions=* host IN (z1il0095*,z1il0096*,z1il0097*,z1il0098*)
| bin _time span=1h
| stats latest(NumUiSessions) as latest_NumUiSessions by host _time
| streamstats sum(latest_NumUiSessions) AS UISessions by _time
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

What are you trending against, because you currently only have one value remaining?

0 Karma
Get Updates on the Splunk Community!

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...

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 ...