Dashboards & Visualizations

Drilldown with other timestamp not working

splunk_hvijay
Explorer

My drilldown with timestamp is not working.

Date Value
2017-09-01 1
2017-09-02 2
2017-09-03 4

I need to drilldown the date and pass earliest=date and latest=earliest+86400..(passing 24 hours).

below is the code i'm using,

<eval token="e">'row.Date' + 1800</eval>
<link target="_blank">
              <![CDATA[/app/myapp?&form.timetoken1.earliest=$click.value$&form.timetoken1.latest=$e$
                ]]>
            </link>
0 Karma
1 Solution

niketn
Legend

You seem to be picking Date value from Table. Since it is human readable string date, you need to convert to epoch time using strptime() first. Try the following code which uses eval to convert/calculates earliest and latest time as epoch time and passes to the drilldown URL:

    <drilldown>
      <condition field="Date">
        <eval token="tokEarliest">strptime($row.Date$,"%Y-%m-%d")</eval>
        <eval token="tokLatest">strptime($row.Date$,"%Y-%m-%d")+86400</eval>
        <link target="_blank">/app/<YourAppName>/<YourFormName>?form.timetoken1.earliest=$tokEarliest$&amp;form.timetoken1.latest=$tokLatest$</link>            
      </condition>  
    </drilldown>

PS: Add your app name and dashboard name in the link above.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

niketn
Legend

You seem to be picking Date value from Table. Since it is human readable string date, you need to convert to epoch time using strptime() first. Try the following code which uses eval to convert/calculates earliest and latest time as epoch time and passes to the drilldown URL:

    <drilldown>
      <condition field="Date">
        <eval token="tokEarliest">strptime($row.Date$,"%Y-%m-%d")</eval>
        <eval token="tokLatest">strptime($row.Date$,"%Y-%m-%d")+86400</eval>
        <link target="_blank">/app/<YourAppName>/<YourFormName>?form.timetoken1.earliest=$tokEarliest$&amp;form.timetoken1.latest=$tokLatest$</link>            
      </condition>  
    </drilldown>

PS: Add your app name and dashboard name in the link above.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

splunk_hvijay
Explorer

thanks a ton !!.. It worked.

0 Karma
Get Updates on the Splunk Community!

User Groups | Upcoming Events!

If by chance you weren't already aware, the Splunk Community is host to numerous User Groups, organized ...

Splunk Lantern | Spotlight on Security: Adoption Motions, War Stories, and More

Splunk Lantern is a customer success center that provides advice from Splunk experts on valuable data ...

Splunk Cloud | Empowering Splunk Administrators with Admin Config Service (ACS)

Greetings, Splunk Cloud Admins and Splunk enthusiasts! The Admin Configuration Service (ACS) team is excited ...