Skip to content
Merged
Changes from 3 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
41 changes: 23 additions & 18 deletions src/Elastic.Documentation.Configuration/Builder/Products.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ public record Product(string Id, string DisplayName);
public static class Products
{
public static FrozenSet<Product> All { get; } = [
new("apm", "APM"),
new("apm-dotnet-agent", "APM .NET Agent"),
new("apm-android-agent", "APM Android Agent"),
new("apm-attacher", "APM Attacher"),
new("apm-aws-lambda-extension", "APM AWS Lambda extension"),
new("apm-dotnet-agent", "APM .NET Agent"),
new("apm-go-agent", "APM Go Agent"),
new("apm-ios-agent", "APM iOS Agent"),
new("apm-java-agent", "APM Java Agent"),
Expand All @@ -24,15 +23,16 @@ public static class Products
new("apm-python-agent", "APM Python Agent"),
new("apm-ruby-agent", "APM Ruby Agent"),
new("apm-rum-agent", "APM RUM Agent"),
new("apm", "APM"),
new("auditbeat","Auditbeat"),
new("beats-logging-plugin", "Beats Logging plugin"),
new("beats","Beats"),
new("cloud-control-ecctl", "Cloud Control ECCTL"),
new("cloud-enterprise", "Cloud Enterprise"),
new("cloud-hosted", "Cloud Hosted"),
new("cloud-kubernetes", "Cloud Kubernetes"),
new("cloud-native-ingest", "Cloud Native Ingest"),
new("cloud-serverless", "Cloud Serverless"),
new("cloud-terraform", "Cloud Terraform"),
new("ecs-logging", "ECS Logging"),
new("ecs-logging-dotnet", "ECS Logging .NET"),
new("ecs-logging-go-logrus", "ECS Logging Go Logrus"),
new("ecs-logging-go-zap", "ECS Logging Go Zap"),
Expand All @@ -42,16 +42,24 @@ public static class Products
new("ecs-logging-php", "ECS Logging PHP"),
new("ecs-logging-python", "ECS Logging Python"),
new("ecs-logging-ruby", "ECS Logging Ruby"),
new("elastic-agent", "Elastic Agent"),
new("ecs-logging", "ECS Logging"),
new("ecs", "Elastic Common Schema (ECS)"),
new("edot-android", "Elastic Distribution of OpenTelemetry Android"),
new("edot-collector", "Elastic Distribution of OpenTelemetry Collector"),
new("edot-dotnet", "Elastic Distribution of OpenTelemetry .NET"),
new("edot-ios", "Elastic Distribution of OpenTelemetry iOS"),
new("edot-java", "Elastic Distribution of OpenTelemetry Java"),
new("edot-nodejs", "Elastic Distribution of OpenTelemetry Node.js"),
new("edot-php", "Elastic Distribution of OpenTelemetry PHP"),
new("edot-python", "Elastic Distribution of OpenTelemetry Python"),
new("elastic-agent", "Elastic Agent"),
new("elastic-products-platform", "Elastic Products platform"),
new("elastic-stack", "Elastic Stack"),
new("elasticsearch", "Elasticsearch"),
new("elasticsearch-dotnet-client", "Elasticsearch .NET Client"),
new("elastic-stack","Elastic Stack"),
new("elasticsearch-apache-hadoop", "Elasticsearch Apache Hadoop"),
new("elasticsearch-cloud-hosted-heroku", "Elasticsearch Cloud Hosted Heroku"),
new("elasticsearch-community-clients", "Elasticsearch community clients"),
new("elasticsearch-curator", "Elasticsearch Curator"),
new("elasticsearch-dotnet-client", "Elasticsearch .NET Client"),
new("elasticsearch-eland-python-client", "Elasticsearch Eland Python Client"),
new("elasticsearch-go-client", "Elasticsearch Go Client"),
new("elasticsearch-groovy-client", "Elasticsearch Groovy Client"),
Expand All @@ -65,24 +73,21 @@ public static class Products
new("elasticsearch-resiliency-status", "Elasticsearch Resiliency Status"),
new("elasticsearch-ruby-client", "Elasticsearch Ruby Client"),
new("elasticsearch-rust-client", "Elasticsearch Rust Client"),
new("elasticsearch", "Elasticsearch"),
new("filebeat","Filebeat"),
new("fleet", "Fleet"),
new("ingest", "Ingest"),
new("heartbeat","Heartbeat"),
new("integrations", "Integrations"),
new("integrations","Integrations"),
new("kibana", "Kibana"),
new("logstash", "Logstash"),
new("machine-learning", "Machine Learning"),
new("metricbeat","Metricbeat"),
new("observability", "Observability"),
new("reference-architectures", "Reference Architectures"),
new("packetbeat","Packetbeat"),
new("search-ui", "Search UI"),
new("security", "Security"),
new("edot-collector", "Elastic Distribution of OpenTelemetry Collector"),
new("edot-java", "Elastic Distribution of OpenTelemetry Java"),
new("edot-dotnet", "Elastic Distribution of OpenTelemetry .NET"),
new("edot-nodejs", "Elastic Distribution of OpenTelemetry Node.js"),
new("edot-php", "Elastic Distribution of OpenTelemetry PHP"),
new("edot-python", "Elastic Distribution of OpenTelemetry Python"),
new("edot-android", "Elastic Distribution of OpenTelemetry Android"),
new("edot-ios", "Elastic Distribution of OpenTelemetry iOS")
new("winlogbeat","Winlogbeat")
];

public static FrozenDictionary<string, Product> AllById { get; } = All.ToDictionary(p => p.Id, StringComparer.Ordinal).ToFrozenDictionary();
Expand Down
Loading