Prometheus(三):Prometheus監控交換機(snmp)

来源:https://www.cnblogs.com/guoxiangyue/archive/2019/11/04/11778217.html
-Advertisement-
Play Games

預設已安裝Prometheus服務,服務地址:192.168.56.200 一、獲取交換機snmp信息 snmp服務IP(交換機IP):172.20.2.83 snmp community:dfetest 二、部署 snmp_exporter 2.1 下載snmp_exporter 下載snmp_e ...


預設已安裝Prometheus服務,服務地址:192.168.56.200

一、獲取交換機snmp信息

snmp服務IP(交換機IP):172.20.2.83

snmp community:dfetest

二、部署 snmp_exporter

2.1 下載snmp_exporter

下載snmp_exporter安裝包,下載地址:https://github.com/prometheus/snmp_exporter/releases 

下載完成後,上傳至機器的  /usr/local 目錄下

 解壓安裝包

#   tar -zvxf snmp_exporter-0.15.0.linux-arm64.tar.gz 
#   mv snmp_exporter-0.15.0.linux-arm64/ snmp_exporter

2.2 配置snmp_exporter

snmp_exporter的配置文件需要自己通過SNMP Exporter Config Generator 項目編譯生成,

參考方法: https://github.com/prometheus/snmp_exporter/tree/master/generator#file-format  

由於Prometheus使用go語言開發的,所以自己編譯生成snmp_exporter的配置文件需要go環境,Linux中安裝go環境可參考:https://www.cnblogs.com/guoxiangyue/p/11772717.html  中安裝go環境章節

go環境安裝以後,構建snmp exporter  config Generator,執行以下操作:

#  yum -y install git
#  yum -y install gcc gcc-g++ make net-snmp net-snmp-utils net-snmp-libs net-snmp-devel
#  go get github.com/prometheus/snmp_exporter/generator
#  cd ${GOPATH-$HOME/go}/src/github.com/prometheus/snmp_exporter/generator
#  go build
#  make mibs

 編譯完成後,修改當前目錄下的generator.yml 文件,generator.yml文件的配置可以參考 https://github.com/prometheus/snmp_exporter/tree/master/generator#file-format ,generator.yml文件中只需要註入snmp的community即可,下麵僅修改了modules.if_mib.auth欄位,其餘與 File Format 中一致。

#  vim generator.yml

generator.yml 中module.if_mib.auth欄位:

modules:
  # Default IF-MIB interfaces table with ifIndex.
  if_mib:
    walk: [sysUpTime, interfaces, ifXTable]
    version: 1
    auth:
      community: dfetest
    lookups:
      - source_indexes: [ifIndex]
        lookup: ifAlias
      - source_indexes: [ifIndex]
        lookup: ifDescr
      - source_indexes: [ifIndex]
        # Use OID to avoid conflict with Netscaler NS-ROOT-MIB.
        lookup: 1.3.6.1.2.1.31.1.1.1.1 # ifName
    overrides:
      ifAlias:
        ignore: true # Lookup metric
      ifDescr:
        ignore: true # Lookup metric
      ifName:
        ignore: true # Lookup metric
      ifType:
        type: EnumAsInfo

修改完成後,保存退出,執行以下操作,生成新的 snmp.yml 文件

#   export MIBDIRS=mibs
#   ./generator generate

將新生成的snmp.yml 替換掉原snmp_exporter中的snmp.yml

#   cp snmp.yml /usr/local/snmp_exporter

 2.3 驗證並設置snmp_exporter 服務開機啟動

#   cd /usr/local/snmp_exporter
#   ./snmp_exporter

開啟服務埠在9116上,瀏覽器訪問 http://192.168.56.200:9116 , 在 Target 輸入框中填入交換機IP地址,點擊 submit 按鈕,出現數據,在snmp_exporter 配置成功。

 

 2.4 設置snmp_exporter 以服務方式,開機啟動

Ctrl+C 結束掉 snmp_exporter 進程,創建 snmp_exporter 服務,讓 snmp_exporter 以服務的方式,開機自啟。

添加系統服務

#   vim /etc/systemd/system/snmp_exporter.service

將以下內容寫入文件中

[Unit]
Description=node_exporter
After=network.target 

[Service]
ExecStart=/usr/local/snmp_exporter/snmp_exporter
Restart=on-failure

[Install]
WantedBy=multi-user.target

啟動服務,設置開機自啟

#  systemctl daemon-reload
#  systemctl enable snmp_exporter 
#  systemctl start snmp_exporter

三、修改Prometheus 配置

進入Prometheus的安裝文件夾,打開Prometheus配置文件

#  cd /usr/local/prometheus
#  vim prometheus.yml

在scrape_configs標簽下,添加以下內容,配置監控。params.module中可以配置需要抓取的模塊,不配置表示全部抓取。

- job_name: 'snmp'
    scrape_interval: 10s
    static_configs:
     - targets:
       - 172.20.2.83  # 交換機IP地址
    metrics_path: /snmp
    # params:
     # module: [if_mib]
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: 192.168.56.200:9116 # snmp_exporter 服務IP地址

以下是Prometheus.yml 文件全部內容

# my global config
global:
  scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
  evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
  # scrape_timeout is set to the global default (10s).

# Alertmanager configuration
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"

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'prometheus'

    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.

    static_configs:
    - targets: ['localhost:9090']

  - job_name: 'Linux'
    static_configs:
    - targets: ['192.168.56.201:9100']
      labels:
        instance: Linux

  - job_name: 'Windows'
    static_configs:
    - targets: ['192.168.56.1:9182']
      labels:
        instance: Windows

  - job_name: 'snmp'
    scrape_interval: 10s
    static_configs:
     - targets:
       - 172.20.2.83  # 交換機IP地址
    metrics_path: /snmp
    # params:
     # module: [if_mib]
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: 192.168.56.200:9116 # snmp_exporter 服務IP地址

保存退出,重啟Prometheus服務

#  systemctl restart prometheus

瀏覽器訪問 http://192.168.56.200:9090/targets  查看監控信息

可以看到,snmp已經加入進來。

 四、配置Grafana

添加dashboard

Grafana官方為我們提供了很多dashboard頁面,可直接下載使用。瀏覽器訪問 https://grafana.com/grafana/dashboards 下載所需要的dashboard頁面

此處我們使用  snmp 的監控dashboard,dashboard Id為:10523

然後打開我們的Grafana監控頁面,打開dashboard的管理頁面

 點擊【import】按鈕

然後將我們剛纔的dashboard Id (10523) 複製進去

Grafana會自動識別dashboard Id 。

然後點擊【change】按鈕,生成一個隨機的UID,然後點擊下方輸入框,選擇我們之前創建的數據源Prometheus,最後點擊【Import】按鈕,即可完成導入。

 導入成功後,會自動打開該Dashboard,即可看到我們剛纔設置好的snmp監控

至此Prometheus監控交換機,配置完成。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 分區的方式: 1)mbr分區: 1.最多支持四個分區 2.系統只能安裝在主分區 3.擴展分區要占一個主分區 4.mbr最大隻支持2TB,但擁有最好的相容性 2) gpt分區: 1.支持無限多個主分區(但操作系統可能限制,比如windows下最多128個分區) 2.最大支持18EB的大容量(1EB=1 ...
  • 管理用戶 刪除用戶 若使用 userdel myuser 命令刪除該用戶時,並不能刪除該用戶的所有信息,只是刪除了/etc/passwd、/etc/shadow、/etc/group/、/etc/gshadow四個文件里的該賬戶和組的信息。預設情況下創建一個用戶賬號,會創建一個家目錄和一個用戶郵箱( ...
  • 在這篇文章中,將會列出讓一些令 Linux 用戶印象最深刻且精美的 Linux 發行版,包括對初學者友好和流行的發行版。 1. elementary OS elementary OS 是一款基於 Ubuntu 精心打磨美化的桌面 Linux 發行版,號稱是最漂亮的 Linux 發行版。事實上,Ele ...
  • 之前搭建openvpn和easy2.0組合,第一次幫朋友搭建easy3.0組合感覺比2.0麻煩一些,參考了很多技術文章 搭建yum install -y install openvpn easy-rsa net-tools bridge-utilscd /usr/share/easy-rsa/3./ ...
  • 廢話不多說,直接進入主題。 1、安裝mailx [root@localhost ~]#yum install malix -y #yum安裝malix [root@localhost ~]# vi /etc/malix.rc #配置郵箱,配置第三方軟體發送郵件。 2、在配置文件的最後添加第三方郵件的 ...
  • 通常的Cortex-M內核MCU一般都會內嵌並行NOR Flash,這個並行NOR Flash是直接掛在Cortex-M內核高性能AHB匯流排上的,知名IDE如果支持這款MCU,也都會同時集成對應Flash的下載演算法,方便用戶直接在IDE里下載代碼進Flash和XIP調試,但是i.MXRT內部並沒有F... ...
  • 1.poweroff 功能描述:可以關閉Linux系統,關閉記錄會被寫入/var/log/wtmp日誌文件中 命令語法:poweroff [選項] 選項含義: -n:關閉之前不同步 -p:當被稱為halt時關閉電源 -v:增加輸出,包括消息 -q:降低輸出錯誤唯一的消息 -w:並不實際關閉系統,只是 ...
  • 1.電腦組成 2.開發介面標準 ABI--(Application Binary Interface) ABI描述了應用程式與OS之間的底層介面,允許編譯好的目標代碼在使用相容ABI的系統中無需改動就能運行。 API--(Application Programming Interface) API ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...