1. Giới Thiệu
Giám sát hệ thống là một phần quan trọng trong DevOps để đảm bảo hiệu suất và độ ổn định của hệ thống. Prometheus là một hệ thống giám sát mạnh mẽ, thu thập dữ liệu từ các máy chủ và ứng dụng. Grafana là một công cụ trực quan hóa dữ liệu giúp bạn tạo dashboard dễ hiểu.
Trong bài viết này, chúng ta sẽ:
- Cài đặt Prometheus & Grafana bằng Docker.
- Cấu hình Node Exporter để giám sát hệ thống.
- Tạo dashboard trong Grafana để theo dõi hiệu suất máy chủ.
- Thiết lập cảnh báo (Alerting) để phát hiện sự cố.
2. Cài Đặt Prometheus & Grafana
2.1. Cài đặt Prometheus bằng Docker
Tạo một thư mục cho Prometheus:
mkdir -p ~/monitoring/prometheus && cd ~/monitoring/prometheus
Tạo file cấu hình prometheus.yml
:
global:
scrape_interval: 15s # Tần suất lấy dữ liệu
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'node_exporter'
static_configs:
- targets: ['node_exporter:9100']
Chạy Prometheus bằng Docker:
docker run -d --name=prometheus \
-p 9090:9090 \
-v $(pwd)/prometheus.yml:/etc/prometheus/prometheus.yml \
prom/prometheus
Truy cập giao diện Prometheus: http://localhost:9090
2.2. Cài đặt Grafana bằng Docker
Chạy Grafana:
docker run -d --name=grafana \
-p 3000:3000 \
grafana/grafana
Truy cập giao diện Grafana: http://localhost:3000
(Mặc định user/pass: admin/admin
)
3. Giám Sát Hệ Thống Với Node Exporter
3.1. Cài đặt Node Exporter
Node Exporter giúp thu thập thông tin về CPU, RAM, Disk, Network của hệ thống.
Chạy Node Exporter bằng Docker:
docker run -d --name=node_exporter \
-p 9100:9100 \
prom/node-exporter
Thêm Node Exporter vào prometheus.yml
:
- job_name: 'node_exporter'
static_configs:
- targets: ['node_exporter:9100']
Reload Prometheus:
curl -X POST http://localhost:9090/-/reload
Kiểm tra dữ liệu từ Node Exporter tại http://localhost:9100/metrics
4. Tạo Dashboard Trong Grafana
4.1. Kết nối Grafana với Prometheus
- Truy cập Grafana
http://localhost:3000
- Vào Configuration > Data Sources
- Chọn Prometheus và nhập URL:
http://prometheus:9090
- Nhấn Save & Test
4.2. Import Dashboard Mẫu
Vào Dashboards > Import và nhập ID: 1860
để tải dashboard giám sát Linux.
5. Thiết Lập Cảnh Báo (Alerting)
5.1. Tạo Rule Cảnh Báo Trong Prometheus
Tạo file alert_rules.yml
:
groups:
- name: alert_rules
rules:
- alert: High CPU Usage
expr: 100 - (avg by (instance) (rate(node_cpu_seconds_total{mode="idle"}[5m])) * 100) > 80
for: 2m
labels:
severity: critical
annotations:
summary: "CPU sử dụng cao trên {{ $labels.instance }}"
Thêm vào prometheus.yml
:
rule_files:
- alert_rules.yml
Reload Prometheus:
curl -X POST http://localhost:9090/-/reload
5.2. Cấu hình AlertManager
Tạo file alertmanager.yml
:
route:
receiver: 'email'
receivers:
- name: 'email'
email_configs:
- to: 'your-email@example.com'
from: 'alert@example.com'
smarthost: 'smtp.example.com:587'
auth_username: 'your-email@example.com'
auth_password: 'your-password'
Chạy AlertManager bằng Docker:
docker run -d --name=alertmanager \
-p 9093:9093 \
-v $(pwd)/alertmanager.yml:/etc/alertmanager/alertmanager.yml \
prom/alertmanager
Thêm AlertManager vào prometheus.yml
:
alerting:
alertmanagers:
- static_configs:
- targets:
- 'alertmanager:9093'
6. Kết Luận
Sau bài hướng dẫn này, bạn đã có thể:
- Cài đặt Prometheus và Grafana để giám sát hệ thống.
- Thu thập dữ liệu từ Node Exporter.
- Tạo dashboard trực quan với Grafana.
- Thiết lập cảnh báo khi hệ thống gặp sự cố.
Đây là bước quan trọng để đảm bảo hệ thống của bạn luôn hoạt động ổn định và phát hiện lỗi sớm.
=============================
Website không chứa bất kỳ quảng cáo nào, mọi đóng góp để duy trì phát triển cho website (donation) xin vui lòng gửi về STK 90.2142.8888 - Ngân hàng Vietcombank Thăng Long - TRAN VAN BINH
=============================
Nếu bạn không muốn bị AI thay thế và tiết kiệm 3-5 NĂM trên con đường trở thành DBA chuyên nghiệp hay làm chủ Database thì hãy đăng ký ngay KHOÁ HỌC ORACLE DATABASE A-Z ENTERPRISE, được Coaching trực tiếp từ tôi với toàn bộ bí kíp thực chiến, thủ tục, quy trình của gần 20 năm kinh nghiệm (mà bạn sẽ KHÔNG THỂ tìm kiếm trên Internet/Google) từ đó giúp bạn dễ dàng quản trị mọi hệ thống Core tại Việt Nam và trên thế giới, đỗ OCP.
- CÁCH ĐĂNG KÝ: Gõ (.) hoặc để lại số điện thoại hoặc inbox
https://m.me/tranvanbinh.vn hoặc Hotline/Zalo 090.29.12.888
- Chi tiết tham khảo:
https://bit.ly/oaz_w
=============================
2 khóa học online qua video giúp bạn nhanh chóng có những kiến thức nền tảng về Linux, Oracle, học mọi nơi, chỉ cần có Internet/4G:
- Oracle cơ bản:
https://bit.ly/admin_1200
- Linux:
https://bit.ly/linux_1200
=============================
KẾT NỐI VỚI CHUYÊN GIA TRẦN VĂN BÌNH:
📧 Mail: binhoracle@gmail.com
☎️ Mobile/Zalo: 0902912888
👨 Facebook:
https://www.facebook.com/BinhOracleMaster
👨 Inbox Messenger:
https://m.me/101036604657441 (profile)
👨 Fanpage:
https://www.facebook.com/tranvanbinh.vn
👨 Inbox Fanpage:
https://m.me/tranvanbinh.vn
👨👩 Group FB:
https://www.facebook.com/groups/DBAVietNam
👨 Website:
https://www.tranvanbinh.vn
👨 Blogger:
https://tranvanbinhmaster.blogspot.com
🎬 Youtube:
https://www.youtube.com/@binhguru
👨 Tiktok:
https://www.tiktok.com/@binhguru
👨 Linkin:
https://www.linkedin.com/in/binhoracle
👨 Twitter:
https://twitter.com/binhguru
👨 Podcast:
https://www.podbean.com/pu/pbblog-eskre-5f82d6
👨 Địa chỉ: Tòa nhà Sun Square - 21 Lê Đức Thọ - Phường Mỹ Đình 1 - Quận Nam Từ Liêm - TP.Hà Nội
=============================
cở sở dữ liệu, cơ sở dữ liệu quốc gia, database, AI, trí tuệ nhân tạo, artificial intelligence, machine learning, deep learning, LLM, ChatGPT, DeepSeek, Grok, oracle tutorial, học oracle database, Tự học Oracle, Tài liệu Oracle 12c tiếng Việt, Hướng dẫn sử dụng Oracle Database, Oracle SQL cơ bản, Oracle SQL là gì, Khóa học Oracle Hà Nội, Học chứng chỉ Oracle ở đầu, Khóa học Oracle online,sql tutorial, khóa học pl/sql tutorial, học dba, học dba ở việt nam, khóa học dba, khóa học dba sql, tài liệu học dba oracle, Khóa học Oracle online, học oracle sql, học oracle ở đâu tphcm, học oracle bắt đầu từ đâu, học oracle ở hà nội, oracle database tutorial, oracle database 12c, oracle database là gì, oracle database 11g, oracle download, oracle database 19c, oracle dba tutorial, oracle tunning, sql tunning , oracle 12c, oracle multitenant, Container Databases (CDB), Pluggable Databases (PDB), oracle cloud, oracle security, oracle fga, audit_trail,oracle RAC, ASM, oracle dataguard, oracle goldengate, mview, oracle exadata, oracle oca, oracle ocp, oracle ocm , oracle weblogic, postgresql tutorial, mysql tutorial, mariadb tutorial, ms sql server tutorial, nosql, mongodb tutorial, oci, cloud, middleware tutorial, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty