Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(broken links): fixed bad links #3432

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/docs/analyzer/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/cli/configuring-your-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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**:

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/concepts/what-is-trace-based-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down