zoukankan      html  css  js  c++  java
  • Spring Boot Actuator 的基本用法

    Actuator 简介

    Spring Boot Actuator 的关键特性是在应用程序里提供众多 Web 端点,通过它们了解应用程序运行时的内部状况。

    Actuator 提供了 13 个端点,具体如下表示:

    在 2.X 版本中,部分端点有所改变,在浏览器访问 http://localhost:8080/actuator, 列出了所有可访问端点:

    {
      "_links" : {
        "self" : {
          "href" : "http://localhost:8080/actuator",
          "templated" : false
        },
        "beans" : {
          "href" : "http://localhost:8080/actuator/beans",
          "templated" : false
        },
        "caches-cache" : {
          "href" : "http://localhost:8080/actuator/caches/{cache}",
          "templated" : true
        },
        "caches" : {
          "href" : "http://localhost:8080/actuator/caches",
          "templated" : false
        },
        "health" : {
          "href" : "http://localhost:8080/actuator/health",
          "templated" : false
        },
        "health-path" : {
          "href" : "http://localhost:8080/actuator/health/{*path}",
          "templated" : true
        },
        "info" : {
          "href" : "http://localhost:8080/actuator/info",
          "templated" : false
        },
        "conditions" : {
          "href" : "http://localhost:8080/actuator/conditions",
          "templated" : false
        },
        "configprops" : {
          "href" : "http://localhost:8080/actuator/configprops",
          "templated" : false
        },
        "env" : {
          "href" : "http://localhost:8080/actuator/env",
          "templated" : false
        },
        "env-toMatch" : {
          "href" : "http://localhost:8080/actuator/env/{toMatch}",
          "templated" : true
        },
        "loggers" : {
          "href" : "http://localhost:8080/actuator/loggers",
          "templated" : false
        },
        "loggers-name" : {
          "href" : "http://localhost:8080/actuator/loggers/{name}",
          "templated" : true
        },
        "heapdump" : {
          "href" : "http://localhost:8080/actuator/heapdump",
          "templated" : false
        },
        "threaddump" : {
          "href" : "http://localhost:8080/actuator/threaddump",
          "templated" : false
        },
        "metrics-requiredMetricName" : {
          "href" : "http://localhost:8080/actuator/metrics/{requiredMetricName}",
          "templated" : true
        },
        "metrics" : {
          "href" : "http://localhost:8080/actuator/metrics",
          "templated" : false
        },
        "scheduledtasks" : {
          "href" : "http://localhost:8080/actuator/scheduledtasks",
          "templated" : false
        },
        "mappings" : {
          "href" : "http://localhost:8080/actuator/mappings",
          "templated" : false
        }
      }
    }
    

    Actuator 的使用

    1、添加依赖

    <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    

    2、application.yml 配置文件

    # 声明暴露出所有接口
    management:
      endpoints:
        web:
          exposure:
            include: "*"
    # JSON 打印输出
    spring:
      jackson:
        serialization:
          indent_output: true
    

    注意,不要使用 application.properties 配置文件,会报一些奇怪的错误。

    3、访问各个 web 端点,获取应用运行信息

    示例,访问 http://localhost:8080/actuator/beans,获得 Spring 容器中的所有 beans ,以及他们的关系:

    {
      "contexts" : {
        "application" : {
          "beans" : {
            "spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties" : {
              "aliases" : [ ],
              "scope" : "singleton",
              "type" : "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties",
              "resource" : null,
              "dependencies" : [ ]
            },
            "endpointCachingOperationInvokerAdvisor" : {
              "aliases" : [ ],
              "scope" : "singleton",
              "type" : "org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor",
              "resource" : "class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/EndpointAutoConfiguration.class]",
              "dependencies" : [ "environment" ]
            },
            "defaultServletHandlerMapping" : {
              "aliases" : [ ],
              "scope" : "singleton",
              "type" : "org.springframework.web.servlet.HandlerMapping",
              "resource" : "class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]",
              "dependencies" : [ ]
            },
            "metricsRestTemplateCustomizer" : {
              "aliases" : [ ],
              "scope" : "singleton",
              "type" : "org.springframework.boot.actuate.metrics.web.client.MetricsRestTemplateCustomizer",
              "resource" : "class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/client/RestTemplateMetricsConfiguration.class]",
              "dependencies" : [ "simpleMeterRegistry", "restTemplateExchangeTagsProvider", "management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties" ]
            },
    ...
    
    }
    

    参考文档

    Spring Boot Actuator Web API Documentation

    spring boot 中使用 actuator 404的问题

    漂亮打印Spring Boot Actuator端点的JSON输出

  • 相关阅读:
    WIA Property Constant Definitions
    未能导入activex控件,请确保它正确注册"的完美解决方案
    ILSpy反编译工具的使用
    WIA
    在C#中使用WIA获取扫描仪数据
    在C#中使用WIA获取扫描仪数据(利用Filter处理图片)
    VS2010中,无法嵌入互操作类型“……”,请改用适用的接口的解决方法
    怎么添加项目到SVN上面
    数学家帮你找出最佳求职者 你只要先淘汰前37%的人
    程序员7大软技能测验 你得几分?
  • 原文地址:https://www.cnblogs.com/youcoding/p/13802946.html
Copyright © 2011-2022 走看看