<?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: Visualization to show hops between two servers in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524354#M35487</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/131947"&gt;@sairam1444&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I guess there can be more than 2 lines (=hops) for each source/destination pair, correct?&lt;BR /&gt;And the data will have multiple sources and destinations, right?&lt;BR /&gt;&lt;BR /&gt;Do you have any requirement for the visualization? I guess to put together a long string as you provided would be not a big issue (with strcat e.g.), but does it need to be "more visual" somehow. With colors based on the values, boxes around the values...fancy arrows? Basically: Is it for a Management or Operations audience? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;BR&lt;BR /&gt;Ralph&lt;/P&gt;</description>
    <pubDate>Tue, 13 Oct 2020 09:20:42 GMT</pubDate>
    <dc:creator>rnowitzki</dc:creator>
    <dc:date>2020-10-13T09:20:42Z</dc:date>
    <item>
      <title>Visualization to show hops between two servers</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524344#M35482</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I got data like this, which will show hop server between two destinations and certain metrics between them&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;source,final_destination,hop_number,hop_host,loss_perc&lt;BR /&gt;1.1.1.1,4.4.4.4,1,2.2.2.2,3&lt;BR /&gt;1.1.1.1,4.4.4.4,2,3.3.3.3,2&lt;BR /&gt;&lt;BR /&gt;So I wanna show a visualization which shows like this&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1.1.1.1. ( source ) ----- 3 ( loss perc ) -------&amp;gt; 2.2.2.2 ----2 ( loss perc ) ------&amp;gt; 3.3.3.3 -------&amp;gt; 4.4.4.4 ( final destination )&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 07:48:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524344#M35482</guid>
      <dc:creator>sairam1444</dc:creator>
      <dc:date>2020-10-13T07:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization to show hops between two servers</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524353#M35486</link>
      <description>&lt;LI-CODE lang="markup"&gt;| makeresults | eval events="1.1.1.1,4.4.4.4,1,2.2.2.2,3|1.1.1.1,4.4.4.4,2,3.3.3.3,2"
| eval events=split(events,"|")
| mvexpand events
| rex field=events "(?&amp;lt;source&amp;gt;[^,]+),(?&amp;lt;dest&amp;gt;[^,]+),(?&amp;lt;hop&amp;gt;[^,]+),(?&amp;lt;hop_host&amp;gt;[^,]+),(?&amp;lt;hop_perc&amp;gt;.*)"
| fields - events
| eval hop_host_field="hop_".hop."_host"
| eval hop_perc_field="hop_".hop."__perc"
| eval {hop_host_field}=hop_host
| eval {hop_perc_field}=hop_perc
| fields - hop_host hop_perc hop hop_host_field hop_perc_field
| stats values(*) as * by source, dest
| fields source hop* dest&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 13 Oct 2020 09:15:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524353#M35486</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2020-10-13T09:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization to show hops between two servers</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524354#M35487</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/131947"&gt;@sairam1444&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I guess there can be more than 2 lines (=hops) for each source/destination pair, correct?&lt;BR /&gt;And the data will have multiple sources and destinations, right?&lt;BR /&gt;&lt;BR /&gt;Do you have any requirement for the visualization? I guess to put together a long string as you provided would be not a big issue (with strcat e.g.), but does it need to be "more visual" somehow. With colors based on the values, boxes around the values...fancy arrows? Basically: Is it for a Management or Operations audience? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;BR&lt;BR /&gt;Ralph&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 09:20:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Visualization-to-show-hops-between-two-servers/m-p/524354#M35487</guid>
      <dc:creator>rnowitzki</dc:creator>
      <dc:date>2020-10-13T09:20:42Z</dc:date>
    </item>
  </channel>
</rss>

