Splunk Search

How to make table from two queries with common field

edrivera3
Builder

Hi

I have one index with two sources (source=source1 and source2). Both events have two common fields (common_field1 and common_field2).

The events with source_1 have three fields (source1_field1, common_field1, common_field2).

The events with source_2 have three fields (source2_field1, common_field1, common_field2).

I tried the following without success:

(source=source1 OR source=source2) | table common_field1, common_field2, source1_field1, source2_field1

There are more events in source1 than in source2. The table should have one row per source1 event. Source2's events will be used based on the common fields. There will be many instances where the same source2 event is used.

Labels (1)
0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

can you give some sample data as this is working.

index=_internal source IN (*metrics.log,*splunkd.log) app_name="cloudgateway_metrics.app" OR component=Metrics
| stats values(app_name) as app_name values(component) as component by host index
| table host index app_name component

r. Ismo

0 Karma

edrivera3
Builder

I ended up re-indexing those events but with with the additional fields included. It was not that bad because those events were from a mysql db connection. I did tried the Join command but it was very slow for the amount of data I was  pulling.

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

could you try the next:

index=<your index> (source=source1 OR source=source2) 
| stats values(source*) as source* by common_field1 common_field2
| table common_field1, common_field2, source1_field1, source2_field1

r. Ismo

0 Karma

edrivera3
Builder

@isoutamoIt didn't work. It produced a table with only the common fields. The other two fields were empty.

0 Karma
Get Updates on the Splunk Community!

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...

Splunk Observability Cloud's AI Assistant in Action Series: Explaining Metrics and ...

This is the fourth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how ...

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...