我有一个简单的 livenessProbe http 检查:
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 20
timeoutSeconds: 30
failureThreshold: 3
successThreshold: 3
在我的日志中,有大量状态为200 OK的 /health 检查,它使日志变得非常大,因此很昂贵。有没有办法只在状态不是 200 时记录?
我试图寻找答案,但还没有运气。
有人可以帮我吗?谢谢
#更新
我认为日志是通过 nginx 生成的:
nginx的配置:
server {
listen 8080;
root /www/data/;
index index.html;
access_log off;
location /health {
return 200 '{\"status\": \"ok\"}';
default_type application/json;
}
location / {
gzip on;
try_files $uri /index.html;
}
}