Skip to content

Commit a7b335d

Browse files
Gokul-Radhakrishnanedsiper
authored andcommitted
scripts: example lua script to do rate limiting
Added example congif file and removed env variables Signed-off-by: Gokul R <gokulradhakrish@gmail.com>
1 parent 59c1568 commit a7b335d

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

conf/rate_limit.conf

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[SERVICE]
2+
Flush 1
3+
Daemon Off
4+
Log_Level info
5+
Parsers_File parsers.conf
6+
7+
[INPUT]
8+
Name tail
9+
Path /var/log/containers/*.log
10+
Parser docker
11+
Tag kube.*
12+
Mem_Buf_Limit 5MB
13+
14+
[FILTER]
15+
Name kubernetes
16+
Match kube.*
17+
# This filter calls the rate limit script
18+
[FILTER]
19+
Name lua
20+
Match kube.*
21+
script rate_limit.lua
22+
call rate_limit
23+
[OUTPUT]
24+
Name stdout
25+
Match *

scripts/rate_limit.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
sample configuration:
55
[FILTER]
66
Name lua
7-
Match kubernetes.*
7+
Match kube.*
88
script rate_limit.lua
99
call rate_limit
1010
]]
1111

1212
local counter = {}
1313
local time = 0
14-
local group_key = os.getenv("GROUP_KEY") -- Used to group logs. Groups are rate limited independently. Example: docker_id
15-
local group_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-
local group_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+
local group_key = "docker_id" -- Used to group logs. Groups are rate limited independently.
15+
local group_bucket_period_s = 60 -- This is the period of of time in seconds over which group_bucket_limit applies.
16+
local group_bucket_limit = 6000 -- Maximum number logs allowed per groups over the period of group_bucket_period_s.
1717

1818
-- 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
1919

0 commit comments

Comments
 (0)