成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

運(yùn)維監(jiān)控系統(tǒng)之Prometheus Server安裝

運(yùn)維 系統(tǒng)運(yùn)維
Prometheus是Golang寫的,編譯后就是一個(gè)二進(jìn)制文件,不依賴于第三方運(yùn)行庫。這樣子就可以讓我們很方便的部署。

 簡介

Prometheus是Golang寫的,編譯后就是一個(gè)二進(jìn)制文件,不依賴于第三方運(yùn)行庫。這樣子就可以讓我們很方便的部署。

下載安裝

Golang的交叉編譯,可以很容易實(shí)現(xiàn)跨平臺(tái)。

如果是測(cè)試實(shí)驗(yàn)可以在下載windows版本的就可以了。

[[360451]]

我這邊都是Linux環(huán)境,直接下載Linux版本

  1. wget -c https://github.com/prometheus/prometheus/releases/download/v2.23.0/prometheus-2.23.0.linux-amd64.tar.gz 
  2. tar zxvf prometheus-2.23.0.linux-amd64.tar.gz 

 運(yùn)行

解壓后,就可以執(zhí)行二進(jìn)制文件prometheus

  1. ./prometheus 

默認(rèn)配置文件是當(dāng)前目錄下的prometheus.yml

默認(rèn)配置文件里面只有拉取prometheus自己的指標(biāo)。

幫助

  1. ./prometheus --help  

prometheus 提供了很多參數(shù)可以進(jìn)行配置,根據(jù)實(shí)際情況進(jìn)行設(shè)置即可。

  1. usage: prometheus [<flags>] 
  2.  
  3. The Prometheus monitoring server 
  4.  
  5. Flags: 
  6.   -h, --help                     Show context-sensitive help (also try --help-long and --help-man). 
  7.       --version                  Show application version. 
  8.       --config.file="prometheus.yml"   
  9.                                  Prometheus configuration file path. 
  10.       --web.listen-address="0.0.0.0:9090"   
  11.                                  Address to listen on for UI, API, and telemetry. 
  12.       --web.read-timeout=5m      Maximum duration before timing out read of the request, and closing idle connections. 
  13.       --web.max-connections=512  Maximum number of simultaneous connections. 
  14.       --web.external-url=<URL>   The URL under which Prometheus is externally reachable (for example, if Prometheus is served via a reverse proxy). Used for generating relative and absolute links back to 
  15.                                  Prometheus itself. If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Prometheus. If omitted, relevant URL components will be derived 
  16.                                  automatically. 
  17.       --web.route-prefix=<path>  Prefix for the internal routes of web endpoints. Defaults to path of --web.external-url. 
  18.       --web.user-assets=<path>   Path to static asset directory, available at /user. 
  19.       --web.enable-lifecycle     Enable shutdown and reload via HTTP request. 
  20.       --web.enable-admin-api     Enable API endpoints for admin control actions. 
  21.       --web.console.templates="consoles"   
  22.                                  Path to the console template directory, available at /consoles. 
  23.       --web.console.libraries="console_libraries"   
  24.                                  Path to the console library directory. 
  25.       --web.page-title="Prometheus Time Series Collection and Processing Server"   
  26.                                  Document title of Prometheus instance. 
  27.       --web.cors.origin=".*"     Regex for CORS origin. It is fully anchored. Example: 'https?://(domain1|domain2)\.com' 
  28.       --storage.tsdb.path="data/"   
  29.                                  Base path for metrics storage. 
  30.       --storage.tsdb.retention=STORAGE.TSDB.RETENTION   
  31.                                  [DEPRECATED] How long to retain samples in storage. This flag has been deprecated, use "storage.tsdb.retention.time" instead
  32.       --storage.tsdb.retention.time=STORAGE.TSDB.RETENTION.TIME   
  33.                                  How long to retain samples in storage. When this flag is set it overrides "storage.tsdb.retention". If neither this flag nor "storage.tsdb.retention" nor 
  34.                                  "storage.tsdb.retention.size" is set, the retention time defaults to 15d. Units Supported: y, w, d, h, m, s, ms. 
  35.       --storage.tsdb.retention.size=STORAGE.TSDB.RETENTION.SIZE   
  36.                                  [EXPERIMENTAL] Maximum number of bytes that can be stored for blocks. A unit is required, supported units: B, KB, MB, GB, TB, PB, EB. Ex: "512MB". This flag is experimental and 
  37.                                  can be changed in future releases. 
  38.       --storage.tsdb.no-lockfile   
  39.                                  Do not create lockfile in data directory. 
  40.       --storage.tsdb.allow-overlapping-blocks   
  41.                                  [EXPERIMENTAL] Allow overlapping blocks, which in turn enables vertical compaction and vertical query merge. 
  42.       --storage.tsdb.wal-compression   
  43.                                  Compress the tsdb WAL. 
  44.       --storage.remote.flush-deadline=<duration>   
  45.                                  How long to wait flushing sample on shutdown or config reload. 
  46.       --storage.remote.read-sample-limit=5e7   
  47.                                  Maximum overall number of samples to return via the remote read interface, in a single query. 0 means no limit. This limit is ignored for streamed response types. 
  48.       --storage.remote.read-concurrent-limit=10   
  49.                                  Maximum number of concurrent remote read calls. 0 means no limit. 
  50.       --storage.remote.read-max-bytes-in-frame=1048576   
  51.                                  Maximum number of bytes in a single frame for streaming remote read response types before marshalling. Note that client might have limit on frame size as well. 1MB as 
  52.                                  recommended by protobuf by default
  53.       --rules.alert.for-outage-tolerance=1h   
  54.                                  Max time to tolerate prometheus outage for restoring "for" state of alert. 
  55.       --rules.alert.for-grace-period=10m   
  56.                                  Minimum duration between alert and restored "for" state. This is maintained only for alerts with configured "for" time greater than grace period. 
  57.       --rules.alert.resend-delay=1m   
  58.                                  Minimum amount of time to wait before resending an alert to Alertmanager. 
  59.       --alertmanager.notification-queue-capacity=10000   
  60.                                  The capacity of the queue for pending Alertmanager notifications. 
  61.       --alertmanager.timeout=10s   
  62.                                  Timeout for sending alerts to Alertmanager. 
  63.       --query.lookback-delta=5m  The maximum lookback duration for retrieving metrics during expression evaluations and federation. 
  64.       --query.timeout=2m         Maximum time a query may take before being aborted. 
  65.       --query.max-concurrency=20   
  66.                                  Maximum number of queries executed concurrently. 
  67.       --query.max-samples=50000000   
  68.                                  Maximum number of samples a single query can load into memory. Note that queries will fail if they try to load more samples than this into memory, so this also limits the 
  69.                                  number of samples a query can return
  70.       --log.level=info           Only log messages with the given severity or above. One of: [debug, info, warn, error] 
  71.       --log.format=logfmt        Output format of log messages. One of: [logfmt, json] 

 注冊(cè)成服務(wù)

目前l(fā)inux大部分的發(fā)行版本都是使用systemd管理系統(tǒng)服務(wù)了,我們可以直接編輯一個(gè)systemd的service文件,來部署prometheus服務(wù)。

[[360452]]
  1. vim /etc/systemd/system/prometheus.service 

如果沒有設(shè)置--storage.tsdb.path,記得設(shè)置好工作目錄WorkingDirectory,不然所有數(shù)據(jù)都會(huì)保存到家目錄里面。

  1. [Unit] 
  2. Description=prometheus 
  3. After=network.target 
  4.  
  5. [Service] 
  6. Type=simple 
  7. WorkingDirectory=/opt/prometheus/prometheus 
  8. ExecStart=/opt/prometheus/prometheus/prometheus --config.file="/opt/prometheus/prometheus/prometheus.yml" 
  9. LimitNOFILE=65536 
  10. PrivateTmp=true 
  11. RestartSec=2 
  12. StartLimitInterval=0 
  13. Restart=always 
  14.  
  15. [Install] 
  16. WantedBy=multi-user.target 

 使用systemctl加載文件、控制服務(wù)

  1. systemctl daemon-reload  
  2. systemctl enable prometheus 
  3. systemctl start prometheus 

 WebUI

啟動(dòng)之后,默認(rèn)監(jiān)聽是9090端口,瀏覽器直接訪問即可

  1. http://[ip]:9090 

 【編輯推薦】

 

責(zé)任編輯:姜華 來源: 今日頭條
相關(guān)推薦

2020-12-30 08:09:46

運(yùn)維Prometheus 監(jiān)控

2020-12-29 10:45:22

運(yùn)維Prometheus-監(jiān)控

2021-07-07 05:46:46

運(yùn)維監(jiān)控Prometheus

2020-12-17 09:25:46

運(yùn)維Prometheus監(jiān)控

2020-12-30 05:34:25

監(jiān)控PrometheusGrafana

2023-10-11 09:58:07

2022-07-11 13:43:51

Prometheus監(jiān)控

2013-04-12 13:30:47

2011-03-21 14:43:42

2011-09-01 10:22:03

Cobbler運(yùn)維自動(dòng)化

2018-09-27 08:59:29

2016-04-06 10:02:23

手機(jī)微博運(yùn)維監(jiān)控

2014-05-16 14:31:55

運(yùn)維自動(dòng)化Cobbler

2019-03-15 10:13:10

運(yùn)維云計(jì)算運(yùn)營

2015-09-23 16:46:54

架構(gòu)監(jiān)控運(yùn)維自動(dòng)化

2019-03-19 08:41:38

Linux運(yùn)維變更

2022-02-08 10:21:17

運(yùn)維應(yīng)用監(jiān)控

2011-01-05 15:39:44

2018-07-23 09:24:08

Linux系統(tǒng)運(yùn)維運(yùn)維工程師

2015-09-21 13:41:47

高可用監(jiān)控系統(tǒng)運(yùn)維自動(dòng)化
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)

主站蜘蛛池模板: 色婷婷综合在线观看 | 九九热这里只有精品在线观看 | 久久合久久 | 在线播放中文 | 97视频在线观看网站 | 91在线精品秘密一区二区 | 理论片免费在线观看 | 国产高清在线精品一区二区三区 | 99视频在线免费观看 | 日本在线免费看最新的电影 | 成年精品| 二区三区av| 成人在线免费视频 | 日韩免| 欧美福利久久 | 国产精品免费视频一区 | 欧美性大战xxxxx久久久 | 天天操天天操 | 一区二区三区免费 | 欧美电影一区 | 亚洲精品一区二区 | 国产视频1区 | 在线观看免费av网站 | 久久精品视频网站 | 99热热热热 | 国产免费一级片 | 日本精品一区二区三区在线观看视频 | 欧美日韩一二区 | 欧美人成在线视频 | 欧美不卡一区二区 | 久久精品国产99国产精品 | 免费黄色片在线观看 | 午夜久久久 | 久久综合国产 | 久久国产高清 | 久久精品一二三影院 | 91视频一区 | 精品一区二区三区四区视频 | av手机在线看 | 99精品国产一区二区青青牛奶 | 羞羞视频免费在线观看 |