<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Treeview Viz in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/699137#M57318</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I started with the PCF Excel workbook published at&amp;nbsp;&lt;A href="https://www.apqc.org/resource-library/resource-listing/apqc-process-classification-framework-pcf-cross-industry-excel-11" target="_blank"&gt;https://www.apqc.org/resource-library/resource-listing/apqc-process-classification-framework-pcf-cross-industry-excel-11&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I exported the Combined sheet to a CSV file named pcf_combined.csv and uploaded the file to my Splunk instance as a new lookup file with the same name.&lt;/P&gt;&lt;P&gt;I started with the following search:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| inputlookup pcf_combined.csv
| eval id='Hierarchy ID'
| eval label='PCF ID'." - ".'Hierarchy ID'." ".Name
| rex field=id "(?&amp;lt;parentId&amp;gt;[^.]+\\..+)\\."
| table id label parentId&lt;/LI-CODE&gt;&lt;P&gt;The regular expression only extracts a parentId value for layer 3 and lower, i.e. x.y has a null parentId value, x.y.z has a parentId value of x.y, x.y.z.w has a parentId value of x.y.z, etc.&lt;/P&gt;&lt;P&gt;Hierarchy ID values are unordered. To allow Treeview Viz to sort nodes more naturally, I modified the label field:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| eval label='Hierarchy ID'." ".Name." [".'PCF ID'."]"&lt;/LI-CODE&gt;&lt;P&gt;The resulting visualization correctly displays all nodes:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tscroggins_0-1726434759265.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32646iACD40589EA74D922/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tscroggins_0-1726434759265.png" alt="tscroggins_0-1726434759265.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm running Splunk Enterprise 9.3.0 and Treeview Viz 1.6.0.&lt;/P&gt;</description>
    <pubDate>Sun, 15 Sep 2024 21:15:27 GMT</pubDate>
    <dc:creator>tscroggins</dc:creator>
    <dc:date>2024-09-15T21:15:27Z</dc:date>
    <item>
      <title>Treeview Viz</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/698532#M57266</link>
      <description>&lt;P&gt;Hi at all,&lt;/P&gt;&lt;P&gt;I tried to use this visualization to display a process tree and it runs, but I have an issue:&lt;/P&gt;&lt;P&gt;some leaves of the tree aren't displayed:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gcusello_0-1725868789781.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32584iD539462251E2297F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gcusello_0-1725868789781.png" alt="gcusello_0-1725868789781.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have only around 1,900 rows, so I haven't the limit of 250,000 rows and neither the limit of 1,000 levels because I have max 5 levels.&lt;/P&gt;&lt;P&gt;What could it be the issue?&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 08:02:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/698532#M57266</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-09-09T08:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Treeview Viz</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/699137#M57318</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I started with the PCF Excel workbook published at&amp;nbsp;&lt;A href="https://www.apqc.org/resource-library/resource-listing/apqc-process-classification-framework-pcf-cross-industry-excel-11" target="_blank"&gt;https://www.apqc.org/resource-library/resource-listing/apqc-process-classification-framework-pcf-cross-industry-excel-11&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I exported the Combined sheet to a CSV file named pcf_combined.csv and uploaded the file to my Splunk instance as a new lookup file with the same name.&lt;/P&gt;&lt;P&gt;I started with the following search:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| inputlookup pcf_combined.csv
| eval id='Hierarchy ID'
| eval label='PCF ID'." - ".'Hierarchy ID'." ".Name
| rex field=id "(?&amp;lt;parentId&amp;gt;[^.]+\\..+)\\."
| table id label parentId&lt;/LI-CODE&gt;&lt;P&gt;The regular expression only extracts a parentId value for layer 3 and lower, i.e. x.y has a null parentId value, x.y.z has a parentId value of x.y, x.y.z.w has a parentId value of x.y.z, etc.&lt;/P&gt;&lt;P&gt;Hierarchy ID values are unordered. To allow Treeview Viz to sort nodes more naturally, I modified the label field:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;| eval label='Hierarchy ID'." ".Name." [".'PCF ID'."]"&lt;/LI-CODE&gt;&lt;P&gt;The resulting visualization correctly displays all nodes:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tscroggins_0-1726434759265.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32646iACD40589EA74D922/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tscroggins_0-1726434759265.png" alt="tscroggins_0-1726434759265.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm running Splunk Enterprise 9.3.0 and Treeview Viz 1.6.0.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 21:15:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/699137#M57318</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-09-15T21:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Treeview Viz</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/699139#M57319</link>
      <description>&lt;P&gt;One caveat: Top-level nodes without children are displayed as leaves, and the ordering could use some work. I don't know whether the viz supports an undocumented sort field similar to how tree visualizations in most UI toolkits support a sorting callback; I haven't looked at the source code.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tscroggins_0-1726435215436.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32647i6D58C9FD7221F05B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tscroggins_0-1726435215436.png" alt="tscroggins_0-1726435215436.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 21:20:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Treeview-Viz/m-p/699139#M57319</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-09-15T21:20:26Z</dc:date>
    </item>
  </channel>
</rss>

