diff --git a/web/src/components/Wizard/Steps/TracingBackend/Selector.tsx b/web/src/components/Wizard/Steps/TracingBackend/Selector.tsx index fc2bc85a1e..de15e2c86d 100644 --- a/web/src/components/Wizard/Steps/TracingBackend/Selector.tsx +++ b/web/src/components/Wizard/Steps/TracingBackend/Selector.tsx @@ -14,11 +14,9 @@ interface IProps { const Selector = ({onSelect, selectedBackend}: IProps) => { return ( - How should Tracetest receive telemetry from your application? + Tell us how Tracetest should ingest traces from your application - - Tell us how Tracetest should get or receive traces from your application - + Select your Tracing Backend {backends.map(backend => ( diff --git a/web/src/components/Wizard/Wrapper/Wrapper.tsx b/web/src/components/Wizard/Wrapper/Wrapper.tsx index 43a0b1958a..8a43ab1163 100644 --- a/web/src/components/Wizard/Wrapper/Wrapper.tsx +++ b/web/src/components/Wizard/Wrapper/Wrapper.tsx @@ -6,7 +6,7 @@ import CreateTest, {CreateTestTab} from '../Steps/CreateTest'; const steps: TWizardMap = { agent: undefined, tracing_backend: { - name: 'Configure access to your OTel traces', + name: 'Configure trace ingestion', description: '', component: TracingBackend, tabComponent: TracingBackendTab, diff --git a/web/src/constants/Common.constants.ts b/web/src/constants/Common.constants.ts index 2ed902622c..a91bac071c 100644 --- a/web/src/constants/Common.constants.ts +++ b/web/src/constants/Common.constants.ts @@ -42,6 +42,7 @@ export const POKESHOP_GITHUB = 'https://github.com/kubeshop/pokeshop'; export const OTEL_DEMO_GITHUB = 'https://github.com/open-telemetry/opentelemetry-demo'; export const AGENT_DOCS_URL = 'https://docs.tracetest.io/concepts/agent'; +export const CLOUD_AGENT_DOCS_URL = 'https://docs.tracetest.io/concepts/cloud-agent'; export enum HTTP_METHOD { GET = 'GET',