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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...