From fdcc9333c8fd0d4ab3f3faca5d6af375bc957ef3 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Wed, 8 Feb 2017 14:48:55 +0100 Subject: [PATCH] MaxRows configuration example MaxRows configuration example --- Documentation/Filters/Maxrows.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Documentation/Filters/Maxrows.md b/Documentation/Filters/Maxrows.md index f36269564..5941affc9 100644 --- a/Documentation/Filters/Maxrows.md +++ b/Documentation/Filters/Maxrows.md @@ -70,3 +70,16 @@ Default is `0`. To log everything, give `debug` a value of `3`. ``` debug=2 ``` + +## Example Configuration + +Here is an example of filter configuration where the max number of returned +rows is 10000 and max allowed resultset size is 256KB + +``` +[MaxRows] +type=filter +module=maxrows +max_resultset_rows=10000 +max_resultset_size=256000 +```