Like this one:
[
If yes, how do I create one?
From all documentation I've read so far, it doesn't seem to support it. But I don't see anyone confirming that it's not supported anywhere.
2016
Confirmed on IRC (#datadog on freenode) that:
Datadog doesn't support multiple Y-axis at this time.
2020: Now it is supported. See James' answer below.
They do allow dual y-axis now
https://docs.datadoghq.com/dashboards/widgets/timeseries/#y-axis-controls
Introducing dual Y-axis for time series widgets. The time series widget on dashboards now support dual y-axis, making it easier than ever to compare two sets of data on a single graph. By removing the need to create separate graphs, your dashboards can show even more valuable information viewable at a glance.
For anyone else struggling with actually implementing this, expand the documentation for requests a bit (and/or open a support case!) and you'll find "on_right_yaxis". So, the JSON looks something like
"requests": [
{
"formulas": [....],
"queries": [....],
"response_format": "timeseries",
"style": {...},
"display_type": "line"
},
{
"on_right_yaxis": true,
"formulas": [....],
"queries": [....],
"response_format": "timeseries",
"style": {...},
"display_type": "line"
}
]
If the two axis have the same units but different degrees (10 vs 10 million), then using a non-linear scale such as log
might provide what you need: