> For the complete documentation index, see [llms.txt](https://viva.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://viva.gitbook.io/project/kai-fa/ansible.md).

# Ansible

### 开发自定义模块

{% embed url="<https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_general.html>" %}

### 任务运行时间统计

配置ansible.cfg

```
[defaults]
callback_whitelist = profile_tasks
```

### 错误日志格式化

配置ansible.cfg

```
[defaults]
stdout_callback = yaml
```

可选值：

### 加速器

安装mitogen加速模块

```
pip install mitogen
```

配置ansible.cfg

```
[defaults]
strategy = mitogen_linear
strategy_plugins = /usr/lib/python2.7/site-packages/ansible_mitogen/plugins/strategy
```

### Q\&A

**Q: 如何获取ansible主控机器地址**

```
- debug: var="{{ ansible_env['SSH_CLIENT'].split() | first }}"
```

**Q: playbook运行卡在gather\_facts**

将gather\_facts信息采集改为最少

```
[default]
gather_subset = min
```
