Skip to content

Commit

Permalink
add docs for removeAboveValue(), removeBelowValue() and transformNull…
Browse files Browse the repository at this point in the history
…(), #562
  • Loading branch information
alexanderzobnin committed Feb 13, 2019
1 parent 6fe5c6d commit 65ac6c0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docs/sources/reference/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,35 @@ calculates moving average over 60 points (if metric has 1 second resolution it m
```
---

### _removeAboveValue_
```
removeAboveValue(N)
```
Replaces series values with `null` if value > N

Examples:
```
removeAboveValue(1)
```

---

### _removeBelowValue_
```
removeBelowValue(N)
```
Replaces series values with `null` if value < N

---

### _transformNull_
```
transformNull(N)
```
Replaces `null` values with N

---

## Aggregate

### _aggregateBy_
Expand Down

0 comments on commit 65ac6c0

Please sign in to comment.