Dashboards & Visualizations

Module Title

matthewcanty
Communicator

How do I give this SingleValue a title?

<param name="label">My Nice Label</param>
  <module name="SingleValue">...

The above causes "Splunk cannot find the ... view."

<module name="HiddenSearch" layoutPanel="panel_row2_col1_grp1" autoRun="True">
<param name="search">
    host="APP90*-TSDAL" FeedSource="*"      
</param>
<earliestTime>-1d</earliestTime>


<module name="HiddenPostProcess" layoutPanel="panel_row2_col1_grp1">
  <param name="search">
    search FeedSource="abelson" | stats max(_time) As LatestTime by FeedSource 
    | eval Gap=round(((now()-LatestTime)/60),1)
    | rangemap field=Gap low=0-10 elevated=10-30 severe=30-60 default=severe
  </param>      
  <module name="SingleValue">
    <param name="field">Gap</param>
    <param name="beforeLabel">></param>
    <param name="afterLabel">min</param>
    <param name="classField">range</param>
  </module>    
</module>
0 Karma
1 Solution

MHibbin
Influencer

Assuming the code above is copied from the actual XML... on your "beforeLabel" you have to greater than symbols (i.e. <param name="beforeLabel">></param> should be <param name="beforeLabel"></param>).

Also have you tried the following (instead of the order you used in the example)

<module name="SingleValue">
  <param name="label">My Nice Label</param>
  ...
</module>

Regards,

MHibbin

View solution in original post

0 Karma

MHibbin
Influencer

Assuming the code above is copied from the actual XML... on your "beforeLabel" you have to greater than symbols (i.e. <param name="beforeLabel">></param> should be <param name="beforeLabel"></param>).

Also have you tried the following (instead of the order you used in the example)

<module name="SingleValue">
  <param name="label">My Nice Label</param>
  ...
</module>

Regards,

MHibbin

0 Karma

MHibbin
Influencer

you should try encasing the ">" in a CDATA tag then, otherwise Splunk will try to close a tag that doesn't exist.

e.g. <param name="beforeLabel"><![CDATA[>]]></param>

OR use the &gt; in place of the symbol, e.g.

<param name="beforeLabel">&gt;</param>

0 Karma

matthewcanty
Communicator

This causes the same problem as mentioned above. I am now using Production Services Running which works. The greater than symbol is intentional!

0 Karma
Get Updates on the Splunk Community!

What's New in Splunk Cloud Platform 9.3.2411?

Hey Splunky People! We are excited to share the latest updates in Splunk Cloud Platform 9.3.2411. This release ...

Buttercup Games: Further Dashboarding Techniques (Part 6)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Technical Workshop Series: Splunk Data Management and SPL2 | Register here!

Hey, Splunk Community! Ready to take your data management skills to the next level? Join us for a 3-part ...