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

details_index.vue « tracing « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5702a88766c85d5e9697b931ca49877de9e887d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<script>
import ObservabilityContainer from '~/observability/components/observability_container.vue';
import TracingDetails from './components/tracing_details.vue';

export default {
  components: {
    ObservabilityContainer,
    TracingDetails,
  },
  props: {
    traceId: {
      type: String,
      required: true,
    },
    oauthUrl: {
      type: String,
      required: true,
    },
    tracingUrl: {
      type: String,
      required: true,
    },
    provisioningUrl: {
      type: String,
      required: true,
    },
    tracingIndexUrl: {
      required: true,
      type: String,
    },
  },
};
</script>

<template>
  <observability-container
    :oauth-url="oauthUrl"
    :tracing-url="tracingUrl"
    :provisioning-url="provisioningUrl"
  >
    <template #default="{ observabilityClient }">
      <tracing-details
        :trace-id="traceId"
        :tracing-index-url="tracingIndexUrl"
        :observability-client="observabilityClient"
      />
    </template>
  </observability-container>
</template>