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