Flent-users discussion archives
 help / color / mirror / Atom feed
* [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173)
@ 2019-07-24 22:00 Pete Heist
  2019-07-25 10:50 ` Toke Høiland-Jørgensen
  2019-07-25 10:52 ` Toke Høiland-Jørgensen
  0 siblings, 2 replies; 3+ messages in thread
From: Pete Heist @ 2019-07-24 22:00 UTC (permalink / raw)
  To: tohojo/flent; +Cc: Subscribed


[-- Attachment #1.1: Type: text/plain, Size: 1345 bytes --]

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

[-- Attachment #1.2: Type: text/html, Size: 2663 bytes --]

[-- Attachment #2: Type: text/plain, Size: 151 bytes --]

_______________________________________________
Flent-users mailing list
Flent-users@flent.org
http://flent.org/mailman/listinfo/flent-users_flent.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173)
  2019-07-24 22:00 [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173) Pete Heist
@ 2019-07-25 10:50 ` Toke Høiland-Jørgensen
  2019-07-25 10:52 ` Toke Høiland-Jørgensen
  1 sibling, 0 replies; 3+ messages in thread
From: Toke Høiland-Jørgensen @ 2019-07-25 10:50 UTC (permalink / raw)
  To: tohojo/flent; +Cc: Subscribed


[-- Attachment #1.1: Type: text/plain, Size: 1579 bytes --]

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 or view it on GitHub:
https://github.com/tohojo/flent/issues/173#issuecomment-514996974

[-- Attachment #1.2: Type: text/html, Size: 3394 bytes --]

[-- Attachment #2: Type: text/plain, Size: 151 bytes --]

_______________________________________________
Flent-users mailing list
Flent-users@flent.org
http://flent.org/mailman/listinfo/flent-users_flent.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173)
  2019-07-24 22:00 [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173) Pete Heist
  2019-07-25 10:50 ` Toke Høiland-Jørgensen
@ 2019-07-25 10:52 ` Toke Høiland-Jørgensen
  1 sibling, 0 replies; 3+ messages in thread
From: Toke Høiland-Jørgensen @ 2019-07-25 10:52 UTC (permalink / raw)
  To: tohojo/flent; +Cc: Subscribed


[-- Attachment #1.1: Type: text/plain, Size: 239 bytes --]

Closed #173 via 1ff2d17f111d46c39e851d96c19ccdd97f931045.

-- 
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#event-2509106170

[-- Attachment #1.2: Type: text/html, Size: 2224 bytes --]

[-- Attachment #2: Type: text/plain, Size: 151 bytes --]

_______________________________________________
Flent-users mailing list
Flent-users@flent.org
http://flent.org/mailman/listinfo/flent-users_flent.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-25 10:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-24 22:00 [Flent-users] [tohojo/flent] How to combine ping and tcp rtt onto one axis? (#173) Pete Heist
2019-07-25 10:50 ` Toke Høiland-Jørgensen
2019-07-25 10:52 ` Toke Høiland-Jørgensen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox