We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73d0f8c + 59d1653 commit 4f73f93Copy full SHA for 4f73f93
src/pages/DependenciesPage.js
@@ -17,6 +17,9 @@ const GET_DEPENDENCY = gql`
17
statusPage
18
SLA
19
dependencyFailureImpact
20
+ monitoring {
21
+ url
22
+ }
23
}
24
25
`;
@@ -32,6 +35,9 @@ const GET_DEPENDENCIES = gql`
32
35
33
36
34
37
38
39
40
41
42
43
src/pages/elements/Dependency.js
@@ -14,6 +14,12 @@ function Dependency({ dependency }) {
14
{dependency.path}
15
</a>
16
],
+ [
+ 'Monitoring URL',
+ <a href={`${dependency.monitoring.url}`} target="_blank" rel="noopener noreferrer">
+ {dependency.monitoring.url}
+ </a>
+ ],
[
'Status page',
<a href={`${dependency.statusPage}`} target="_blank" rel="noopener noreferrer">
0 commit comments