Hi,
I have the following Bidirectional graph:
graph_monthly_traffic = graphs.Bidirectional(
name='graph_monthly_traffic',
title=Title("Monthly Traffic"),
lower=graphs.Graph(
name='graph_monthly_traffic_lower',
title=Title("Outgoing Traffic"),
compound_lines=['pmacct_out_total'],
simple_lines=[
metrics.WarningOf('pmacct_out_total'),
],
),
upper=graphs.Graph(
name='graph_monthly_traffic_upper',
title=Title("Incoming Traffic"),
compound_lines=['pmacct_in_total'],
simple_lines=[
metrics.WarningOf('pmacct_in_total'),
],
),
)
Both metrics are drawn as expected, the “Incoming Traffic” above and the “Outgoing Traffic” below the X axis.
But both yellow lines for the warning thresholds are drawn above the X axis. Even when the metrics.WarningOf('pmacct_out_total') is in the lower attribute of the Bidirectional.
Why is that so? IMHO this should be changed.

