diff --git a/docs/syntax/frontmatter.md b/docs/syntax/frontmatter.md index c6fcce10c..dd353aa7c 100644 --- a/docs/syntax/frontmatter.md +++ b/docs/syntax/frontmatter.md @@ -61,6 +61,7 @@ The products frontmatter is a list of objects, each object has an `id` field. | `cloud-terraform` | Elastic Cloud Terraform | | `ecs` | Elastic Common Schema (ECS) | | `ecs-logging` | ECS Logging | +| `edot-cf` | EDOT Cloud Forwarder | | `edot-sdk` | Elastic Distribution of OpenTelemetry SDK | | `edot-collector` | Elastic Distribution of OpenTelemetry Collector | | `elastic-agent` | Elastic Agent | diff --git a/src/Elastic.Documentation.Configuration/Builder/Products.cs b/src/Elastic.Documentation.Configuration/Builder/Products.cs index ec0aebafb..86208364c 100644 --- a/src/Elastic.Documentation.Configuration/Builder/Products.cs +++ b/src/Elastic.Documentation.Configuration/Builder/Products.cs @@ -23,6 +23,7 @@ public static class Products new("cloud-terraform", "Elastic Cloud Terraform"), new("ecs", "Elastic Common Schema (ECS)"), new("ecs-logging", "ECS Logging"), + new("edot-cf", "EDOT Cloud Forwarder"), new("edot-sdk", "Elastic Distribution of OpenTelemetry SDK"), new("edot-collector", "Elastic Distribution of OpenTelemetry Collector"), new("elastic-agent", "Elastic Agent"),