community.general.nginx_status_info 模块 – 获取 Nginx 状态信息
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.nginx_status_info
。
概要
从启用
stub_status
的 URL 中收集 Nginx 信息。
参数
参数 |
注释 |
---|---|
HTTP 连接超时时间(秒)。 默认值: |
|
Nginx 状态的 URL。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完全 此操作不修改状态。 |
可以在 |
|
支持: 不适用 此操作不修改状态。 |
在 diff 模式下,将返回有关已更改内容(或可能需要在 |
说明
示例
# Gather status info from nginx on localhost
- name: Get current http stats
community.general.nginx_status_info:
url: https://127.0.0.1/nginx_status
register: result
# Gather status info from nginx on localhost with a custom timeout of 20 seconds
- name: Get current http stats
community.general.nginx_status_info:
url: https://127.0.0.1/nginx_status
timeout: 20
register: result
返回值
常见的返回值记录在此处,以下是此模块特有的字段
键 |
描述 |
---|---|
接受的客户端连接总数。 已返回: 成功 示例: |
|
活动连接。 已返回: 成功 示例: |
|
HTTP 响应原样。 已返回: 成功 示例: |
|
处理的连接总数。通常,除非达到某些资源限制,否则参数值与 accepts 相同。 已返回: 成功 示例: |
|
Nginx 正在读取请求头的当前连接数。 已返回: 成功 示例: |
|
客户端请求总数。 已返回: 成功 示例: |
|
等待请求的当前空闲客户端连接数。 已返回: 成功 示例: |
|
Nginx 正在将响应写回客户端的当前连接数。 已返回: 成功 示例: |