配置 Gunicorn 监控后,只能看到两个指标,怎么看到其他指标?
问题原因
实际上,探针端默认只采集了 gunicorn.workers
这个指标,并打上了 state:idle
和 state:working
两种不同的标签。
解决方案
想要监控更多指标,需在 Gunicorn 启动时,添加 --statsd-host
参数,如下:
gunicorn --statsd-host=localhost:8251 --name app -w 4 myapp:app
注意:需要确保 Gunicorn 版本在 19.1 以上,详细可参考:http://docs.gunicorn.org/en/stable/instrumentation.md