小編給大家分享一下怎么編寫Prometheus配置文件prometheus.yml,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
樺甸網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)于2013年創(chuàng)立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
默認情況下,二進制執(zhí)行文件當(dāng)前目錄下,會有prometheus.yml這個配置文件,我們需要做的,就是將exporter的ip和端口號,按照固定格式填寫到配置文件中并重啟Prometheus。
如下例子,每注冊一個exporter可以新增一個job,然后將對應(yīng)的exporter機器的ip和端口號寫到targets下:
scrape_configs: # The job name is added as a label `job=` 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: 'node_exporter' static_configs: - targets: - '172.31.182.140:9100' - '172.31.182.141:9100' - '172.31.182.142:9100' - '172.31.182.143:9100' - '172.31.182.144:9100' - '172.31.182.145:9100' - '172.31.182.146:9100' - '172.31.182.147:9100'
看完了這篇文章,相信你對“怎么編寫Prometheus配置文件prometheus.yml”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!