From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mail.toke.dk X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-101.9 required=5.0 tests=BAYES_00,SHORTCIRCUIT shortcircuit=ham autolearn=disabled version=3.4.2 Received: from mail.toke.dk by mail.toke.dk with LMTP id 0m9HLivVOF35NQAAOr1fkg (envelope-from ) for ; Thu, 25 Jul 2019 00:01:15 +0200 Authentication-Results: mail.toke.dk; none (SPF check N/A for local connections - client-ip=77.235.54.103; helo=web6.sd.eurovps.com; envelope-from=flent-users-bounces@flent.org; receiver=) Authentication-Results: mail.toke.dk; dkim=fail reason="signature verification failed" (1024-bit key) header.d=github.com header.i=@github.com header.b=cQFyIXRc Received: from web6.sd.eurovps.com (web6.sd.eurovps.com [77.235.54.103]) by mail.toke.dk (Postfix) with ESMTPS id 9563B642CBE for ; Thu, 25 Jul 2019 00:01:13 +0200 (CEST) Received: from [::1] (port=35792 helo=web6.sd.eurovps.com) by web6.sd.eurovps.com with esmtp (Exim 4.92) (envelope-from ) id 1hqPJw-0094sh-6o; Thu, 25 Jul 2019 01:01:12 +0300 Received: from out-7.smtp.github.com ([192.30.252.198]:53067) by web6.sd.eurovps.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1hqPJm-0094nf-7f for flent-users@flent.org; Thu, 25 Jul 2019 01:01:08 +0300 Date: Wed, 24 Jul 2019 15:00:21 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564005621; bh=mtEGAfTovIIwJneMITMMl8f7OdPvC4AsgmwnHAiMB/8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=cQFyIXRck6hOte3R0NhU3epCHDuIuMfIIgO3F7MvrB/KVWnUZ5TDBUeZ9UTfn+rAx 1o6FAmYnvtYfyW1PDkOUMY0vIg5S9hhwv9YA60xojNUIJPLUIVwi2poxzIiBgcJugf vOy65CMk/vyEDxInoSWU1jsIQ5/0FJAMv+jScoJM= From: Pete Heist To: tohojo/flent Message-ID: Mime-Version: 1.0 Precedence: list X-GitHub-Sender: heistp X-GitHub-Recipient: flent-users X-GitHub-Reason: subscribed X-Auto-Response-Suppress: All X-GitHub-Recipient-Address: flent-users@flent.org Subject: [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173) X-BeenThere: flent-users@flent.org X-Mailman-Version: 2.1.27 List-Id: Flent discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: tohojo/flent Cc: Subscribed Content-Type: multipart/mixed; boundary="===============0958221577917631586==" Errors-To: flent-users-bounces@flent.org Sender: "Flent-users" X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - web6.sd.eurovps.com X-AntiAbuse: Original Domain - toke.dk X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - flent.org X-Get-Message-Sender-Via: web6.sd.eurovps.com: acl_c_authenticated_local_user: mailman/mailman X-Authenticated-Sender: web6.sd.eurovps.com: mailman@flent.org --===============0958221577917631586== Content-Type: multipart/alternative; boundary="--==_mimepart_5d38d4f5580b8_35ed3fd3c7acd96c251414"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_5d38d4f5580b8_35ed3fd3c7acd96c251414 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit In tcp_nup.conf, I'm trying to create a dual axis plot that combines delivery rate on one axis along with ping and TCP RTT on the second axis, attempting like this: ``` ('tcp_delivery_with_ping_and_tcp_rtt', {'description': 'TCP delivery rate with ping and TCP RTT', 'type': 'timeseries', 'dual_axes': True, 'series': [ {'data': glob('TCP**', exclude=['*fairness*']), 'raw_key': 'tcp_delivery_rate', 'label': 'Delivery rate'}, {'data': glob('Ping (ms) *'), 'label': 'Ping (ms)', 'axis': 2}, {'data': glob('TCP**', exclude=['*fairness*']), 'axis': 2, 'raw_key': 'tcp_rtt', 'label': 'TCP RTT'}]}), ``` But what I get when I try to display the plot is: ``` ERROR: Aborting plotting due to error: Plot axis unit mismatch: ms/Mbits/s ``` I tried setting units to 'ms' explicitly on the ping and TCP RTT data series, but that didn't fix it. Is this possible to do somehow? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/tohojo/flent/issues/173 ----==_mimepart_5d38d4f5580b8_35ed3fd3c7acd96c251414 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

In tcp_nup.conf, I'm trying to create a dual axis plot that combines delivery rate on one axis along with ping and TCP RTT on the second axis, attempting like this:

    ('tcp_delivery_with_ping_and_tcp_rtt',
     {'description': 'TCP delivery rate with ping and TCP RTT',
                  'type': 'timeseries',
                  'dual_axes': True,
                  'series': [
                        {'data': glob('TCP**', exclude=['*fairness*']),
                         'raw_key': 'tcp_delivery_rate',
                         'label': 'Delivery rate'},
                        {'data': glob('Ping (ms) *'),
                         'label': 'Ping (ms)',
                         'axis': 2},
                        {'data': glob('TCP**', exclude=['*fairness*']),
                         'axis': 2,
                         'raw_key': 'tcp_rtt',
                         'label': 'TCP RTT'}]}),

But what I get when I try to display the plot is:

ERROR: Aborting plotting due to error: Plot axis unit mismatch: ms/Mbits/s

I tried setting units to 'ms' explicitly on the ping and TCP RTT data series, but that didn't fix it. Is this possible to do somehow?


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.

----==_mimepart_5d38d4f5580b8_35ed3fd3c7acd96c251414-- --===============0958221577917631586== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Flent-users mailing list Flent-users@flent.org http://flent.org/mailman/listinfo/flent-users_flent.org --===============0958221577917631586==--