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
4 changes: 2 additions & 2 deletions docs/syntax/applies.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,23 +227,23 @@
product:
ecctl:
curator:
apm_agent_android:
apm_agent_dotnet:
apm_agent_go:
apm_agent_ios:
apm_agent_java:
apm_agent_node:
apm_agent_php:
apm_agent_python:
apm_agent_ruby:
apm_agent_rum:
edot_collector:
edot_ios:
edot_android:
edot_dotnet:
edot_java:
edot_node:
edot_php:
edot_python:
edot_cf_aws:
---
```

Expand All @@ -252,7 +252,7 @@

### Block

```{applies_to}

Check notice on line 255 in docs/syntax/applies.md

View workflow job for this annotation

GitHub Actions / build

The 'planned' lifecycle is deprecated and will be removed in a future release.
stack: preview 9.1
serverless: planned

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ public enum VersioningSystemId
[Display(Name = "edot_python")]
EdotPython,
[Display(Name = "edot_cf_aws")]
EdotCfAws
EdotCfAws,
[Display(Name = "edot_collector")]
EdotCollector
}

[YamlSerializable]
Expand Down
3 changes: 3 additions & 0 deletions src/Elastic.Documentation.Configuration/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ versioning_systems:
current: 5.17.0

# EDOTs
edot_collector:
base: 9.0
current: 9.0.3
edot_ios:
base: 1.0
current: 1.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@
@RenderProduct("EDOT CF AWS", "Elastic Distribution of OpenTelemetry Cloud Forwarder for AWS", VersioningSystemId.EdotCfAws, pa.EdotCfAws)
;
}

if (pa.EdotCollector is not null)
{
@RenderProduct("EDOT Collector", "Elastic Distribution of OpenTelemetry Collector", VersioningSystemId.EdotCollector, pa.EdotCollector)
;
}
}

@functions {
Expand Down
3 changes: 3 additions & 0 deletions src/Elastic.Markdown/Myst/FrontMatter/ApplicableTo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ public record ProductApplicability

[YamlMember(Alias = "edot_cf_aws")]
public AppliesCollection? EdotCfAws { get; set; }

[YamlMember(Alias = "edot_collector")]
public AppliesCollection? EdotCollector { get; set; }
}

public class ApplicableToConverter : IYamlTypeConverter
Expand Down
Loading