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
Revered Legend

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
Revered Legend

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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...