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!

Rethinking Zero Trust: From Product Purchases to Logical Control Evidence

Implementing Zero Trust (ZT) across complex environments often falters at the very beginning due to a ...

Preparing your Splunk Environment for OpenSSL3

The Splunk platform will transition to OpenSSL version 3 in a future release. Actions are required to prepare ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...