Prometheus 啟動參數可以通過命令行參數或者配置文件進行設置。以下是一些常用的啟動參數設置方式:
./prometheus --web.listen-address=:9090 --storage.tsdb.path=/path/to/data --config.file=/path/to/prometheus.yml
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'node'
static_configs:
- targets: ['localhost:9100']
然后通過以下命令啟動 Prometheus,并使用該配置文件:
./prometheus --config.file=/path/to/prometheus.yml
除了以上例子中的參數設置方式,還可以通過環境變量、標志等方式設置 Prometheus 的啟動參數。更多詳細的啟動參數設置方式請參考 Prometheus 官方文檔。