You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: scripts/rate_limit.lua
+4-4
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,16 @@
4
4
sample configuration:
5
5
[FILTER]
6
6
Name lua
7
-
Match kubernetes.*
7
+
Match kube.*
8
8
script rate_limit.lua
9
9
call rate_limit
10
10
]]
11
11
12
12
localcounter= {}
13
13
localtime=0
14
-
localgroup_key=os.getenv("GROUP_KEY")-- Used to group logs. Groups are rate limited independently. Example: docker_id
15
-
localgroup_bucket_period_s=tonumber(os.getenv("GROUP_BUCKET_PERIOD_S"))-- This is the period of of time in seconds over which group_bucket_limit applies. Example: 60
16
-
localgroup_bucket_limit=tonumber(os.getenv("GROUP_BUCKET_LIMIT"))-- Maximum number logs allowed per groups over the period of group_bucket_period_s. Example: 6000
14
+
localgroup_key="docker_id"-- Used to group logs. Groups are rate limited independently.
15
+
localgroup_bucket_period_s=60-- This is the period of of time in seconds over which group_bucket_limit applies.
16
+
localgroup_bucket_limit=6000-- Maximum number logs allowed per groups over the period of group_bucket_period_s.
17
17
18
18
-- with above values, each and every containers running on the kubernetes will have a limit of 6000 logs for every 60 seconds since contianers have unique kubernetes.docker_id value
0 commit comments