From 08533c79e07998be64a560969edf500eece0a2c4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sat, 4 Apr 2020 14:59:06 +0200 Subject: [PATCH] Update default value for Datadog's default uri See gh-20833 --- .../metrics/export/datadog/DatadogProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/DatadogProperties.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/DatadogProperties.java index f042358d641..139c16fd983 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/DatadogProperties.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/DatadogProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 the original author or authors. + * Copyright 2012-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,7 +56,7 @@ public class DatadogProperties extends StepRegistryProperties { * URI to ship metrics to. If you need to publish metrics to an internal proxy * en-route to Datadog, you can define the location of the proxy with this. */ - private String uri = "https://app.datadoghq.com"; + private String uri = "https://api.datadoghq.com"; public String getApiKey() { return this.apiKey;