簡體   English   中英

如何在電報配置中使用 jolokia 將指標發送到 influx oss2?

[英]how to send metrics to influx oss2 using jolokia in telegraf config?

使用 jolokia 配置運行 teltelegraf -debug 后

[[inputs.jolokia2_agent]]
  urls = ["http://<other ip>:8080/jolokia-war-unsecured-1.6.2/"]

   [[inputs.jolokia2_agent.metric]]
     name  = "jr"
     mbean = "java.lang:type=Runtime"
     paths = ["Uptime"]

我得到這個錯誤:

[agent] Initializing plugins
2022-07-02T12:51:57Z D! [agent] Connecting outputs
2022-07-02T12:51:57Z D! [agent] Attempting connection to [outputs.influxdb_v2]
2022-07-02T12:51:57Z D! [agent] Successfully connected to outputs.influxdb_v2
2022-07-02T12:51:57Z D! [agent] Starting service inputs
2022-07-02T12:52:07Z E! [outputs.influxdb_v2] When writing to [https://MYIP:8086]: Post "https://MYIP:8086/api/v2/write?bucket=monitoringdb&org=myorg": http: server gave HTTP response to HTTPS client
2022-07-02T12:52:07Z D! [outputs.influxdb_v2] Buffer fullness: 81 / 10000 metrics
2022-07-02T12:52:07Z E! [agent] Error writing to outputs.influxdb_v2: failed to send metrics to any configured server(s)

2022-07-02T12:52:07Z E! [outputs.influxdb_v2] 寫入 [https://MYIP:8086] 時:發布“https://MYIP:8086/api/v2/write?bucket=monitoringdb&org=myorg”:http:服務器向 HTTPS 客戶端提供 HTTP 響應

此錯誤來自您的 influxdb 輸出。 它說您的客戶正在使用https 但是,服務器以http響應進行響應。 在您的配置中,您可能使用https://指定了一個 URL,但服務器可能只使用http://

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM