Splunk Search

How to create a chart overlay from 2 stats searches with no time series data?

mjones414
Contributor
sourcetype=pbs:rg OR (sourcetype=pbs:status state!=free AND state!=job-* tag=sasl0002)

| foreach resources_available_* [eval temp="<>" | rex field=temp "\_n(?\d+)\_" | eval <> = '<>'/n ] | stats values(resources_available_jg*) as resources_available_jg* | rename resources_available_jg_* as * 

This gives me something like this:
alt text

Now I want to append a search like this:

sourcetype=pbs:status state!=free AND state!=job-* | dedup Mom state| table resources_available_vnode resource_group comment | stats count by resource_group

which gives me something like this:
alt text

so that the fields from the first search are a column chart and the fields from the second search are a line graph overlaying the column chart.
Something like this:

alt text

Is it possible given one is a series of single fields and values, and one is a number of multiple values in a field?

maciep
Champion

Not sure if this is in the ballpark, but I was able to put together this simple example in my test environment. The count is used with the column chart. And the min is used as the chart overlay (see the link below). If you maybe transpose your first search and then join with the second, it might be in the right format? Not really knowing your data, there could be a faster way to get there.

http://docs.splunk.com/Documentation/Splunk/6.1.4/Viz/Chartcontrols#Chart_overlay

index=_internal component!=metrics | eval size=len(_raw) | stats min(size) as size count by component | sort - count | head 5 | sort component

alt text

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...