From 06a56562f61f6cea083900bdffcb41c7557b9bd0 Mon Sep 17 00:00:00 2001 From: Duncan Godwin Date: Mon, 17 Jul 2017 10:02:55 +0100 Subject: [PATCH] Add first addition to Aggregator --- guide/blueprints/enrichers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/blueprints/enrichers.md b/guide/blueprints/enrichers.md index 788fb523..6ef12470 100644 --- a/guide/blueprints/enrichers.md +++ b/guide/blueprints/enrichers.md @@ -44,7 +44,7 @@ There are a number of additional configuration keys available for the Aggregator | Configuration Key | Default | Description | |-----------------------------------|---------|---------------------------------------------------------------------| -| enricher.transformation.untyped | list | Specifies a transformation, as a function from a collection to the value, or as a string matching a pre-defined named transformation, such as 'average' (for numbers), 'sum' (for numbers), 'isQuorate' (to compute a quorum), or 'list' (the default, putting any collection of items into a list) | +| enricher.transformation.untyped | list | Specifies a transformation, as a function from a collection to the value, or as a string matching a pre-defined named transformation, such as 'average' (for numbers), 'sum' (for numbers), 'isQuorate' (to compute a quorum), 'first' (the first value, or null if empty), or 'list' (the default, putting any collection of items into a list) | | quorum.check.type | | The requirement to be considered quorate -- possible values: 'all', 'allAndAtLeastOne', 'atLeastOne', 'atLeastOneUnlessEmpty', 'alwaysHealthy'", "allAndAtLeastOne" | | quorum.total.size | 1 | The total size to consider when determining if quorate |