[READ-ONLY] Mirror of https://github.com/FoxxMD/crowdsecBench. Benchmark Crowdsec CPU usage with concurrent requests
benchmark cpu-usage crowdsec docker k6 monitoring visualization
0

Configure Feed

Select the types of activity you want to include in your feed.

add traefik with echo route

FoxxMD (Sep 19, 2025, 2:07 PM EDT) 696da328 ae1d6042

+41 -1
+2 -1
.gitignore
··· 1 1 node_modules 2 - .env 2 + .env 3 + log
+10
compose.yaml
··· 7 7 - 'run' 8 8 - '/app/script.ts' 9 9 env_file: '.env' 10 + traefik: 11 + image: "traefik:v3.3" 12 + ports: 13 + - "8086:80" 14 + volumes: 15 + - './traefik/static:/etc/traefik' 16 + - './traefik/dynamic:/config/dynamic' 17 + - './log:/var/log/traefik' 18 + echo: 19 + image: mendhak/http-https-echo:36
+10
traefik/dynamic/sites.yml
··· 1 + http: 2 + routers: 3 + echo: 4 + rule: "PathPrefix(`/`)" 5 + service: echo 6 + services: 7 + echo: 8 + loadBalancer: 9 + servers: 10 + - url: "http://echo:8080"
+19
traefik/static/traefik.yaml
··· 1 + accessLog: 2 + filePath: "/var/log/traefik/access.log" 3 + format: json 4 + bufferingSize: 0 5 + fields: 6 + headers: 7 + defaultMode: drop # drop all headers per default 8 + names: 9 + User-Agent: keep # log user agent strings 10 + providers: 11 + file: 12 + directory: /config/dynamic 13 + watch: true 14 + entryPoints: 15 + web: 16 + asDefault: true 17 + address: :80 18 + log: 19 + level: info