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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...