Splunk Search

How to display comma-delimited numbers in a timechart sum

wrangler2x
Motivator

I have this search

| tstats count AS myCount WHERE index=* by index, _time 
| where _time > relative_time(now(), "-1mon@mon") AND _time < relative_time(now(), "@mon") 
| timechart span=1mon sum(myCount) by index

which returns one column for each index, with the heading being the indexes name, and the content under that the sum of events for that index in the specified time-frame.

How can I get this sum to display with commas? (like 158,313,959 instead of 158313959.)

0 Karma
1 Solution

rjthibod
Champion

To answer your question, use the following

| timechart span=1mon eval(tostring(sum(myCount), "commas")) by index

Another recommendation, remove your second line and put the time bounds in the first part of the query

| tstats count AS myCount WHERE index=* earliest=-1mon@mon latest=@mon by index, _time
| timechart span=1mon eval(tostring(sum(myCount), "commas")) by index

View solution in original post

somesoni2
Revered Legend

Just add following foreach command to your search

...your current search.. | foreach * [eval "<<FIELD>>"=tostring('<<FIELD>>',"commas") ]

rjthibod
Champion

To answer your question, use the following

| timechart span=1mon eval(tostring(sum(myCount), "commas")) by index

Another recommendation, remove your second line and put the time bounds in the first part of the query

| tstats count AS myCount WHERE index=* earliest=-1mon@mon latest=@mon by index, _time
| timechart span=1mon eval(tostring(sum(myCount), "commas")) by index

wrangler2x
Motivator

Adding the eval to the timechart was something I had already tried. Does not work.

0 Karma

wrangler2x
Motivator

Okay, I tried this again because of your comment and it does work. Last time I tried it I got no results found. I'm thinking I must have had the time picker on some weird setting. So I'm using this now, including the recommendation. Thanks.

0 Karma

rjthibod
Champion

Thank you for reconsidering.

0 Karma

rjthibod
Champion

I am confused because I get the result you requested if I copy and paste the query I posted. In general, one should avoid foreach as much as possible.

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...