From 0fd54de0fd98afa000a41e1f0653fecc004c1e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Sat, 20 Nov 2021 10:42:40 +0100 Subject: [PATCH] Update modules/logging/filters.go Co-authored-by: Francis Lavoie --- modules/logging/filters.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/logging/filters.go b/modules/logging/filters.go index 5070efeb988..76143134f62 100644 --- a/modules/logging/filters.go +++ b/modules/logging/filters.go @@ -199,8 +199,10 @@ const ( type queryFilterAction struct { // `replace` to replace the value(s) associated with the parameter(s) or `delete` to remove them entirely. Type ActionType `json:"type"` + // The name of the query parameter. Parameter string `json:"parameter"` + // The value to use as replacement if the action is `replace`. Value string `json:"value,omitempty"` }