Update query-influxdb.md (#4884)

Added opening parenthesis to the example with multiple filters.
pull/4927/head
Ochibobo 2023-05-09 17:11:36 +03:00 committed by GitHub
parent b87636b978
commit f32ac159c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ Rows that evaluate to `true` persist in the output data.
(r) => (r._measurement == "cpu")
// Example with multiple filters
(r) => r._measurement == "cpu" and r._field != "usage_system")
(r) => (r._measurement == "cpu" and r._field != "usage_system")
```
#### Use the following: