File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ const GET_DEPENDENCY = gql`
17
17
statusPage
18
18
SLA
19
19
dependencyFailureImpact
20
+ monitoring {
21
+ url
22
+ }
20
23
}
21
24
}
22
25
` ;
@@ -32,6 +35,9 @@ const GET_DEPENDENCIES = gql`
32
35
statusPage
33
36
SLA
34
37
dependencyFailureImpact
38
+ monitoring {
39
+ url
40
+ }
35
41
}
36
42
}
37
43
` ;
Original file line number Diff line number Diff line change @@ -14,12 +14,18 @@ function Dependency({ dependency }) {
14
14
{ dependency . path }
15
15
</ a >
16
16
] ,
17
+ [
18
+ 'Monitoring URL' ,
19
+ < a href = { `${ dependency . monitoring . url } ` } target = "_blank" rel = "noopener noreferrer" >
20
+ { dependency . monitoring . url }
21
+ </ a >
22
+ ] ,
17
23
[
18
24
'Status page' ,
19
25
< a href = { `${ dependency . statusPage } ` } target = "_blank" rel = "noopener noreferrer" >
20
26
{ dependency . statusPage }
21
27
</ a >
22
- ] ,
28
+ ] ,
23
29
[ 'Statefulness' , dependency . statefulness ] ,
24
30
[ 'Ops Model' , dependency . opsModel ] ,
25
31
[ 'SLA' , dependency . SLA ] ,
You can’t perform that action at this time.
0 commit comments