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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...