Dashboards & Visualizations

combining date fields into a single field for charting.

rhuss
Engager

Is it possible to somehow combine the date_year, date_month and date_mday fields into a single date field?

I need to do this for charting purposes.

Tags (1)
0 Karma
1 Solution

ziegfried
Influencer

Yes:

... | strcat date_year "-" date_month "-" date_mday date_str

or

... | eval datestr=date_year."-".date_month."-".date_mday

or

... | eval datestr=strftime(_time, "%Y-%m-%d")

I would suggest to use the last one, as it is possible that the date_* fields are missing from the event.

View solution in original post

justinhart
Path Finder

Try:

| eval full_date = date_year." ".date_month." ".date_mday

You can format that in whatever way you want, the area between " " is the seperator.

This was found under the eval command reference here.

ziegfried
Influencer

Yes:

... | strcat date_year "-" date_month "-" date_mday date_str

or

... | eval datestr=date_year."-".date_month."-".date_mday

or

... | eval datestr=strftime(_time, "%Y-%m-%d")

I would suggest to use the last one, as it is possible that the date_* fields are missing from the event.

Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...