Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/configuration/v1-guarantees.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ Cortex strives to be 100% API compatible with Prometheus (under `/prometheus/*`
- Additional API around pushing metrics (under `/api/push`).
- Additional API endpoints for management of Cortex itself, such as the ring. These APIs are not part of the any compatibility guarantees.

_For more information, please refer to the [limitations](../guides/limitations.md) doc._

## Experimental features

Cortex is an actively developed project and we want to encourage the introduction of new features and capability. As such, not everything in each release of Cortex is considered "production-ready". We don't provide any backwards compatibility guarantees on these and the config and flags might break.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/authentication-and-authorisation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Note that the tenant ID that is used to write the series to the datastore
should be the same as the one you use to query the data. If they don't match,
you won't see any data. As of now, you can't see series from other tenants.

For more information regarding the tenant ID limits, refer to: [Tenant ID limitations](./limitations.md#tenant-id-naming)
For more information regarding the tenant ID naming conventions, refer to: [Tenant ID naming conventions](tenantID-naming-conventions.md#tenant-id-naming)

### Cortex-Tenant

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ A tenant (also called "user" or "org") is the owner of a set of series written t
For more information, please refer to:

- [HTTP API authentication](../api/_index.md#authentication)
- [Tenant ID limitations](./limitations.md#tenant-id-naming)
- [Tenant ID naming conventions](tenantID-naming-conventions.md#tenant-id-naming)

### Time series

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
---
title: "Limitations"
linkTitle: "Limitations"
title: "Tenant ID Naming Conventions"
linkTitle: "Tenant ID Naming Conventions"
weight: 998
slug: limitations
slug: Tenant ID Naming Conventions
---

## Tenant ID naming

The tenant ID (also called "user ID" or "org ID") is the unique identifier of a tenant within a Cortex cluster. The tenant ID is opaque information to Cortex, which doesn't make any assumptions on its format/content, but its naming has two limitations:
The tenant ID (also called "user ID" or "org ID") is the unique identifier of a tenant within a Cortex cluster. The tenant ID is opaque information to Cortex, which doesn't make any assumptions on its format/content, but its naming has three limitations:

1. Supported characters
2. Length
2. Invalid tenant IDs
3. Length

### Supported characters

Expand Down
Loading