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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...