Springboot 与 Spring-cloud-aws 和 cloudwatch 指标

问题描述 投票:0回答:6

我想开始在我的 Springboot 应用程序中使用指标,并且我还想将它们发布到我的 amazon cloudwatch

我知道使用 Springboot 我们可以激活 spring-actuator,它提供内存指标并将其发布到 /metrics 端点。

我偶然发现 Spring-cloud 似乎有一些库可以定期将这些指标发布到 Cloudwatch,但是我不知道如何设置它们?绝对有0个如何使用它的例子。

任何人都可以解释一下将指标发送到cloudwatch的步骤是什么?

spring-boot metrics amazon-cloudwatch spring-cloud-aws
6个回答
5
投票

您可以在这里查看我的文章:

https://dkublik.github.io/2017/10/28/springboot-metrics-with-servo-and-aws-cloudwatch.html

我在我的项目中设置了这个之后写的。

来自标题:

“文章解释了如何将 Spring Boot 和 Netflix Servo 指标发送到 AWS CloudWatch。此外,它还描述了实现这一目标的机制。它还提到了我在尝试使用 Spring Boot 和 Spectator 执行相同操作时遇到的问题。”

编辑: 新版本: https://dkublik.github.io/2018/08/26/springboot-metrics-with-micrometer-and-aws-cloudwatch.html


5
投票

为此我查阅了多份文件。他们身上缺少了一些东西。因此,我正在编写从 Spring Boot 应用程序在 Cloudwatch 上设置自定义指标所需的所有内容。

设置这些属性:

management.metrics.export.cloudwatch.namespace=my-application
management.metrics.export.cloudwatch.batchSize=20
management.metrics.export.cloudwatch.step=5s

仔细提及命名空间。此名称将反映在您的 Cloudwatch 指标中。 cloudwatch 注册表的默认“步骤”是 1 分钟。所以你可以在这里更改它。

如果尚未存在,请将这些依赖项添加到您的 pom 中:

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-aws-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-aws-messaging</artifactId>
</dependency>

完成了。现在您将能够在 cloudwatch 上查看指标。 现在,如果您想将自定义指标推送到某处,则 Autowire MetricsRegistry 实例并简单地创建您想要的任何指标。

让我们创建一个用于发送短信的计数器,例如:

Counter smsCounter = Counter.builder(COUNT_METRICS)
            .tag("type", "sms")
            .description("The number of sms sent")
            .register(meterRegistry);

现在更新执行操作的计数器,如下所示:

smsCounter.increment();

3
投票

检查此对话

@sachinlad 不幸的是,文档确实丢失了,我们将 在下一个版本中创建更新版本。启用 metic 导出到Cloud Formation,您需要配置命名空间 具有属性 cloud.aws.cloudwatch.namespace

查看集成测试 https://github.com/spring-cloud/spring-cloud-aws/blob/master/spring-cloud-aws-integration-test/src/test/java/org/springframework/cloud/aws/metric/MetricExporterTest .java 这是一个集成测试并将指标导出到云形成。

希望对您有帮助,如有任何问题,请随时回来。


1
投票

如果您想要一个不涉及使用整个 Spring Cloud 库的现成解决方案,您可以使用:https://github.com/dipayan90/spring-actuator-cloudwatch


0
投票

我为此苦苦挣扎了几个小时。

除了执行器之外,您唯一需要的依赖项是

io.awspring.cloud:spring-cloud-aws-starter-metrics

然后在

application.properties
中,您需要使用
management.cloudwatch.metrics.export.namespace

设置命名空间

其他属性可以在官方文档中查看: https://docs.awspring.io/spring-cloud-aws/docs/3.2.0/reference/html/index.html#configuring-credentials


-1
投票

这是 Spring Boot 2 的设置。

使用Spring Boot 2.0.3。

添加这些依赖项:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-aws-actuator</artifactId>
    <version>2.0.0.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-aws</artifactId>
    <version>2.0.0.RELEASE</version>
</dependency>

application.yml:

# you might want to set this to true depending on your setup
cloud.aws.stack.auto: false
# set static region to avoid s3 error - adjust region accordingly
cloud.aws.region.static: eu-west-1

management:
  metrics.export.cloudwatch.namespace: my-app
  metrics.export.cloudwatch.batch-size: 20
© www.soinside.com 2019 - 2024. All rights reserved.