Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/observability/components/observability_container.vue')
-rw-r--r--app/assets/javascripts/observability/components/observability_container.vue12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/assets/javascripts/observability/components/observability_container.vue b/app/assets/javascripts/observability/components/observability_container.vue
index b7697cea299..1518c132560 100644
--- a/app/assets/javascripts/observability/components/observability_container.vue
+++ b/app/assets/javascripts/observability/components/observability_container.vue
@@ -13,11 +13,19 @@ export default {
type: String,
required: true,
},
+ provisioningUrl: {
+ type: String,
+ required: true,
+ },
tracingUrl: {
type: String,
required: true,
},
- provisioningUrl: {
+ servicesUrl: {
+ type: String,
+ required: true,
+ },
+ operationsUrl: {
type: String,
required: true,
},
@@ -58,6 +66,8 @@ export default {
this.observabilityClient = buildClient({
provisioningUrl: this.provisioningUrl,
tracingUrl: this.tracingUrl,
+ servicesUrl: this.servicesUrl,
+ operationsUrl: this.operationsUrl,
});
this.$refs.observabilitySkeleton?.onContentLoaded();
} else if (status === 'error') {