<?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: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408461#M117904</link>
    <description>&lt;P&gt;yes I did.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Apr 2019 19:17:08 GMT</pubDate>
    <dc:creator>christopheryu</dc:creator>
    <dc:date>2019-04-16T19:17:08Z</dc:date>
    <item>
      <title>xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408457#M117900</link>
      <description>&lt;P&gt;I have a search that calculates latency in a full-mesh network, where each router has a direct connection to all of the other routers in the network. Latency is bidirectional, in other words latency between AAA-CCC is the same as CCC-AAA. I am able to generate a table but only AAA-CCC latency is showing and CCC-AAA is blank (this can be reversed depending on how source and destination was setup). How can I have CCC-AAA to show the same value as AAA-CCC instead of blank?&lt;/P&gt;

&lt;P&gt;search ... &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval Route=RouterA."_".RouterZ 
| eventstats perc03(RTT) as RTT_03p, perc98(RTT) as RTT_98p BY Route
| where RTT &amp;gt;= RTT_03p and RTT &amp;lt;= RTT_98p 
| stats min(RTT) as Latency values(RouterA) values(RouterZ) by Route
| xyseries values(RouterA) values(RouterZ) Latency
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is what I am getting:&lt;/P&gt;

&lt;P&gt;values(RouterA) |AAA|BBB|CCC&lt;BR /&gt;
 AAA&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp|027|012&lt;BR /&gt;
BBB&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp| &amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp|  &amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&lt;BR /&gt;
    CCC&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp|010|  &amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&lt;/P&gt;

&lt;P&gt;This is what I want to see:&lt;/P&gt;

&lt;P&gt;values(RouterA) |AAA|BBB|CCC&lt;BR /&gt;
 AAA&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp|027|012&lt;BR /&gt;
BBB&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |027| &amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp|010&lt;BR /&gt;
    CCC&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp |012|010|  &amp;amp;nbsp&amp;amp;nbsp&amp;amp;nbsp&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 20:36:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408457#M117900</guid>
      <dc:creator>christopheryu</dc:creator>
      <dc:date>2019-04-15T20:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408458#M117901</link>
      <description>&lt;P&gt;I'm 99% sure there's a better way to do this. &lt;/P&gt;

&lt;P&gt;Rename values(RouterA) as column.&lt;/P&gt;

&lt;P&gt;Then:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search 
| append [your search again|transpose 0 header_field=column]
|stats min(*) by column
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is outputting the main search to a lookup table an option? Then you could append it to a transpose of itself without running the search twice.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 01:03:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408458#M117901</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-16T01:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408459#M117902</link>
      <description>&lt;P&gt;thanks but your suggestion produced no results.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 16:28:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408459#M117902</guid>
      <dc:creator>christopheryu</dc:creator>
      <dc:date>2019-04-16T16:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408460#M117903</link>
      <description>&lt;P&gt;Did you &lt;CODE&gt;| rename values(RouterA) as column&lt;/CODE&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 16:48:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408460#M117903</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-04-16T16:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408461#M117904</link>
      <description>&lt;P&gt;yes I did.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 19:17:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408461#M117904</guid>
      <dc:creator>christopheryu</dc:creator>
      <dc:date>2019-04-16T19:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408462#M117905</link>
      <description>&lt;P&gt;Okay, there was a typo on my code. Your suggestion produced the same results as my original search and added a new row at the bottom labeled values(RouterA)&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 20:21:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408462#M117905</guid>
      <dc:creator>christopheryu</dc:creator>
      <dc:date>2019-04-16T20:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: xyseries in full mesh: How to have it fill values A to Z with Z to A or vice versa?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408463#M117906</link>
      <description>&lt;P&gt;You need the &lt;CODE&gt;contingency&lt;/CODE&gt; command:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Contingency"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Contingency&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 21:15:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/xyseries-in-full-mesh-How-to-have-it-fill-values-A-to-Z-with-Z/m-p/408463#M117906</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-04-16T21:15:39Z</dc:date>
    </item>
  </channel>
</rss>

