All Apps and Add-ons

Unable to plot custom Tag Cloud chart in splunk?

Maheshparsi
Explorer

Hi ALL,

In the "custom visualizations" app, I need to plot custom Tag cloud chart. But when I have changed the query in the XML, the chart is showing different chart(other than Tag cloud chart as expected). Can any one please help me to get out of this?

Thanks for the solution in advance,

Regards,
Mahesh.

0 Karma
1 Solution

skawasaki_splun
Splunk Employee
Splunk Employee

That's not how you use SimpleXML for custom visualization at all. Please read the Tutorial page of the Custom Visualization app.

The SimpleXML should look like:

<panel>
  <html>
    <h2>Top 100 Most Common Terms in an Ad-hoc Search Query</h2>
    <div id="tagcloud_search" class="splunk-manager" data-require="splunkjs/mvc/searchmanager" data-options='{
      "preview": true,
      "search": "index=_audit NOT REST: search=* | regex search_id=\"&apos;\\d+\\.\\d+&apos;\" | rex field=search max_match=0 \"(?&lt;terms&gt;\\w+)\" | top limit=100 terms | eval r=random() | sort r",
      "earliest_time": {
        "type": "token_safe",
        "value": "$$earliest$$"
      },
      "latest_time": {
        "type": "token_safe",
        "value": "$$latest$$"
      }
    }'>
    </div>
    <div id="tagcloud" class="splunk-view" data-require="app/custom_vizs/components/tagcloud/tagcloud" data-options='{
      "minFontSize": 14,
      "maxFontSize": 55,
      "managerid": "tagcloud_search",
      "valueField": "count",
      "labelField": "terms"
    }'>
    </div>
 </html>
</panel>

View solution in original post

skawasaki_splun
Splunk Employee
Splunk Employee

That's not how you use SimpleXML for custom visualization at all. Please read the Tutorial page of the Custom Visualization app.

The SimpleXML should look like:

<panel>
  <html>
    <h2>Top 100 Most Common Terms in an Ad-hoc Search Query</h2>
    <div id="tagcloud_search" class="splunk-manager" data-require="splunkjs/mvc/searchmanager" data-options='{
      "preview": true,
      "search": "index=_audit NOT REST: search=* | regex search_id=\"&apos;\\d+\\.\\d+&apos;\" | rex field=search max_match=0 \"(?&lt;terms&gt;\\w+)\" | top limit=100 terms | eval r=random() | sort r",
      "earliest_time": {
        "type": "token_safe",
        "value": "$$earliest$$"
      },
      "latest_time": {
        "type": "token_safe",
        "value": "$$latest$$"
      }
    }'>
    </div>
    <div id="tagcloud" class="splunk-view" data-require="app/custom_vizs/components/tagcloud/tagcloud" data-options='{
      "minFontSize": 14,
      "maxFontSize": 55,
      "managerid": "tagcloud_search",
      "valueField": "count",
      "labelField": "terms"
    }'>
    </div>
 </html>
</panel>

skawasaki_splun
Splunk Employee
Splunk Employee

Paste me your SimpleXML code.

0 Karma

Maheshparsi
Explorer

Hi skawasaki,
please find the code below:

9.1_Top Web Users Clone

<panel>
  <title>Top Web Users by Hits and Received Bytes</title>
  <table>
    <search>
      <query>source="F:\\Splunk_Log Files\\*" | stats count(dst_ip) as Hits,sum(recv_bytes) as Bytes by src_ip | sort -Hits |head 10| eval Bytes=Bytes." MB"</query>
    </search>
    <option name="wrap">true</option>
    <option name="rowNumbers">true</option>
    <option name="dataOverlayMode">none</option>
    <option name="drilldown">none</option>
    <option name="count">10</option>
  </table>
</panel>

Regards,
Mahesh.

0 Karma
Get Updates on the Splunk Community!

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...