From 855d2a8c7e99da96819e0637ca2a6035e31b74e5 Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Wed, 9 Dec 2020 12:40:26 -0800 Subject: [PATCH] Fix monitor.logs() example Closes https://github.com/influxdata/DAR/issues/156 --- content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md b/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md index e52b209ab..7d1d5ac12 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/monitor/logs.md @@ -63,5 +63,5 @@ _**Data type:** Function_ ```js import "influxdata/influxdb/monitor" -monitor.logs(start: -1h) +monitor.logs(start: -2h, fn: (r) => true) ```