Deployment Architecture

How to combine a Splunk search and |dbquery into one chart?

mbuschle
Explorer

I need some help to get data from a search and the |dbquery command. Basically I would like to create a multi-series chart that shows data that must be pulled from a search and from the |dbquery command. It's a count of unique users for two different systems (one that's on the way out and one on the way in). The data for the old system is available to be pulled from Splunk data via a search. The new data is in a database. So ultimately I'd like to have a search that would look like this:

sourcetype=OldDataLogins |dbquery "newdata" "select UniqueUsers from table" | ...

I'd then run it through stats or timechart to allow me to put the two series into one chart. The problem is I'm not sure that there is a way to combine a search and dbquery. Any help would be appreciated.

1 Solution

somesoni2
SplunkTrust
SplunkTrust

You can use append to combine two result sets. Have the query with smaller result set to be used in subsearch

sourcetype=OldDateLogins | append [|dbquery "newdata" "select UniqueUsers from table"] | ...your aggregation command...

View solution in original post

somesoni2
SplunkTrust
SplunkTrust

You can use append to combine two result sets. Have the query with smaller result set to be used in subsearch

sourcetype=OldDateLogins | append [|dbquery "newdata" "select UniqueUsers from table"] | ...your aggregation command...
Get Updates on the Splunk Community!

Observability | How to Think About Instrumentation Overhead (White Paper)

Novice observability practitioners are often overly obsessed with performance. They might approach ...

Cloud Platform | Get Resiliency in the Cloud Event (Register Now!)

IDC Report: Enterprises Gain Higher Efficiency and Resiliency With Migration to Cloud  Today many enterprises ...

The Great Resilience Quest: 10th Leaderboard Update

The tenth leaderboard update (11.23-12.05) for The Great Resilience Quest is out >> As our brave ...