Splunk Enterprise

Custom Search

vishwa
Path Finder

Query:

|tstats count where index=xxx host=host1   sourcetype=newsourcetype by PREFIX(type:) _time
|rename type: as Types
|timechart span=1d values(count) by Types
|eval Total=Model1 +Model2+ Model3+ Model4
|fillnull value=0


OUTPUT:

_timeModel1Model2Model3Model4Total
2021-04-1220140
2021-04-1304000
2021-04-148210424
2021-04-1530280
2021-04-1614229

 

EXPECTED OUTPUT:

_timeModel1Model2Model3Model4Total
2021-04-1220147
2021-04-1304004
2021-04-148210424
2021-04-15302813
2021-04-1614229
Labels (1)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

@vishwa I suspect your fields are not actually coming out as Model1 etc, i.e. the may have some strange characters in there. You can either try to figure out what the Types field values are before you do the timechart by doing something like

|tstats count where index=xxx host=host1   sourcetype=newsourcetype by PREFIX(type:) _time
|rename type: as Types
| head 10
| eval types=":".Types.":", len=len(Types)
| table Types types len

to see if there are any odd characters or the len does not come out as 8.

The simples thing to do though is to not care about the names and just add 'addtotals', i.e.

|tstats count where index=xxx host=host1   sourcetype=newsourcetype by PREFIX(type:) _time
| rename type: as Types
| timechart span=1d values(count) by Types
| addtotals

which will add up all the numeric fields and create a new field called Total

vishwa
Path Finder

Hi @bowesmana , Thank you!!!! this query worked

|tstats count where index=xxx host=host1   sourcetype=newsourcetype by PREFIX(type:) _time
| rename type: as Types
| timechart span=1d values(count) by Types
| addtotals

 

0 Karma

bowesmana
SplunkTrust
SplunkTrust

@vishwa re:mvstats - did you know that Splunk natively supports min/max/avg/sum on mvfields.

0 Karma
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...