Splunk Search

How to format timechart table data?

ewanbrown
Path Finder

I have a query similar to

index=beacon BeaconType=pageview | timechart span="1d" count by Country

giving

        US     CA      FR

01 Jan 123 456 678

02 Jan 456 234 765

But I'd like it formatted like

Date Country Number

01 Jan US 123

01 Jan CA 456

01 Jan FR 678

02 Jan US 456

02 Jan CA 234

etc

Is this possible? (excuse the bad formatting!)

Thanks

Tags (2)
0 Karma
1 Solution

norbert_hamel
Communicator

you could try something like:

index=beacon BeaconType=pageview | bucket _time span=1d | stats count by _time Country | rename count AS Number

This will split the results into timely buckets of 1day and then count the number split by Country.

View solution in original post

norbert_hamel
Communicator

you could try something like:

index=beacon BeaconType=pageview | bucket _time span=1d | stats count by _time Country | rename count AS Number

This will split the results into timely buckets of 1day and then count the number split by Country.

ewanbrown
Path Finder

Perfect, thanks a lot!

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...

Global Splunk User Group Events: May + June 2026

Your Splunk Community Awaits: Discover Upcoming User Group Events Worldwide    Staying ahead in the fast-paced ...