gpt4 book ai didi

Java Spring Boot Actuator Metrics系统负载平均值返回-1

转载 作者:行者123 更新时间:2023-12-01 09:28:27 26 4
gpt4 key购买 nike

我是 Spring Boot Actuator Metrics 的新用户,我需要确定系统的 CPU 利用率。/metrics url 确实为我提供了其余的详细信息,但是 systemload.average 返回 -1 (如果负载平均值不可用,则返回 -1)。你能让我知道我错在哪里以及如何纠正吗?我正在使用 Maven 和 Eclipse IDE (Mars)。我正在访问本地主机本身的指标详细信息。 url 是 http://localhost:8080/details/metrics (用于上下文路径的详细信息)

这是我的代码:应用程序.java 文件包 spring.boot.admin.actuator;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.PropertySource;

@EnableAutoConfiguration
@ComponentScan
@PropertySource(value = "classpath:application.properties")
public class Application{

public static void main(final String[] args) {
SpringApplication.run(Application.class, args);
}
}

POM 文件4.0.0

  <groupId>spring.boot.admin</groupId>
<artifactId>actuator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>actuator</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.7.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

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

</dependencies>
</project>

**application.properties file**

management.port=8080
management.context-path=/details
management.security.enabled=true

endpoints.health.enabled=false

security.basic.enabled=true
security.user.name=admin
security.user.password=admin

endpoints.health.id=health
endpoints.health.sensitive=true
endpoints.health.enabled=true

endpoints.metrics.id=metrics
endpoints.metrics.sensitive=true
endpoints.metrics.enabled=true

endpoints.server.id=server
endpoints.server.sensitive=false
endpoints.server.enabled=true

endpoints.info.id=info
endpoints.info.sensitive=false
endpoints.info.enabled=true
info.app.name=Spring Actuator Example
info.app.description=Spring Actuator Working Examples
info.app.version=0.0.1-SNAPSHOT
management.security.enabled=true

enter image description here

最佳答案

systemload.average返回 JVM 通过 OperatingSystem MBean 返回的内容(在 java.lang 树节点中提供)。使用 JConsole 或 VisualVM 中的 VisualVM-Beans 插件查看返回的内容。

如果 SystemLoadAverage 的值属性是相同的,这不是 Spring Boot 或您对 Spring Boot 的使用的错误。

关于Java Spring Boot Actuator Metrics系统负载平均值返回-1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39654056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com