一:Spring Boot Actuator
創(chuàng)新互聯(lián)建站于2013年開始,先為興化等服務建站,興化等地企業(yè),進行企業(yè)商務咨詢服務。為興化企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。
Spring-boot-actuator 可在將應用程序投入生產(chǎn)時監(jiān)視和管理應用程序??梢赃x擇使用 HTTP 端點或 JMX 來管理和監(jiān)控應用程序
Spring boot 應用中引入 Spring-boot-actuator
org.springframework.boot spring-boot-starter-actuator
3.application.yml文件配置
# management management: endpoints: web: exposure: include: "*" endpoint: health: show-details: ALWAYS
4.Spring Boot Actuator內(nèi)置Endpoints
二: Prometheus
將Micrometer Prometheus 注冊添加到Spring Boot應用。
io.micrometer micrometer-registry-prometheus
2.Docker 拉取 Prometheus鏡像
docker pull prom/prometheus
3. Prometheus 配置文件
# my global config global: scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. # scrape_timeout is set to the global default (10s). # Load rules once and periodically evaluate them according to the global 'evaluation_interval'. rule_files: # - "first_rules.yml" # - "second_rules.yml" # A scrape configuration containing exactly one endpoint to scrape: # Here it's Prometheus itself. 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: ['127.0.0.1:9090'] - job_name: 'spring-actuator' metrics_path: '/mybatis/actuator/prometheus' scrape_interval: 5s static_configs: - targets: ['112.74.105.178:8888']
4.運行 Prometheus容器
docker run -d --name=prometheus -p 9090:9090 -v /mnt/demo/prometheus.yml:/etc/prometheus/prometheus.yml prom/prometheus --config.file=/etc/prometheus/prometheus.yml
5.查看 Prometheus運行情況
三:Grafana
Docker 運行Grafana鏡像
docker run -d --name=grafana -p 3000:3000 grafana/grafana
2. Grafana 配置 Prometheus數(shù)據(jù)源
3.監(jiān)控dashboard