Skip to content

Commit

Permalink
Update metric submission end point (#109)
Browse files Browse the repository at this point in the history
api.datadoghq.com is Datadog's preferred submission end point for metrics. app.datadoghq.com will continue to work but does not offer a number of newer capabilities.
  • Loading branch information
irabinovitch authored May 5, 2020
1 parent b12b1a5 commit bb9f580
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class HttpTransport implements Transport {

private static final Logger LOG = LoggerFactory.getLogger(HttpTransport.class);

private final static String BASE_URL = "https://app.datadoghq.com/api/v1";
private final static String BASE_URL = "https://api.datadoghq.com/api/v1";
private final String seriesUrl;
private final int connectTimeout; // in milliseconds
private final int socketTimeout; // in milliseconds
Expand Down

0 comments on commit bb9f580

Please sign in to comment.