[ Spring ] Integrate Spring Boot Service Monitor Prometheus and Grafana

文章目录

          • [Install Prometheus Server](#Install Prometheus Server)
          • [Install Grafana Server](#Install Grafana Server)
          • [Spring Prometheus Project](#Spring Prometheus Project)
          • [Spring Prometheus Properties](#Spring Prometheus Properties)
          • [Spring Prometheus Application](#Spring Prometheus Application)
          • [Spring Prometheus Configuration](#Spring Prometheus Configuration)
          • [Spring Prometheus Controller](#Spring Prometheus Controller)
          • [Configure Grafana Dash Board](#Configure Grafana Dash Board)
Install Prometheus Server
properties 复制代码
# download package
https://github.com/prometheus/prometheus/releases/download/v3.1.0/prometheus-3.1.0.linux-amd64.tar.gz
properties 复制代码
# edit prometheus config
prometheus-linux-amd64/prometheus.yml
yaml 复制代码
scrape_configs:
  - job_name: "prometheus"
    metrics_path: '/actuator/prometheus'
    scheme: 'http'
    static_configs:
      - targets: ["localhost:10003"]
properties 复制代码
# run server
sudo ./prometheus
properties 复制代码
# visit admin page
http://localhost:9090
Install Grafana Server
properties 复制代码
# download package
https://dl.grafana.com/enterprise/release/grafana-enterprise-11.5.0.linux-amd64.tar.gz
properties 复制代码
# run server
sudo bin/grafana server
properties 复制代码
# visit admin page
http://localhost:3000 admin/admin
Spring Prometheus Project
kotlin 复制代码
pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}

dependencyResolutionManagement {
    repositoriesMode = RepositoriesMode.PREFER_SETTINGS
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}

buildscript {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}

plugins {
    id("org.jetbrains.kotlin.jvm") version "2.0.21" apply false
    id("org.jetbrains.kotlin.kapt") version "2.0.21" apply false
    id("org.jetbrains.kotlin.plugin.spring") version "2.0.21" apply false
    id("org.springframework.boot") version "3.4.1" apply false
}

include("prometheus-app")
Spring Prometheus Properties
properties 复制代码
# service
server.port=10003
spring.application.name=prometheus-app
spring.profiles.active=dev
spring.devtools.add-properties=false
management.endpoints.web.exposure.include=*
# prometheus
management.prometheus.metrics.export.enabled=true
Spring Prometheus Application
kotlin 复制代码
package x.spring.hello

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication

@SpringBootApplication
class PrometheusApplication

fun main(args: Array<String>) {
    runApplication<PrometheusApplication>(*args)
}
Spring Prometheus Configuration
kotlin 复制代码
package x.spring.hello.component

import io.micrometer.core.instrument.Counter
import io.micrometer.core.instrument.MeterRegistry
import org.springframework.beans.factory.annotation.Value
import org.springframework.context.annotation.Bean
import org.springframework.stereotype.Component

@Component
class MetricsProvider {

    @Bean(name = ["count"])
    fun getCounterMetrics(
        registry: MeterRegistry,
        @Value("\${spring.application.name}") name: String
    ): Counter {
        return registry.counter("count_api_calling_times", "application", name)
    }
}
Spring Prometheus Controller
kotlin 复制代码
package x.spring.hello.controller

import io.micrometer.core.instrument.Counter
import jakarta.annotation.Resource
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController

@RestController
class MetricsController {

    @Resource(name = "count")
    private lateinit var counterMetrics: Counter

    @GetMapping("/count")
    fun count(): String {
        counterMetrics.increment()
        return "count_api_calling_times_total +1"
    }
}
Configure Grafana Dash Board
properties 复制代码
# add data source
Connections -> Data Sources -> Add Data Source -> Prometheus
settings.name=prometheus
connection.url=http://localhost:9090
properties 复制代码
# create dash board
Dashboards -> Create Dashboard -> Add Visualization -> Add Queries -> Run Queries
datasource=prometheus
metrics=count_api_calling_times_total
相关推荐
向阳2564 分钟前
SpringBoot+vue前后端分离整合sa-token(无cookie登录态 & 详细的登录流程)
java·vue.js·spring boot·后端·sa-token·springboot·登录流程
XiaoLeisj21 分钟前
【MyBatis】深入解析 MyBatis XML 开发:增删改查操作和方法命名规范、@Param 重命名参数、XML 返回自增主键方法
xml·java·数据库·spring boot·sql·intellij-idea·mybatis
风象南22 分钟前
SpringBoot实现数据库读写分离的3种方案
java·spring boot·后端
CryptoPP1 小时前
springboot 对接马来西亚数据源API等多个国家的数据源
spring boot·后端·python·金融·区块链
清风絮柳1 小时前
52.个人健康管理系统小程序(基于springboot&vue)
vue.js·spring boot·毕业设计·前后端分离·健康管理系统·个人健康管理系统·个人健康管理小程序
forestsea2 小时前
使用 Spring Boot 和 GraalVM 的原生镜像
java·spring boot·spring native·原生映像
爱的叹息3 小时前
Spring Boot 集成Redis 的Lua脚本详解
spring boot·redis·lua
苹果酱05673 小时前
Golang标准库——runtime
java·vue.js·spring boot·mysql·课程设计
martian6653 小时前
Spring Boot后端开发全攻略:核心概念与实战指南
java·开发语言·spring boot
跟着珅聪学java5 小时前
spring boot +Elment UI 上传文件教程
java·spring boot·后端·ui·elementui·vue