Splunk Search

Time chart - Multiple specific field values possible?

srw46
Path Finder

Hello all,

I'm trying to create a report that compares the number of transactions (from the same system) between different hosts within that system. So far I can use the timechart, count and eval commands/functions to display for one host but I've been unable to do it for multiple host.

Here is what I'm currently using:

(host="host1" OR host="host2" OR host="host3" OR host="host4" OR host="host5" OR host="host6" AND system_id="system") | timechart count | eval host="host1"

I've tried using additional eval, timechart and count commands but it just seems to resolve the 'latest' one and only that one. Any suggestions please?

As an additional question, when I create the report from the search results instead of plotting the host as 'host1' it is just listing it as 'count'. I'm sure this is straightforward to a lot of you, but how can I change this? I am very new to this 🙂

Many thanks in advance

Tags (3)
0 Karma
1 Solution

Ayn
Legend

If I understand you correctly, you want to make timechart break up the count by host? In that case, that's easy. timechart supports it using the "by" parameter:

(host="host1" OR host="host2" OR host="host3" OR host="host4" OR host="host5" OR host="host6" AND system_id="system") | timechart count by host

As a bonus you will also solve your second problem - instead of "count" Splunk will display the value of the "host" field when charting for multiple values. That said, if you're still curious how to change the title from "count" to something else, use "as":

timechart count AS yourtitle by host

As for setting it dynamically to some field value when just charting for a single field, I'm unaware of a way to do that.

View solution in original post

Ayn
Legend

If I understand you correctly, you want to make timechart break up the count by host? In that case, that's easy. timechart supports it using the "by" parameter:

(host="host1" OR host="host2" OR host="host3" OR host="host4" OR host="host5" OR host="host6" AND system_id="system") | timechart count by host

As a bonus you will also solve your second problem - instead of "count" Splunk will display the value of the "host" field when charting for multiple values. That said, if you're still curious how to change the title from "count" to something else, use "as":

timechart count AS yourtitle by host

As for setting it dynamically to some field value when just charting for a single field, I'm unaware of a way to do that.

srw46
Path Finder

Thank you Ayn. This is what I wanted. Embarassingly straightforward it seems 🙂

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...