prometheus监控springboot应用简单使用介绍

采用prometheus监控springboot项目的应用

  • 对于springboot应用,需要以下几个步骤
    springboot应用开启endpoint,添加actuator的以来和promethus的依赖

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    
    <dependency>
      <groupId>io.micrometer</groupId>
      <artifactId>micrometer-registry-prometheus</artifactId>
    </dependency>
    

    在yml文件或者properties文件中,加入以下配置:

    management:
      endpoints:
        jmx:
          exposure:
            include: "*"
        web:
          exposure:
            include: "*"
      metrics:
        export:
          datadog:
            application-key: ${spring.application.name}
    

    这里需要注意是,*号是需要加双引号的。

    以上两个步骤完毕后,剩下的就是要加registry了:

    @Bean MeterRegistryCustomizer<MeterRegistry> configurer(
        @Value("${spring.application.name}") String applicationName) {
        return (registry) -> registry.
            config().
            commonTags("application", applicationName);
    }
    

    对于springboot的应用,到此基本完成了。接下来是启动promethus。

  • 配置prometheus
    首先要下在prometheus":Prometheus - Monitoring system & time series database"
    在下载页面,选择何时的版本下载,推荐下载tar.gz包。下载好后,进行解压。在合适的路径下即可。
    这里介绍下prometheus的目录和文件:
    1、prometheus采用的都是yml文件的配置方式。
    2、在根目录下,有个prometheus.yml配置文件,文件初始化的内容如下:

    global:
      scrape_interval:     15s   # 这个是每次数据手机的频率
      evaluation_interval: 15s   # 评估告警规则的频率。
    
    rule_files:
      # - "first.rules"
      # - "second.rules"
    
    scrape_configs:               # 通过这里的配置控制prometheus监控的资源
      - job_name: prometheus      # prometheus自身默认的
        static_configs:
          - targets: ['localhost:9090']  # 默认暴露的是9090端口服务
    

    global是全局配置。具体见上面的注释说明。

    3、添加我们的应用,对springboot进行监控

    - job_name: 'spring-sample'
        metrics_path: 'actuator/prometheus'    # 这里我们springboot暴露出来的endpoint
        scrape_interval: 5s                    # 信息收集时间是间隔5秒
        static_configs:
        - targets: ['localhost:8778']          # 这里是springboot暴露出来的地址和端口
    

    4、这些配置完成后,可以启动prometheus,./prometheus --config.file=prometheus.yml,服务即可启动。具体访问产检官网。

  • 配置grafana
    下载grafana,直接启动即可。
    1、启动命令参见官网:./grafana-server web
    2、配置datasource,选择prometheus。这个里面有个很重要的注意点,我看网上很多人在转如何用prometheus监控springboot应用,估计自己没去实际搭建,在interval这个时间上,默认是数字,比如15,代表是15秒。在添加dashboard的时候,会发现监控图标左上角是个红点,报错:Invalid interval string, expecting a number followed by one of "Mwdhmsy" ,这个错的解决方案就是在这些时间间隔后面加个"s"。问题解决。
    3、选择dashboard,import的里输入一个模板,可以去dashboards去找你对应的模板,我们这里选用jvm的4701模板,然后就能看到你的springboot的监控信息了。到此,整个搭建完成。

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • Prometheus对比Zabbix 和Zabbix类似,Prometheus也是一个近年比较火的开源监控框架,和...
    Cloudox_阅读 44,264评论 0 49
  • 前提 最近公司在联合运维做一套全方位监控的系统,应用集群的技术栈是SpringCloud体系。虽然本人没有参与具体...
    zhrowable阅读 7,307评论 0 22
  • Prometheus TSDB是什么? (Time Series Database) 简单的理解为.一个优化后用来...
    ilkkzm阅读 19,350评论 0 4
  • 最爱一个人坐厦门的公交了,特别是有座位的时候。屁股黏在椅子上,随着车子抖啊抖的,像一颗行星在宇宙里高冷地抖啊抖的。...
    贝龙阅读 16,159评论 66 29
  • 过年回家还没有休息够,就被家里逼着各种相亲,我知道26岁是到了结婚嫁人的年纪了,可是心里还是在排斥着。家里人都说:...
    懒极阅读 318评论 5 1

友情链接更多精彩内容