From c3bc4bc8e6d5bc39b9ed20ae809840af43d36149 Mon Sep 17 00:00:00 2001 From: Florian JUDITH Date: Tue, 6 Feb 2024 10:57:26 -0500 Subject: [PATCH 1/2] Fixed documentation of Dynatrace plugin configuration options Signed-off-by: Florian JUDITH --- plugins/dynatrace/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/dynatrace/README.md b/plugins/dynatrace/README.md index 5e2394cee3..73ac545265 100644 --- a/plugins/dynatrace/README.md +++ b/plugins/dynatrace/README.md @@ -62,10 +62,11 @@ This plugin requires a proxy endpoint for Dynatrace configured in `app-config.ya ```yaml proxy: - '/dynatrace': - target: 'https://example.dynatrace.com/api/v2' - headers: - Authorization: 'Api-Token ${DYNATRACE_ACCESS_TOKEN}' + endpoints: + '/dynatrace': + target: 'https://example.dynatrace.com/api/v2' + headers: + Authorization: 'Api-Token ${DYNATRACE_ACCESS_TOKEN}' ``` It also requires a `baseUrl` for rendering links to problems in the table like so: From 0930c9ed68f5e08339c8d1299304979e7ca2f886 Mon Sep 17 00:00:00 2001 From: Florian JUDITH Date: Wed, 7 Feb 2024 19:40:08 -0500 Subject: [PATCH 2/2] Fixed typo Signed-off-by: Florian JUDITH --- .changeset/spicy-bobcats-return.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/spicy-bobcats-return.md diff --git a/.changeset/spicy-bobcats-return.md b/.changeset/spicy-bobcats-return.md new file mode 100644 index 0000000000..9bd4b33784 --- /dev/null +++ b/.changeset/spicy-bobcats-return.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-dynatrace': patch +--- + +Fixed Dynatrace plugin proxy configuration