首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏TBDS & AI

    Springboot2 + Micrometer监控指标详解

    导读:springboot2 项目监控服务 ,采用Micormeter度量指标库,帮助我们监控应用程序的度量指标,并将其发送到Prometheus中。 监控指标有系统负载、内存使用情况、应用程序的响应时间、吞吐量、错误率等。micrometer 度量指标库,对springboot应用程序监控指标的采集主要体现在JVM的众多的监控项。1. JVM 常用监控指标图片2. .6process_cpu_usagegaugejava虚拟机进程的“最近CPU使用”The "recent cpu usage" for the Java Virtual Machine process7process_uptime_secondsgaugejava 可以通过监控Memory Pool的used值,定位内存分配频繁问题的代码位置。

    9.3K103编辑于 2023-03-23
  • 来自专栏一只程序原

    SpringBoot2核心技术-指标监控

    最常用的Endpoint Health:监控状况 Metrics:运行时指标 Loggers:日志记录 2、Health Endpoint 健康检查端点,我们一般用于在云平台,平台会定时的检查应用的健康状况 可以很容易的添加自定义的健康检查机制 3、Metrics Endpoint 提供详细的、层级的、空间指标信息,这些信息可以被pull(主动推送)或者push(被动获取)方式得到; 通过Metrics对接多种监控系统

    75710编辑于 2022-08-22
  • 来自专栏热度技术

    在Netdata里监控Springboot2应用运行情况

    Netdata是一款秒级数据收集与可视化呈现的Linux服务器性能监测工具,对优化应用性能,保证服务器健康运行有着极为重要的作用,它可以监控服务器的健康运行参数及状态,包括CPU,内存,网络,磁盘等常用的监控指标 以字节为单位) l 堆内存使用Old空间(以字节为单位) l Uptime 正常运行时间(以秒为单位) springboot2项目配置netdata 项目配置 在需要被监控springboot2项目pom netdata服务,其实还无法看到netdata监控springboot的监控图表出现,因为还缺少最后一步,启动springboot2监控: cd /usr/libexec/netdata/plugins.d /go.d.plugin -d -m springboot2 完成效果展示 总结 在这里,我简单介绍了netdata服务器监控软件的安装、单机监控以及集群服务监控的方式,同时,也根据实际工作中的经历, 给大家介绍了在netdata里如何监控springboot2的配置。

    1.4K10编辑于 2023-03-10
  • 来自专栏技术杂记

    Elasticsearch 监控7

    因为这是使用的自签名证书,所以访问过程中会提示此证书不可信,是否继续,我们要选择继续

    27610编辑于 2022-02-10
  • 来自专栏技术杂记

    RabbitMQ 监控7

    打开防火墙 需要打开以下端口以供访问 5672 : for amqp 25672 : for clustering 15672 : RabbitMQ Management for web [root@new-mq-node rabbitmq]# iptables -L -nv | grep 5672 [root@new-mq-node rabbitmq]# grep 5672 /etc/sysconfig/iptables [root@new-mq-node rabbitmq]# vim /etc/sys

    29520编辑于 2022-02-09
  • 来自专栏code1029

    Springboot2

    参考:https://www.yuque.com/leifengyang/springboot2 参考:https://www.bilibili.com/video/BV19K4y1L7MT? 配置文件 5.1 SpringBoot2核心技术-核心功能 5.2 文件类型 5.2.1 properties 同以前的properties用法 5.2.2 yaml YAML 是 "YAML Ain't

    77651编辑于 2023-04-25
  • 来自专栏Ryan Miao

    Springboot2 Metrics之actuator集成influxdb, Grafana提供监控和报警

    到目前为止,各种日志收集,统计监控开源组件数不胜数,即便如此还是会有很多人只是tail -f查看一下日志文件。 return new HealthCheckStatusSetter(healthMetrics, healthEndpoint); } Redis cache命中率统计 整套metrics监控是基于 监控告警 Grafana提供了alert功能,当查询的指标不满足阈值时,发出告警。 ? 选择influxdb or Prometheus ?

    2.4K40发布于 2019-06-22
  • 来自专栏solate 杂货铺

    go监控方案(7) -- 实现

    传输使用UDP, 仿StatsD上传采集数据, InfluxDB进行数据存储, Grafana进行展示。

    75310发布于 2019-07-22
  • 来自专栏Java后端开发博客

    SpringBoot2 快速入门

    # SpringBoot2 快速入门 # 系统要求 Java8&兼容Java14 Maven3.3及以上 idea 2019.1.2 # maven设置 <mirrors> <mirror> HelloController { @RequestMapping("/hello") //映射请求 public String handle01(){ return "Hello,SpringBoot2

    98240编辑于 2022-12-25
  • 来自专栏码匠的流水账

    聊聊springboot2的LoggersEndpoint

    序 本文主要研究下springboot2的LoggersEndpoint 实例 GET /actuator/loggers { "levels": [ "OFF", "ERROR", "WARN

    99520发布于 2018-09-17
  • 来自专栏码匠的流水账

    聊聊springboot2的MappingsEndpoint

    序 本文主要研究下springboot2的MappingsEndpoint MappingsEndpointAutoConfiguration spring-boot-actuator-autoconfigure RouterFunctionMappingDescriptionProvider、UrlHandlerMappingDescriptionProvider这三个来获取HandlerMappingDescriptionProvider 小结 springboot2

    56510发布于 2018-09-17
  • 来自专栏算法之名

    Springboot2整合Kafka

    依赖 <dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId> </dependency> 配置 spring: kafka: bootstrap-servers: 外网ip:9092 producer: retries: 0 batch-size: 16384 buffer-memory: 33554432

    70760发布于 2021-01-18
  • 来自专栏十二的树洞

    02、SpringBoot2入门

    1、系统要求 Java 8 & 兼容java14 . Maven 3.3+ idea(最好2019版本以上) 1.1、maven设置 <mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/publi

    37710编辑于 2021-12-24
  • 来自专栏Java后端开发博客

    SpringBoot2 常用注解

    # SpringBoot2 常用注解 @SpringBootApplication @EnableAutoConfiguration @ImportResource @Value @ConfigurationProperties

    59810编辑于 2022-12-25
  • 来自专栏sunsky

    systemd - CentOS 7进程守护&监控

    需求: 运行环境为CentOS 7系统,我们开发了一个程序,需要在开机时启动它,当程序进程crash或者开机之后,守护进程立即拉起进程。 解决方案: 使用CentOS 7中的init进程systemd systemd简介 Linux Init & CentOS systemd Linux一直以来采用init进程。 Centos7 systemd 与以上都不同。所有进程无论有无依赖关系则都是并行启动(当然很多时候进程没有真正启动而是只有一个信号或者说是标记而已,在真正利用的时候才会真正启动。) Centos 7里systemd代替了init,成为了系统的第一个进程。PID为1.其他所有的进程都是它的子进程。 创建被监控脚本 $ cd ~ $ vim test_init_watch.sh //脚本任务:间隔一秒钟输出一个date时间戳到指定到指定文件 #!

    2.9K20发布于 2020-08-20
  • 来自专栏运维前线

    CentOS 7 安装osquery监控系统

    它使得底层操作系统分析和监控性能更加直观 项目主页:http://osquery.io/ 代码托管地址:https://github.com/facebook/osquer osquery 安装 [root @linuxprobe~]# yum -y install https://osquery-packages.s3.amazonaws.com/centos7/noarch/osquery-s3-centos7 +----------+-------+-------+-------+-------+----------+---------------+----------+ | CentOS Linux | 7 (Core) | 7 | | | | centos | rhel fedora | | +--------------+------ -+--------+-----+---------+-------+-------+------------+ # to quit shell, push Ctrl+D osquery> 定时监控设置

    1.5K11发布于 2019-05-26
  • 来自专栏运维民工

    Centos7安装ganglia监控

    简介: Centos7安装ganglia监控 参考链接 Ganglia上的gpu监测配置 (Ubuntu) - 知乎 (zhihu.com) How to Install Ganglia on CentOS 7 - slothparadise Setup Real-Time Monitoring using Ganglia on Centos 7 | by Mohammad Hanif | Medium 环境说明 ganglia服务器 -- centos7 ganglia客户端 -- ubuntu1804 安装步骤 服务端安装步骤 先安装epel仓库 yum install epel-release - true } tcp_accept_channel { } ··· 启动服务 /etc/init.d/ganglia-monitor start 客户端添加nvidia gpu插件 安装nvidia gpu监控插件

    76930编辑于 2022-06-30
  • 来自专栏pandacode_cn

    SpringBoot2集成Swagger

    SpringBoot引入Swagger的maven库之前,需要先引入springboot-web的maven,否则没有效果。

    1.3K20编辑于 2023-07-17
  • 来自专栏SpringBoot

    springboot2 启动后执行代码

    版权声明:本文为博主原创文章,未经博主允许不得转载。 本例实现方法 ApplicationRunner @Component @Order(10) // 执行顺序 public class InitSocket implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception { //TODO } } @Compo

    1.3K20发布于 2018-11-05
  • 来自专栏卯金刀GG

    SpringBoot2 微信支付实例】

    [CDATA[wx7a5088333e7a7234]]></appid>\n" + "<attach><! [CDATA[82569575@qq.com,7]]></attach>\n" + "<bank_type><! [CDATA[BDA7CBAA80954C531F5E100559A34992]]></sign>\n" + "<time_end><! "cash_fee":"1","out_trade_no":"2019081411420931412345679", "appid":"wx7a5088333e7a7234

    1.5K10发布于 2020-03-19
领券