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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...