Splunk Search

SOLVED - How to combine related fields

bleung93
Path Finder

I have this search to display sourcetypes by index.

| metasearch index=* sourcetype=* | stats values(sourcetype) as Sourcetypes by index 

I have this search to show roles with indexes.

| rest /services/authorization/roles/ | rex field=id "https://127.0.0.1/services/authorization/roles/(?<Role>.*)" | table Role srchIndexesAllowed

How would I bring these two together so that the fields tabled are, index, Sourcetypes, and Roles?

Tags (3)
0 Karma
1 Solution

bleung93
Path Finder
| metasearch index=* sourcetype=* | stats values(sourcetype) as Sourcetypes by index | join index [| rest /services/authorization/roles/ | rex field=id "https://127.0.0.1/services/authorization/roles/(?<Role>.*)" | stats values(Role) by srchIndexesAllowed | rename srchIndexesAllowed as index]

View solution in original post

bleung93
Path Finder
| metasearch index=* sourcetype=* | stats values(sourcetype) as Sourcetypes by index | join index [| rest /services/authorization/roles/ | rex field=id "https://127.0.0.1/services/authorization/roles/(?<Role>.*)" | stats values(Role) by srchIndexesAllowed | rename srchIndexesAllowed as index]

isoutamo
SplunkTrust
SplunkTrust
0 Karma
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 ...