由於領導比較青睞 Prometheus 開源監控,由於鄙人自身也是網絡專業出身,因此便但願能用 prometheus 監控公司的交換機,公司大量的交換機在業務區,比較繁雜,雖然平常監控均可以用 Solarwinds 和 Opmanager 進行平常網絡行爲監控管理,可是 Solarwinds 界面比較比較有上古世紀的感受,Opmanager 又比較卡,對服務器硬件配置稍微高了點,並且沒有比開源 Prometheus 的更方便管理、進行修改配置等操做。何況如今 prometheus 有較多的公司正在使用,可蒐集的資料較多,但相對來講,監控交換機的這方面, snmp_exporter 的發展就相對較爲緩慢一點,不過相信咱們愈來愈多的人使用,終究會更加完善。html
Prometheus 監控思科交換機文檔完整地址:https://blog.51cto.com/liujingyu/category9.htmlnode
各程序說明linux
使用版本git
官網地址:github
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
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
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