Splunk Search

How to see charts result real time

disha
Contributor

I am drawing a line chart of Memory usage. If User select time as last 15 min or anything..how I can refresh the page so that the line chart is keep adding the new coming values for new time..
My search here..


line
connect
Time Stamp
Avg(Memory Usage)(MB)
bottom


300px
true
....
How to autorefresh the chart for new timestamps..as data is coming in every 30 seconds.
Please suggest.
Thanks

Tags (1)
0 Karma
1 Solution

jonuwz
Influencer

The simplest way would be to refresh the whole page every so often by setting the refresh parameter in the advancedxml :

<view isVisible="true" refresh="60" template="dashboard.html">

Another alternative would be to configure the search in the chart to be realtime like this :

  <module name="HiddenSearch">
    <param name="search">* | timechart count</param>
    <param name="latest">rt</param>
    <param name="earliest">rt-60m</param>
    <module name="HiddenChartFormatter">
      <param name="charting.chart">line</param>
      <module name="JSChart"/>
    </module>
  </module>

Failing that, search for AutoRefresh in splunk-base for a custom module that will refresh modules on a page on a set interval

View solution in original post

jonuwz
Influencer

The simplest way would be to refresh the whole page every so often by setting the refresh parameter in the advancedxml :

<view isVisible="true" refresh="60" template="dashboard.html">

Another alternative would be to configure the search in the chart to be realtime like this :

  <module name="HiddenSearch">
    <param name="search">* | timechart count</param>
    <param name="latest">rt</param>
    <param name="earliest">rt-60m</param>
    <module name="HiddenChartFormatter">
      <param name="charting.chart">line</param>
      <module name="JSChart"/>
    </module>
  </module>

Failing that, search for AutoRefresh in splunk-base for a custom module that will refresh modules on a page on a set interval

disha
Contributor

Thankyou So much. AutoRefresh is the module..I was looking for. Thanks for guiding me in right direction.
Thanks

0 Karma
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...