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!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...