新增部署Prometheus监控工具脚本;更新README.md文件

This commit is contained in:
2023-12-12 16:08:29 +08:00
committed by huty
parent 32e4e8070b
commit 30c8ad0f9a
98 changed files with 4591 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
---
flag: ~/.flag/{{ role_name }}

View File

@@ -0,0 +1,62 @@
---
# 校验 Promtail 是否安装
- name: '<{{ cmd | upper }}> | 校验 Promtail 是否安装'
stat:
path: '{{ flag }}'
register: ret
# 安装 Promtail
- block:
- name: '<{{ cmd | upper }}> | 创建 Promtail 相关目录'
file:
path: '{{ item.value }}'
state: directory
loop: '{{ promtail.dir | dict2items }}'
- name: '<{{ cmd | upper }}> | 安装 Promtail'
template:
src: '{{ item.src }}'
dest: '{{ item.dest }}'
loop:
- src: docker-compose.yml.j2
dest: '{{ promtail.dir.main }}/docker-compose.yml'
- src: conf/promtail-config.yaml.j2
dest: '{{ promtail.dir.conf }}/promtail-config.yaml'
- name: '<{{ cmd | upper }}> | 启动 Promtail 容器'
shell: |
. /etc/profile
cd {{ promtail.dir.main }}
docker-compose down
docker-compose up -d
# - name: '<{{ cmd | upper }}> | 等待 Promtail 服务启动'
# wait_for:
# port: '{{ promtail.port }}'
- name: '<{{ cmd | upper }}> | 创建 Promtail 安装标记'
shell: |
set -ex
mkdir -p ~/.flag
touch {{ flag }}
when:
- cmd == "install"
- not ret.stat.exists
# 卸载 Promtail
- block:
- name: '<{{ cmd | upper }}> | 卸载 Promtail'
shell: |
. /etc/profile
cd {{ promtail.dir.main }}
docker-compose down
- name: '<{{ cmd | upper }}> | 清除 Promtail 相关文件'
shell: |
rm -rf {{ promtail.dir.main }}
rm -rf {{ flag }}
when:
- cmd == "remove"
- ret.stat.exists

View File

@@ -0,0 +1,24 @@
server:
http_listen_port: 9080
grpc_listen_port: 0
positions:
filename: /tmp/positions.yaml
clients:
- url: http://{{ groups.server.0 }}:{{ loki.port }}/loki/api/v1/push
scrape_configs:
{% for node in promtail.nodes -%}
{% if node.host == inventory_hostname -%}
{% for target in node.targets -%}
- job_name: {{ target.name }}
static_configs:
- targets:
- localhost
labels:
job: {{ target.name }}
__path__: {{ target.path }}/*log
{% endfor %}
{% endif %}
{% endfor %}

View File

@@ -0,0 +1,27 @@
version: "3.9"
services:
promtail:
image: {{ promtail.image }}
container_name: {{ docker.network.name }}-promtail
hostname: promtail
restart: always
networks:
- {{ docker.network.name }}
{% for node in promtail.nodes -%}
{% if node.host == inventory_hostname -%}
ports:
- {{ node.port }}:9080
volumes:
- {{ promtail.dir.conf }}/promtail-config.yaml:/etc/promtail/promtail-config.yaml
{% for target in node.targets -%}
- {{ target.path }}:{{ target.path }}
{% endfor %}
{% endif %}
{% endfor %}
command: "-config.file=/etc/promtail/promtail-config.yaml"
networks:
{{ docker.network.name }}:
external: true
name: {{ docker.network.name }}