SpringBoot使用prometheus監(jiān)控

本文介紹SpringBoot如何使用Prometheus配合Grafana監(jiān)控宾符。

1.關(guān)于Prometheus

Prometheus是一個(gè)根據(jù)應(yīng)用的metrics來進(jìn)行監(jiān)控的開源工具。相信很多工程都在使用它來進(jìn)行監(jiān)控,有關(guān)詳細(xì)介紹可以查看官網(wǎng):https://prometheus.io/docs/introduction/overview/驹碍。

2.有關(guān)Grafana

Grafana是一個(gè)開源監(jiān)控利器唤冈,如圖所示伦糯。

image

從圖中就可以看出來够庙,使用Grafana監(jiān)控很高大上,提供了很多可視化的圖標(biāo)蓝纲。

官網(wǎng)地址:https://grafana.com/

3.SpringBoot使用Prometheus

3.1 依賴內(nèi)容

在SpringBoot中使用Prometheus其實(shí)很簡單阴孟,不需要配置太多的東西,在pom文件中加入依賴税迷,完整內(nèi)容如下所示永丝。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.dalaoyang</groupId>
    <artifactId>springboot2_prometheus</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>springboot2_prometheus</name>
    <description>springboot2_prometheus</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.micrometer</groupId>
            <artifactId>micrometer-registry-prometheus</artifactId>
            <version>1.1.3</version>
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

3.2 配置文件

配置文件中加入配置,這里就只進(jìn)行一些簡單配置翁狐,management.metrics.tags.application屬性是本文配合Grafana的Dashboard設(shè)置的,如下所示:

spring.application.name=springboot_prometheus
management.endpoints.web.exposure.include=*
management.metrics.tags.application=${spring.application.name}

3.3 設(shè)置application

修改啟動(dòng)類凌蔬,如下所示.

@SpringBootApplication
public class Springboot2PrometheusApplication {

    public static void main(String[] args) {
        SpringApplication.run(Springboot2PrometheusApplication.class, args);
    }
    @Bean
    MeterRegistryCustomizer<MeterRegistry> configurer(
            @Value("${spring.application.name}") String applicationName) {
        return (registry) -> registry.config().commonTags("application", applicationName);
    }
}

SpringBoot項(xiàng)目到這里就配置完成了露懒,啟動(dòng)項(xiàng)目闯冷,訪問http://localhost:8080/actuator/prometheus,如圖所示懈词,可以看到一些度量指標(biāo)蛇耀。

image

4.Prometheus配置

4.1 配置應(yīng)用

在prometheus配置監(jiān)控我們的SpringBoot應(yīng)用,完整配置如下所示坎弯。

# 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).

# Alertmanager configuration
alerting:
  alertmanagers:
  - static_configs:
    - targets:
      # - alertmanager:9093

# 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:
  - job_name: 'prometheus'
    static_configs:
    - targets: ['127.0.0.1:9090']
###以下內(nèi)容為SpringBoot應(yīng)用配置
  - job_name: 'springboot_prometheus'
    scrape_interval: 5s
    metrics_path: '/actuator/prometheus'
    static_configs:
      - targets: ['127.0.0.1:8080']

4.2 啟動(dòng)Prometheus

啟動(dòng)Prometheus纺涤,瀏覽器訪問,查看Prometheus頁面抠忘,如圖所示撩炊。

image

點(diǎn)擊如圖所示位置,可以查看Prometheus監(jiān)控的應(yīng)用崎脉。

image

列表中UP的頁面為存活的實(shí)例拧咳,如圖所示。

image

也可以查看很多指數(shù)囚灼,如下所示骆膝。

image

5.Grafana配置

啟動(dòng)Grafana,配置Prometheus數(shù)據(jù)源灶体,這里以ID是4701的Doshboard為例(地址:https://grafana.com/dashboards/4701)如圖阅签。

image

在Grafana內(nèi)點(diǎn)擊如圖所示import按鈕

image

在如圖所示位置填寫4701,然后點(diǎn)擊load蝎抽。

image

接下來導(dǎo)入Doshboard政钟。

image

導(dǎo)入后就可以看到我們的SpringBoot項(xiàng)目對應(yīng)的指標(biāo)圖表了,如圖织中。

image

6.源碼

源碼地址:https://gitee.com/dalaoyang/springboot_learn/tree/master/springboot2_prometheus

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末锥涕,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子狭吼,更是在濱河造成了極大的恐慌层坠,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件刁笙,死亡現(xiàn)場離奇詭異破花,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)疲吸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門座每,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人摘悴,你說我怎么就攤上這事峭梳。” “怎么了?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵葱椭,是天一觀的道長捂寿。 經(jīng)常有香客問我,道長孵运,這世上最難降的妖魔是什么秦陋? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮治笨,結(jié)果婚禮上驳概,老公的妹妹穿的比我還像新娘。我一直安慰自己旷赖,他們只是感情好顺又,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著杠愧,像睡著了一般待榔。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上流济,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天锐锣,我揣著相機(jī)與錄音,去河邊找鬼绳瘟。 笑死雕憔,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的糖声。 我是一名探鬼主播斤彼,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼蘸泻!你這毒婦竟也來了琉苇?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤悦施,失蹤者是張志新(化名)和其女友劉穎并扇,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體抡诞,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡穷蛹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了昼汗。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片肴熏。...
    茶點(diǎn)故事閱讀 38,814評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖顷窒,靈堂內(nèi)的尸體忽然破棺而出蛙吏,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布鸦做,位于F島的核電站璧疗,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏馁龟。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一漆魔、第九天 我趴在偏房一處隱蔽的房頂上張望坷檩。 院中可真熱鬧,春花似錦改抡、人聲如沸矢炼。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽句灌。三九已至,卻和暖如春欠拾,著一層夾襖步出監(jiān)牢的瞬間胰锌,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工藐窄, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留资昧,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓荆忍,卻偏偏與公主長得像格带,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子刹枉,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容