Dashboards & Visualizations

how to show a table with fields values from multiple different sourcetypes having different fields

maniishpawar
Path Finder

Hi,

I have perfmon counter data which has two fields "value" & "countername"
and then I have IIS log data which gives me time_taken.

How can I calculate avg of all perfmon counters respectively and also avg time_taken and show all this in a single table which looks like

avg(value) MeasureName

18.0% Memory
592 TimeTaken

Tags (1)
0 Karma

somesoni2
Revered Legend

Try like this

(your base search for perfmon counter data) OR (your base search for IIS log data)
| eval MeasureName=coalesce(countername,"TimeTaken")
| eval value=coalesce(value,time_taken)
| stats avg(value) as Avg_Value by MeasureName

maniishpawar
Path Finder

Thank you so much

0 Karma

somesoni2
Revered Legend

Can you post your current search to calculate both separately?

0 Karma

DalJeanis
Legend
your perfmon search for counter data  
| stats avg(value) as avgvalue by countername 
| rename COMMENT as "The above gets your counters."

| rename COMMENT as "The below adds your time taken."
| append 
    [ your IIS search for events with time_taken 
    | stats avg(time_taken) as avgvalue 
    | eval countername="TimeTaken"]

| rename COMMENT as "And now we rename to match your headings."
| table avgvalue countername
| rename countername as MeasureName 
| rename avgvalue as "avg(value)" 

maniishpawar
Path Finder

out of curiosity is there any other way apart from using append.
Also if we use append, is it an expensive search

0 Karma

DalJeanis
Legend

In this case, the append isn't appreciably worse than the basic search, but somesoni2's answer is slightly more efficient and better general practice.

If you CAN write it without append, then you probably SHOULD.

0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...