From 4b3dee095f5cc11138de36d658aaa9e43554eb07 Mon Sep 17 00:00:00 2001 From: ilyamak04 Date: Sun, 9 Feb 2025 11:46:52 +0300 Subject: [PATCH] + --- docs/README.md | 2 +- docs/{vim/Команды.md => linux/Vim.md} | 0 docs/monitoring/Grafana.md | 1 + docs/monitoring/Prometheus.md | 109 ++++++++++++++++++++++++++ docs/windows/Windows.md | 39 +++++++++ 5 files changed, 150 insertions(+), 1 deletion(-) rename docs/{vim/Команды.md => linux/Vim.md} (100%) create mode 100644 docs/monitoring/Grafana.md create mode 100644 docs/monitoring/Prometheus.md create mode 100644 docs/windows/Windows.md diff --git a/docs/README.md b/docs/README.md index d2f740f..e43d9d5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,4 +2,4 @@ ## DevOps База знаний -## Здесь я буду хранить свои заметки и инструкции +## Здесь я буду хранить свои заметки и инструкции, которые пишу для себя!!!! diff --git a/docs/vim/Команды.md b/docs/linux/Vim.md similarity index 100% rename from docs/vim/Команды.md rename to docs/linux/Vim.md diff --git a/docs/monitoring/Grafana.md b/docs/monitoring/Grafana.md new file mode 100644 index 0000000..31c6028 --- /dev/null +++ b/docs/monitoring/Grafana.md @@ -0,0 +1 @@ +[**Установка**](https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/) diff --git a/docs/monitoring/Prometheus.md b/docs/monitoring/Prometheus.md new file mode 100644 index 0000000..1acc9c5 --- /dev/null +++ b/docs/monitoring/Prometheus.md @@ -0,0 +1,109 @@ +### Установка Prometheus server и Node exporter + +#### Prometheus server install + +- `wget https://github.com/prometheus/prometheus/releases/download/v2.55.0-rc.0/prometheus-2.55.0-rc.0.linux-amd64.tar.gz` - скачиваем прометеус сервер +- `tar xvfz *.tar.gz` +- `cd prometheus-2.55.0-rc.0.linux-amd64.tar.gz` +- `sudo mv prometheus /usr/local/bin/` +- `sudo mv promtool /usr/local/bin` +- `sudo mkdir /etc/prometheus/` +- `sudo mkdir /etc/prometheus/data` +- `sudo mv prometheus.yml /etc/prometheus/` + +```yml +# prometheus.yml +alerting: + alertmanagers: + - static_configs: + - targets: + # - alertmanager:9093 + +# Load rules once and periodically evaluate them according to the global 'evaluation_interval'. +rule_files: + # - "first_rules.yml" + # - "second_rules.yml" + +scrape_configs: + - job_name: "prometheus" + static_configs: + - targets: ["localhost:9090"] + + - job_name: "archers-paradox-servers" + static_configs: + - targets: + - 89.22.241.241:9100 +``` +- `useradd -rs /bin/false prometheus` - создаём системного пользователя для работы с prometheus +- `chown prometheus:prometheus /usr/local/bin/prometheus` +- `chown -R prometheus:prometheus /etc/prometheus` +- `vi /etc/systemd/system/prometheus.service` - создаём systemd юнит + +```bash +[Unit] +Description=Prometheus Server +After=network.target + +[Service] +User=prometheus +Group=prometheus +Type=simple +Restart=on-failure +RestartSec=4s +ExecStart=/usr/local/bin/prometheus \ + --config.file /etc/prometheus/prometheus.yml \ + --storage.tsdb.path /etc/prometheus/data + +[Install] +WantedBy=multi-user.target +``` +- `sudo systemctl daemon-reload` - обновить systemd +- `sudo systemctl start prometheus` +- `sudo systemctl enable prometheus` + +#### Node exporter install +- `wget https://github.com/prometheus/node_exporter/releases/download/v1.8.2/node_exporter-1.8.2.linux-arm64.tar.gz` - скачиваем node exporter на удалённый хост + +- `tar xvfz *.tar.gz` +- `sudo mv node_exporter /usr/local/bin/` + +- `sudo useradd -rs /bin/false node_exporter` +- `sudo chown node_exporter:node_exporter /usr/local/bin/node_exporter` +- `sudo vi /etc/systemd/system/node_exporter.service` + +```bash +# node_exporter.service +[Unit] +Description=Prometheus Node Exporter +After=network.target + +[Service] +User=node_exporter +Group=node_exporter +Type=simple +Restart=on-failure +RestartSec=4s +ExecStart=/usr/local/bin/node_exporter + +[Install] +WantedBy=multi-user.target +``` +- `systemctl daemon-reload` +- `sudo systemctl start node_exporter` +- `sudo systemctl enable node_exporter` + + +### Про PromQL +- `increase()` возвращает общий прирост за указанный интервал времени. +``` +increase(<метрика>[<интервал>]) +``` +- `rate()` вычисляет скорость изменения за этот же интервал времени, и в результате возвращает количество изменений в секунду. +- `increase(http_requests_total[5m])` — покажет, сколько запросов пришло за последние 5 минут. +- `rate(http_requests_total[5m])` — покажет среднее количество запросов в секунду за последние 5 минут. + +### Полезности + +- `promtool check config prometheus.yml` +- `promtool check rules rules.yml` +- `promtool test rules rules_test.yml` \ No newline at end of file diff --git a/docs/windows/Windows.md b/docs/windows/Windows.md new file mode 100644 index 0000000..53824bd --- /dev/null +++ b/docs/windows/Windows.md @@ -0,0 +1,39 @@ + +#### Как посмотреть SWAP ? + +- `Win+R` +- `sysdm.cpl` +- Дополнительно -> Быстродействие (параметры) -> Дополнительно -> Витульная память + +--- + +#### Как посмотреть блочные устройства RAM ? + +В powershell: + +- `Get-WmiObject Win32_PhysicalMemory | Format-Table Manufacturer, Capacity, Speed, PartNumber, DeviceLocator` + +- `Get-WmiObject Win32_PhysicalMemory | Select-Object Manufacturer, @{Name="Capacity(GB)";Expression={[math]::Round($_.Capacity / 1GB, 2)}}, Speed, PartNumber, DeviceLocator | Format-Table` - в Gb + +--- + +#### Работа с переменными среды + +- `Win+R` +- `sysdm.cpl` +- Дополнительно -> Переменные среды + + +--- + +#### Как расширить диск + +- `Win+R` +- `diskmgmt.msc` + +`AOMEI Partition Assistant` - для работы с дисками + +##### Реестр + +- `Win+R` +- `regedit` \ No newline at end of file