From 9685f455daf25dcfc63814d05b364d6700ce75eb Mon Sep 17 00:00:00 2001 From: Sven Rebhan Date: Fri, 20 Nov 2020 10:14:14 +0100 Subject: [PATCH] Update readme. --- plugins/processors/starlark/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/processors/starlark/README.md b/plugins/processors/starlark/README.md index 2d26d879605a2..b27ef478a2d44 100644 --- a/plugins/processors/starlark/README.md +++ b/plugins/processors/starlark/README.md @@ -158,6 +158,7 @@ Attempting to modify the global scope will fail with an error. ### Examples - [drop string fields](/plugins/processors/starlark/testdata/drop_string_fields.star) - Drop fields containing string values. +- [drop fields with unexpected type](/plugins/processors/starlark/testdata/drop_fields_with_unexpected_type.star) - Drop fields containing unexpected value types. - [json](/plugins/processors/starlark/testdata/json.star) - an example of processing JSON from a field in a metric - [number logic](/plugins/processors/starlark/testdata/number_logic.star) - transform a numerical value to another numerical value - [pivot](/plugins/processors/starlark/testdata/pivot.star) - Pivots a key's value to be the key for another key.