All Apps and Add-ons

Why is my search showing 0's?

Bbyers3
New Member

So I am running a Query using DBConnect. "date_provisioned" is the column that has the time stamp. It is in the format below. I am having issues that when I remove the "timechart span=7d count by platform" section it shows 183 events. I want to count those events based on the time. I feel like I am doing something wrong with the eval _time section.

Please help!

Format:
2018-01-02 00:00:00.0

QUERY:

| dbxquery query="SELECT * FROM \"ESS\".\"dbo\".\"CST_itportal_provisioning\" where Year = Year(GETDATE())" connection="ESS_DB" |eval _time = date_provisioned | timechart span=7d count By platform

alt text

0 Karma
1 Solution

cmerriman
Super Champion

you need to format your date_provisioned to be in epoch for _time to work in timechart. try this

| dbxquery query="SELECT * FROM \"ESS\".\"dbo\".\"CST_itportal_provisioning\" where Year = Year(GETDATE())" connection="ESS_DB" |eval _time = strptime(date_provisioned,"%Y-%m-%d %H:%M:%S.%1N") | timechart span=7d count By platform

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Commontimeformatvariables
https://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Usedefaultfields#Internal_fields

View solution in original post

Bbyers3
New Member

Thank you!

I tried that before as well, but I see where I messed up. I had (date_provisioned,"%Y-%m-%d %H:%M:%S.%1N") but I missed the colons 😞 thanks so much for the help. It is working exactly as I want it too.

0 Karma

cmerriman
Super Champion

you need to format your date_provisioned to be in epoch for _time to work in timechart. try this

| dbxquery query="SELECT * FROM \"ESS\".\"dbo\".\"CST_itportal_provisioning\" where Year = Year(GETDATE())" connection="ESS_DB" |eval _time = strptime(date_provisioned,"%Y-%m-%d %H:%M:%S.%1N") | timechart span=7d count By platform

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Commontimeformatvariables
https://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Usedefaultfields#Internal_fields

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 ...