日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

php小編柚子今天要和大家分享關于Zabbix Agent 2的一則問題。在嘗試根據官方說明處理測試插件時,一位用戶遇到了錯誤的拋出問題。這個問題可能會影響插件的正常運行,因此我們將會探討解決這個問題的方法。讓我們一起來看看吧!

問題內容

我開始探索 zabbix agent 2 的可能性,并決定按照官方插件創建指南中的描述逐步創建一個測試插件。

在我完成所有步驟之后,zabbix agent 不想執行任何操作(除了 -h 選項)并給出以下錯誤:

zabbix_agent2 [10046]:錯誤:無法注冊插件:無法解析代理版本strconv.atoi:解析“6.0.13”:語法無效

我在 ubuntu 22.04 上完成了這一切。

zabbix agent 2 版本:6.0.14。

go版本:go1.18.1 linux/amd64

我只通過 apt-get 安裝了 zabbix agent 2。

我按照說明做了一切:

    創建了目錄 /home/ubuntu/myip
    創建了一個文件 main.go
    粘貼了指令中的代碼
package main
       
       import (
           "fmt"
           "io/ioutil"
           "net/http"
           "git.zabbix.com/ap/plugin-support/plugin/container"
           "git.zabbix.com/ap/plugin-support/plugin"
       )
       
       // Plugin must define structure and embed plugin.Base structure.
       type Plugin struct {
           plugin.Base
       }
       
       // Create a new instance of the defined plugin structure
       var impl Plugin
       
       // Plugin must implement one or several plugin interfaces.
       func (p *Plugin) Export(key string, params []string, ctx plugin.ContextProvider) (result interface{}, err error) {
           // You may use one of Critf, Errf, Infof, Warningf, Debugf, Tracef functions for logging.
           p.Infof("received request to handle %s key with %d parameters", key, len(params))
       
           // Fetch response from the specified URL, it should be just the IP address.
           resp, err := http.Get("https://api.ipify.org")
           if err != nil {
               // Plugin will return an error response if the request failed
               return nil, err
           }
       
           defer resp.Body.Close()
       
           body, err := ioutil.ReadAll(resp.Body)
           if err != nil {
               // Plugin will return an error response if it failed to read the response
               return nil, err
           }
       
           return string(body), nil
       }
       
       func init() {
           // Register our metric, specifying the plugin and metric details.
           // 1 - a pointer to plugin implementation
           // 2 - plugin name
           // 3 - metric name (item key)
           // 4 - metric description
           //
           // NB! The metric description must end with a period, otherwise the Zabbix agent 2 will return an error and won't start!
           // Metric name (item key) and metric description can be repeated in a loop to register additional metrics.
           plugin.RegisterMetrics(&impl, "Myip", "myip", "Return the external IP address of the host where agent is running.")
       }
       
       // This is the main function, it is required to compile the plugin.
       // By default the function implements our packages to handle the plugin creation and execution.
       func main() {
           h, err := container.NewHandler(impl.Name())
           if err != nil {
               panic(fmt.Sprintf("failed to create plugin handler %s", err.Error()))
           }
           impl.Logger = &h
       
           err = h.Execute()
           if err != nil {
               panic(fmt.Sprintf("failed to execute plugin handler %s", err.Error()))
           }
       }

登錄后復制

    go mod init example.test/myip
    整理模組
    開始構建
    我使用插件可執行文件的路徑創建了文件 myip.conf 并將其放入目錄 /etc/zabbix/zabbix_agent2.d/plugins.d

    并啟動命令 zabbix_agent2 -t myip

并且……它不起作用并拋出有關錯誤解析代理版本的錯誤。

我認為 strconv.atoi 在 zabbix agent 2 本身的代碼中以某種方式處理不正確,但是在使用代碼編輯器查看整個項目后,我找不到任何值得注意的東西。

另外,奇怪的是zabbix agent版本是6.0.14,6.0.13是插件通信協議版本。我不明白為什么它試圖將協議版本冒充代理版本。

所以,如果你對這個問題有什么想法,我請你表達出來。預先感謝您。

解決方法

我找到了解決辦法! (嗯,實際上我的工作同事發現了這一點,但不是重點)

原因是文件 src/go/plugins/external/broker.go。在此文件中多次更改了請求結構中記錄的邏輯。在 22 年夏天,他們改變了 Zabbix Agent 版本屬性的方式(通過 strconv.Atoi 從字符串解析為整數)。

但在 23 年 1 月,他們刪除了代理版本的屬性,通過 strconv.Atoi 進行解析,并添加了協議版本的屬性。這就是為什么它試圖將協議版本冒充為項目版本。

Plugin Support包的plugin/container/handler.go文件中的checkVersion方法也已更改,用于檢查協議版本。

所以,問題出在新的 Zabbix Agent 2 和舊的插件支持包上。

如果您對 Zabbix Agent 2 使用版本 6.4,對 git.zabbix.com/ap/plugin-support/plugin 使用版本 1.2.2,則一切正常!

分享到:
標簽:字符串解析
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定