(一) Prometheus 監控思科交換機---各中間件安裝部署

Prometheus 監控思科交換機

由於領導比較青睞 Prometheus 開源監控,由於鄙人自身也是網絡專業出身,因此便但願能用 prometheus 監控公司的交換機,公司大量的交換機在業務區,比較繁雜,雖然平常監控均可以用 Solarwinds 和 Opmanager 進行平常網絡行爲監控管理,可是 Solarwinds 界面比較比較有上古世紀的感受,Opmanager 又比較卡,對服務器硬件配置稍微高了點,並且沒有比開源 Prometheus 的更方便管理、進行修改配置等操做。何況如今 prometheus 有較多的公司正在使用,可蒐集的資料較多,但相對來講,監控交換機的這方面, snmp_exporter 的發展就相對較爲緩慢一點,不過相信咱們愈來愈多的人使用,終究會更加完善。html

Prometheus 監控思科交換機文檔完整地址:https://blog.51cto.com/liujingyu/category9.htmlnode

Prometheus + snmp_exporter + Alertmanager + Grafana 安裝部署

  • 各程序說明linux

    • Prometheus:用於作主監控端,收集 snmp_exporter 數據信息
    • snmp_exporter:用於監控交換機設備,收集交換機數據信息
    • Alertmanager: 用於作報警端,當交換機掛掉或者CPU信息或者內存佔用太高進行報警(郵件報警),也能夠對接口流量閾值進行報警
    • Grafana: 把 Prometheus 收集的數據進行比較友好的界面展現
  • 使用版本git

    • CentOS 7.8-2003-Minimal(4核 8G 100G)
    • prometheus 版本 2.21.0 監聽 9090 端口
    • alertmanager 版本 0.21.0 監聽 9093, 9094 端口
    • snmp_exporter 版本 0.19.0 監聽 9116 端口,SNMP 是 UDP 協議 161 和 162 端口,因此不建議 docker 部署
    • Grafana 版本 7.2.0(docker部署) 監聽 3000 端口
  • 官網地址:github

1.系統安裝後初始步驟(優化服務器):

yum install wget yum-utils net-tools vim unzip bash-completion -y

yum update -y

ulimit -n
sed -i "s/* soft nofile 65535/ /g" /etc/security/limits.conf
sed -i "s/* hard nofile 65535/ /g" /etc/security/limits.conf
echo "* soft nofile 65535" >>/etc/security/limits.conf
echo "* hard nofile 65535" >>/etc/security/limits.conf
ulimit -n 65535
echo "修改後文件數量"
ulimit -n

echo "優化內核參數"
echo "net.ipv4.ip_local_port_range = 1024 65535" >>/etc/sysctl.conf
echo "net.ipv4.tcp_syncookies = 1" >>/etc/sysctl.conf
echo "net.ipv4.tcp_tw_reuse = 1" >>/etc/sysctl.conf
echo "net.ipv4.tcp_tw_recycle = 1" >>/etc/sysctl.conf
echo "net.ipv4.tcp_fin_timeout = 30" >>/etc/sysctl.conf
echo "net.core.somaxconn = 20480" >>/etc/sysctl.conf
echo "net.core.netdev_max_backlog = 20480" >>/etc/sysctl.conf
echo "net.ipv4.tcp_max_syn_backlog = 20480" >>/etc/sysctl.conf
echo "net.ipv4.tcp_max_tw_buckets = 800000" >>/etc/sysctl.conf

sysctl -p

sed -i 's/=enforcing/=disabled/g' /etc/selinux/config
setenforce 0
systemctl disabled firewalld
systemctl stop firewalld

2.下載所須要的安裝包

wget https://github.com/prometheus/prometheus/releases/download/v2.21.0/prometheus-2.21.0.linux-amd64.tar.gz

wget https://github.com/prometheus/snmp_exporter/releases/download/v0.19.0/snmp_exporter-0.19.0.linux-amd64.tar.gz

wget https://github.com/prometheus/alertmanager/releases/download/v0.21.0/alertmanager-0.21.0.linux-amd64.tar.gz

tar -xvf prometheus-2.21.0.linux-amd64.tar.gz
mv prometheus-2.21.0.linux-amd64 /opt/prometheus

tar -xf snmp_exporter-0.19.0.linux-amd64.tar.gz
mv snmp_exporter-0.19.0.linux-amd64 /opt/snmp_exporter

tar -xf alertmanager-0.21.0.linux-amd64.tar.gz
mv alertmanager-0.21.0.linux-amd64 /opt/alertmanager

cat > /etc/systemd/system/prometheus.service <<EOF
[Unit]
Description=Prometheus
After=network.target
[Service]
ExecStart=/opt/prometheus/prometheus --config.file=/opt/prometheus/prometheus.yml --storage.tsdb.path=/opt/prometheus/data
User=prometheus
[Install]
WantedBy=multi-user.target
EOF

cat > /etc/systemd/system/snmp_exporter.service <<EOF
[Unit]
Description=node_exporter
After=network.target

[Service]
ExecStart=/opt/snmp_exporter/snmp_exporter --config.file=/opt/snmp_exporter/snmp.yml
Restart=on-failure

[Install]
WantedBy=multi-user.target
EOF

cat > /etc/systemd/system/snmp_exporter.service <<EOF
[Unit]
Description=node_exporter
After=network.target

[Service]
ExecStart=/opt/alertmanager/alertmanager --config.file=/opt/alertmanager/alertmanager.yml
Restart=on-failure

[Install]
WantedBy=multi-user.target
EOF

useradd prometheus
chown -R prometheus:prometheus /opt/{snmp_exporter,prometheus,alertmanager}

systemctl daemon-reload
systemctl enable prometheus && systemctl enable snmp_exporter && systemctl enable alertmanager
systemctl start prometheus && systemctl start snmp_exporter && systemctl start alertmanager

3.安裝Grafana

wget -P /etc/yum.repos.d/ https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum -y install docker-ce
systemctl enable docker && systemctl start docker 

docker login --username=LOGIN_NAME registry.cn-beijing.aliyuncs.com #登陸阿里雲倉庫

docker pull registry.cn-beijing.aliyuncs.com/liujingyu/grafana-chinese:7.2.0
docker image ls
docker tag registry.cn-beijing.aliyuncs.com/liujingyu/grafana-chinese:7.2.0 grafana-chinese:7.2.0

docker run -tdi --name grafana-server --restart=always -p 3000:3000 grafana-chinese:7.2.0

具體配置調整請查看後續文章shell

相關文章
相關標籤/搜索