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!

Get ready to show some Splunk Certification swagger at .conf24!

Dive into the deep end of data by earning a Splunk Certification at .conf24. We're enticing you again this ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Now On-Demand Join us to learn more about how you can leverage Service Level Objectives (SLOs) and the new ...

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...