10

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

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

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

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

4

5 回答 5

4

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

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

于 2017-10-29T12:48:52.050 回答
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 是一个集成测试并将指标导出到云形成。

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

于 2017-08-13T04:55:18.757 回答
2

为此,我查阅了多个文件。他们中缺少某些东西。因此,我正在编写从您的 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();
于 2020-06-11T11:08:12.650 回答
1

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

于 2017-12-24T23:09:21.660 回答
-1

这是spring boot 2的设置。

使用弹簧靴 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>

应用程序.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
于 2018-06-26T16:02:13.010 回答