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 bDSMNb6JOV0xIQAAOr1fkg (envelope-from ) for ; Thu, 25 Jul 2019 12:51:42 +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=dsZN9Uf7 Received: from web6.sd.eurovps.com (web6.sd.eurovps.com [77.235.54.103]) by mail.toke.dk (Postfix) with ESMTPS id ABD7E643110 for ; Thu, 25 Jul 2019 12:51:40 +0200 (CEST) Received: from [::1] (port=44912 helo=web6.sd.eurovps.com) by web6.sd.eurovps.com with esmtp (Exim 4.92) (envelope-from ) id 1hqbLX-00Amt5-AG; Thu, 25 Jul 2019 13:51:39 +0300 Received: from out-21.smtp.github.com ([192.30.252.204]:39315) by web6.sd.eurovps.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1hqbLO-00Amp7-0J for flent-users@flent.org; Thu, 25 Jul 2019 13:51:36 +0300 Date: Thu, 25 Jul 2019 03:50:48 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1564051848; bh=8AEhPF4/ynaeQnGediZ8REWcO2gPkb49k7/enyng6BQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dsZN9Uf7qEEuKkIuycc0HxcRgTPxSFjmvALSXFWJTUDPrjBxyXvYg9XHHXzcb/GIV ofwnjCLz6AKORern66bTrWzy9hNmT4AQL1GrU2108lwu2nR7fXp/j2LiW/XOKWv99r y9mQT+I19Ar2+Lv0+VOWUMHl6RHa19EbWlNvG5vM= From: =?UTF-8?B?VG9rZSBIw7hpbGFuZC1Kw7hyZ2Vuc2Vu?= To: tohojo/flent Message-ID: In-Reply-To: References: Mime-Version: 1.0 Precedence: list X-GitHub-Sender: tohojo X-GitHub-Recipient: flent-users X-GitHub-Reason: subscribed X-Auto-Response-Suppress: All X-GitHub-Recipient-Address: flent-users@flent.org Subject: Re: [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="===============4901473879531014997==" 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 --===============4901473879531014997== Content-Type: multipart/alternative; boundary="--==_mimepart_5d3989886268b_51d73fe3434cd9643046b"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_5d3989886268b_51d73fe3434cd9643046b Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Pete Heist writes: > 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? Thank you for your persistent bug-finding efforts ;) Yeah, this should be possible; let me do a quick fix... -- 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#issuecomment-514996974 ----==_mimepart_5d3989886268b_51d73fe3434cd9643046b Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Pete Heist <notifications@github.com> writes:

> 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?

Thank you for your persistent bug-finding efforts ;)

Yeah, this should be possible; let me do a quick fix...


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_5d3989886268b_51d73fe3434cd9643046b-- --===============4901473879531014997== 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 --===============4901473879531014997==--