1、配置

  1. endpoints.jmx.domain: myapp
  2. endpoints.jmx.uniqueNames: true
  3. endpoints.auditevents.enabled: true

2、结果:

自定义Bean,通过JMX暴露

  1. package com.dxz.actuator;
  2.  
  3. import org.springframework.jmx.export.annotation.ManagedAttribute;
  4. import org.springframework.jmx.export.annotation.ManagedOperation;
  5. import org.springframework.jmx.export.annotation.ManagedResource;
  6. import org.springframework.stereotype.Component;
  7.  
  8. @Component
  9. @ManagedResource(objectName = "com.dxz.jmx:type=SimpleBean", description = "这里是描述")
  10. public class SimpleBean {
  11. private long id;
  12. private String name;
  13. private int age;
  14.  
  15. /**
  16. * 暴露属性
  17. */
  18. @ManagedAttribute(description = "这是属性id")
  19. public long getId() {
  20. return id;
  21. }
  22.  
  23. public void setId(long id) {
  24. this.id = id;
  25. }
  26.  
  27. /**
  28. * 暴露属性
  29. */
  30. @ManagedAttribute(description = "这是属性name")
  31. public String getName() {
  32. return name;
  33. }
  34.  
  35. public void setName(String name) {
  36. this.name = name;
  37. }
  38.  
  39. /**
  40. * 暴露属性
  41. */
  42. @ManagedAttribute(description = "这是属性age")
  43. public int getAge() {
  44. return age;
  45. }
  46.  
  47. public void setAge(int age) {
  48. this.age = age;
  49. }
  50.  
  51. /**
  52. * 暴露方法
  53. */
  54. @ManagedOperation(description = "这里是操作")
  55. public String display() {
  56. return this.toString();
  57. }
  58.  
  59. @Override
  60. public String toString() {
  61. return "SimpleBean{" + "id=" + id + ", name='" + name + '\'' + ", age=" + age + '}';
  62. }
  63. }

下面的controller为了测试,改变数据,

  1. package com.dxz.actuator;
  2.  
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.RequestParam;
  6. import org.springframework.web.bind.annotation.RestController;
  7.  
  8. @RestController
  9. public class JmxController {
  10. @Autowired
  11. private SimpleBean simpleBean;
  12.  
  13. @GetMapping("/jmx")
  14. public SimpleBean simpleBean(@RequestParam(required = false) Long id, @RequestParam(required = false) String name,
  15. @RequestParam(required = false) Integer age) {
  16. if (id != null) {
  17. simpleBean.setId(id);
  18. }
  19. if (name != null) {
  20. simpleBean.setName(name);
  21. }
  22. if (age != null) {
  23. simpleBean.setAge(age);
  24. }
  25. return simpleBean;
  26. }
  27. }

结果:

Springboot Actuator之九:actuator jmx endpoint的更多相关文章

  1. Springboot Actuator之八:actuator的执行原理

    本文接着<Springboot Actuator之七:actuator 中原生endpoint源码解析1>,前面主要分析了原生endpoint的作用. 现在着重了解actuator的执行原 ...

  2. SpringBoot系列(九)单,多文件上传的正确姿势

    SpringBoot系列(九)分分钟解决文件上传 往期推荐 SpringBoot系列(一)idea新建Springboot项目 SpringBoot系列(二)入门知识 springBoot系列(三)配 ...

  3. Springboot Actuator之七:actuator 中原生endpoint源码解析1

    看actuator项目的包结构,如下: 本文中的介绍Endpoints. Endpoints(端点)介绍 Endpoints 是 Actuator 的核心部分,它用来监视应用程序及交互,spring- ...

  4. Springboot监控之一:SpringBoot四大神器之Actuator之3-springBoot的监控和管理--指标说明

    Spring Boot包含很多其他的特性,它们可以帮你监控和管理发布到生产环境的应用.你可以选择使用HTTP端点,JMX或远程shell(SSH或Telnet)来管理和监控应用.审计(Auditing ...

  5. Spring Boot]SpringBoot四大神器之Actuator

    论文转载自博客: https://blog.csdn.net/Dreamhai/article/details/81077903 https://bigjar.github.io/2018/08/19 ...

  6. SpringBoot四大神器之Actuator

    介绍 Spring Boot有四大神器,分别是auto-configuration.starters.cli.actuator,本文主要讲actuator.actuator是spring boot提供 ...

  7. Springboot监控之一:SpringBoot四大神器之Actuator

    介绍 Spring Boot有四大神器,分别是auto-configuration.starters.cli.actuator,本文主要讲actuator.actuator是spring boot提供 ...

  8. SpringBoot整合Swagger和Actuator

    前言 本篇文章主要介绍的是SpringBoot整合Swagger(API文档生成框架)和SpringBoot整合Actuator(项目监控)使用教程. SpringBoot整合Swagger 说明:如 ...

  9. SpringBoot要点之使用Actuator监控

    Actuator是Springboot提供的用来对应用系统进行自省和监控的功能模块,借助于Actuator开发者可以很方便地对应用系统某些监控指标进行查看.统计等. 在pom文件中加入spring-b ...

随机推荐

  1. C#常用集合类的实现以及基本操作复杂度

    List 集合类是顺序线性表,Add操作是O(1)或是O(n)的,由于List的容量是动态扩容的,在未扩容之前,其Add操作是O(1),而在需要扩容的时候,会拷贝已存在的那些元素同时添加新的元素,此时 ...

  2. 5 LInux系统目录结构

      ls /    显示根目录下的文件 /bin bin是Binary的缩写,这个目录存放着经常使用的命令 /boot 存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文件 /de ...

  3. 服务刚启动就 Old GC,要闹哪样?

    1.背景 最近有个同学说他的服务刚启动就收到两次 Full GC 告警, 按道理来说刚启动,对象应该不会太多,为啥会触发 Full GC 呢? 带着疑问,我们还是先看看日志吧,毕竟日志的信息更多. 2 ...

  4. 线上IIS应用程序池自动关闭

    事情的经过是这样的: 下午下班的铃声已经敲响,我已经整装待发.突然同事说某水司的微信公众号不能正常访问了.点击营业厅,直接提示Service Unavailable. 立马远程服务器查看,IIS微信公 ...

  5. 【异常】The dependencies of some of the beans in the application context form a cycle

    一.异常出现场景以及异常信息 场景:SpringBoot中自定义DataSource数据源 异常信息: -- :: --- [ main] o.s.b.d.LoggingFailureAnalysis ...

  6. django迁移脚本

    执行migrate报错的解决办法: 想知道migrate为什么报错,需要先了解migrate到底做了什么事情 migrate做了什么事情? 1.将相关的迁移脚本翻译成sql语句,然后在数据库中执行 2 ...

  7. ROS官网新手级教程总结

    第 1 关卡:安装和配置 ROS 环境 目标:在计算机上安装和配置 ROS 环境. 安装 ROS 按照 ROS 安装说明进行安装. 管理环境 确定环境变量 ROS_ROOT 和 ROS_PACKAGE ...

  8. 第07节-开源蓝牙协议BTStack框架代码阅读(下)

    上篇博客中已经对BTStack框架进行了较为详细的说明,本篇博客将进一步总结一下(由韦大仙笔记所得). 可以从5个方面来理解BTStack的框架: 1.硬件操作:hci_transport_t BTS ...

  9. 转: 【前端福利】用grunt搭建自动化的web前端开发环境-完整教程

    http://blog.csdn.net/wangfupeng1988/article/details/46418203

  10. 1. vue 的安装

    兼容性 Vue 不支持 IE8 及以下版本,因为 Vue 使用了 IE8 无法模拟的 ECMAScript 5 特性.但它支持所有兼容 ECMAScript 5 的浏览器. 安装: 1.直接用 < ...