From 80aacaa8c4df46d5f8a1d1247a844c8731ccc9c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adnan=20Rahi=C4=87?= Date: Fri, 8 Dec 2023 16:06:42 +0100 Subject: [PATCH] docs(broken links): fixed bad links (#3432) --- docs/docs/analyzer/concepts.mdx | 6 +++--- docs/docs/cli/configuring-your-cli.mdx | 4 ++-- docs/docs/concepts/what-is-trace-based-testing.mdx | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/docs/analyzer/concepts.mdx b/docs/docs/analyzer/concepts.mdx index 3f0d58bb54..e094889c54 100644 --- a/docs/docs/analyzer/concepts.mdx +++ b/docs/docs/analyzer/concepts.mdx @@ -15,9 +15,9 @@ The Tracetest Analyzer is a plugin-based framework used to analyze OpenTelemetry ## Plugins -- [OpenTelemetry Semantic Conventions](./plugins/otel-semantic-conventions) -- [Security](./plugins/security) -- [Common Problems](./plugins/common-problems) +- [OpenTelemetry Semantic Conventions](/analyzer/plugins/otel-semantic-conventions) +- [Security](/analyzer/plugins/security) +- [Common Problems](/analyzer/plugins/common-problems) ## Problem diff --git a/docs/docs/cli/configuring-your-cli.mdx b/docs/docs/cli/configuring-your-cli.mdx index 0939a79b8a..b15fedb7a5 100644 --- a/docs/docs/cli/configuring-your-cli.mdx +++ b/docs/docs/cli/configuring-your-cli.mdx @@ -45,11 +45,11 @@ tracetest list test ### Run a Test -Allows you to run a test by referencing a [test definition file](./creating-tests). +Allows you to run a test by referencing a [test definition file](/cli/creating-tests). > Note: If the definition file contains the field `id`, this command will not create a new test. Instead, it will update the test with that ID. If that test doesn't exist, a new one will be created with that ID on the server. -Every time the test is run, changes are detected and, if any change is introduced, we use Tractest's [versioning](../concepts/versioning) mechanism to ensure that it will not cause problems with previous test runs. +Every time the test is run, changes are detected and, if any change is introduced, we use Tractest's [versioning](/concepts/versioning) mechanism to ensure that it will not cause problems with previous test runs. **How to Use**: diff --git a/docs/docs/concepts/what-is-trace-based-testing.mdx b/docs/docs/concepts/what-is-trace-based-testing.mdx index 1ff2ad89b2..6cea349d57 100644 --- a/docs/docs/concepts/what-is-trace-based-testing.mdx +++ b/docs/docs/concepts/what-is-trace-based-testing.mdx @@ -49,7 +49,7 @@ In Tracetest, a Test Spec is comprised of two parts: ### What is a Selector? -A selector contains criteria to limit the scope of the spans from a trace that we wish to assert against. A selector can be very narrow, only selecting on one span, or very wide, selecting all spans or all spans of a certain type or other characteristics. Underlying this capability is a [selector language](./selectors). +A selector contains criteria to limit the scope of the spans from a trace that we wish to assert against. A selector can be very narrow, only selecting on one span, or very wide, selecting all spans or all spans of a certain type or other characteristics. Underlying this capability is a [selector language](/concepts/selectors). ### What is a Check?