spring-boot-actuator 相关问题

Spring Boot Actuator是Spring Boot的子项目。它为您的应用程序添加了多种生产级服务,而您只需付出很少的努力。

使用调度程序的Spring Boot Shutdown

我正在使用Spring Boot + Spring Task Scheduler创建一个轮询应用程序。我计划在维护窗口期间使用执行器关闭应用程序(请参阅执行器的关闭终点:......

回答 2 投票 0

spring boot刷新没有配置服务器的属性文件

我想在spring boot中刷新属性文件。版本 - 2.1.4.RELEASE如果是春天配置服务器必须将我的所有应用程序连接到我不想要的配置服务器,因为我们的应用程序在...

回答 1 投票 -1

Spring Boot Actuator Endpoints安全性不适用于自定义Spring Security配置

这是我的Spring Boot 1.5.1 Actuator application.properties:#Spring Boot Actuator management.contextPath:/ actuator management.security.roles = R_0这是我的WebSecurityConfig:@Configuration @ ...

回答 4 投票 9

隐藏Spring Boot Actuator中健康指示器的详细信息

我正在使用执行器的Spring Boot健康指示器。到目前为止,示例响应如下:{“status”:“DOWN”,“details”:{“diskSpace”:{“status”:“UP”,“details”:{...

回答 2 投票 1

Spring启动禁用Custom HealthIndicator

我已经创建了一个自定义的HealthIndicator,我想在生产中禁用它,直到我们完全上线。我知道有一个属性可以禁用默认的健康指标(management.health.defaults ....

回答 2 投票 1

不监视特定的数据源以进行运行状况检查

我想知道是否存在一些方法来禁止SpringBoot Actuator监视特定数据源。场景:一个微服务使用3个数据源,但对于某些业务原因,一个......

回答 2 投票 4

使用Spring Boot Actuator计算每秒的请求数

我想计算Spring Boot 2应用程序中特定URL的每秒请求数,以及每个请求所花费的时间(延迟)(以毫秒为单位)。我们可以看到以下......

回答 1 投票 0

Hystrix状态未在/ health下公开

根据https://cloud.spring.io/spring-cloud-netflix/multi/multi__circuit_breaker_hystrix_clients.html,我的应用程序应该在/ health下提供hystrix数据。尽管断路器......

回答 2 投票 0

为什么我在CloudFoundry中缺少Spring Actuator 2端点,而相同的设置在本地工作?

我正在SAP Cloud Foundry上部署一个应用程序,其中嵌入了Spring Actuator 2.0,但端点没有按预期显示。仅启用默认值(运行状况,信息)。一样......

回答 1 投票 0

Spring Boot 2 - 执行器指标端点不起作用

在我的Spring Boot App(2.0.0.M7)application.properties中我设置了management.endpoint.metrics.enabled = true然而,当我点击localhost:8080 / actuator / metrics时,我得到404.是什么解决方案?

回答 8 投票 17

Spring Boot 2健康端点JSON格式已更改

我们最近在我们的一个应用程序中将Spring-Boot版本升级到2.1.2。当我点击此URL时,我注意到JSON格式发生了变化:http:// localhost:xxxx / health。改变的结构是:{...

回答 1 投票 1

spring-boot-actuator是否会改变弹簧应用的上下文根?

根据这篇文章,通过在pom.xml中使用spring-boot-actuator依赖性,我可以从执行器端点中受益。但是,我发现它打破了我现有的弹簧应用程序(它是...

回答 1 投票 0

如何读取和复位弹簧执行器指标?

我正在使用spring-boot.1.3.0,它提供了在内存中存储自定义指标的功能,如下所示:@Service public class MyService {private CounterService counterService;私人GaugeService ...

回答 3 投票 3

度量标准名称已存在 - 度量标准注册表

我使用度量标准注册表将度量标准记录到jmx中。我使用下面的代码protected void submitMetric(String metricName,long value){mr.register(metricName,new Gauge)

回答 1 投票 0

使用@Value访问Spring Boot Actuator build.version属性

这应该很简单,但不起作用。我在Spring Boot(2.0.1-RELEASE)应用程序中激活了spring-boot-actuator。执行器 - 端点/执行器/信息按预期工作,并显示...

回答 3 投票 0

Java Web应用程序中的Web服务的运行状况检查和监视

我需要监控并稍后生成有关所用时间,服务被击中次数等的报告。这应该是动态的。我的Java Web应用程序基于Jetty嵌入式...

回答 2 投票 0

如何使弹簧执行器从多个应用程序中收集指标

我有一个由多个容器组成的容器,每个容器都运行一个应用程序。如何启用执行器以从这些应用程序中获取指标。我找不到办法做到这一点。有 ...

回答 1 投票 0

Hystrix的健康终点不可用

我正在尝试使用Spring Booter模式和Spring Boot以及Netflix的Hystrix实现,我正在努力访问其健康端点。文档提到它应该可用...

回答 2 投票 0

无法访问Spring Boot Actuator“/执行器”端点

我能够访问端点,如http:// localhost:8081 / health,/ status,/ env,/ metrics,/ shutdown但不能访问/ actuator或/ loginfo端点。低于例外。 { “时间戳”:1455929182552,“...

回答 12 投票 16

无法实现弹簧启动执行器定制健康指示器

我试过按照文档,但每次检查时我只看到“status:UP”。我甚至普遍返回Health.down.build(),但我仍然只看到“状态:向上”。我不是 ...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.