From db3383180c3cfffeefe92da839f5b9b1295b631c Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Thu, 3 Oct 2019 10:55:32 +0200 Subject: [PATCH] docs(userspace/falco): documenting the keepalive field of the outputs request Signed-off-by: Leonardo Di Donato --- userspace/falco/output.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/userspace/falco/output.proto b/userspace/falco/output.proto index 6de1adf8..fed6f39e 100644 --- a/userspace/falco/output.proto +++ b/userspace/falco/output.proto @@ -16,6 +16,9 @@ service service { // The `request` message is the logical representation of the request model. // It is the input of the `subscribe` service. // It is used to configure the kind of subscription to the gRPC streaming server. +// +// By default the request asks to the server to only receive the accumulated events. +// In case you want to wait indefinitely for new events to come set the keepalive option to true. message request { bool keepalive = 1; // string duration = 2; // TODO(leodido, fntlnz): not handled yet but keeping for reference.