From 1cb825b301d857c57973c96eac14a66a72b7eae1 Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Thu, 26 Jun 2025 08:53:14 +0200 Subject: [PATCH 1/2] Update ApplicableToComponent.cshtml Apply correct names to EDOTs --- .../Myst/Components/ApplicableToComponent.cshtml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml b/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml index 286c705b4..bd38ef4e6 100644 --- a/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml +++ b/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml @@ -68,13 +68,13 @@ if (pa.ApmAgentPython is not null) { @RenderProduct("APM Agent Python", pa.ApmAgentPython); } if (pa.ApmAgentRuby is not null) { @RenderProduct("APM Agent Ruby", pa.ApmAgentRuby); } if (pa.ApmAgentRum is not null) { @RenderProduct("APM Agent RUM", pa.ApmAgentRum); } - if (pa.EdotIos is not null) { @RenderProduct("OpenTelemetry iOS", pa.EdotIos); } - if (pa.EdotAndroid is not null) { @RenderProduct("OpenTelemetry Android", pa.EdotAndroid); } - if (pa.EdotDotnet is not null) { @RenderProduct("OpenTelemetry .NET", pa.EdotDotnet); } - if (pa.EdotJava is not null) { @RenderProduct("OpenTelemetry Java", pa.EdotJava); } - if (pa.EdotNode is not null) { @RenderProduct("OpenTelemetry Node.js", pa.EdotNode); } - if (pa.EdotPhp is not null) { @RenderProduct("OpenTelemetry PHP", pa.EdotPhp); } - if (pa.EdotPython is not null) { @RenderProduct("OpenTelemetry Python", pa.EdotPython); } + if (pa.EdotIos is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry iOS", pa.EdotIos); } + if (pa.EdotAndroid is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Android", pa.EdotAndroid); } + if (pa.EdotDotnet is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry .NET", pa.EdotDotnet); } + if (pa.EdotJava is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Java", pa.EdotJava); } + if (pa.EdotNode is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Node.js", pa.EdotNode); } + if (pa.EdotPhp is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry PHP", pa.EdotPhp); } + if (pa.EdotPython is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Python", pa.EdotPython); } } @functions { @@ -100,4 +100,4 @@ } return HtmlString.Empty; } -} \ No newline at end of file +} From 7d70bc28106a96fabac717ed8f23b2097c09a900 Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Thu, 26 Jun 2025 08:56:31 +0200 Subject: [PATCH 2/2] Update ApplicableToComponent.cshtml --- .../Myst/Components/ApplicableToComponent.cshtml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml b/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml index bd38ef4e6..e15c85f61 100644 --- a/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml +++ b/src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml @@ -68,13 +68,13 @@ if (pa.ApmAgentPython is not null) { @RenderProduct("APM Agent Python", pa.ApmAgentPython); } if (pa.ApmAgentRuby is not null) { @RenderProduct("APM Agent Ruby", pa.ApmAgentRuby); } if (pa.ApmAgentRum is not null) { @RenderProduct("APM Agent RUM", pa.ApmAgentRum); } - if (pa.EdotIos is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry iOS", pa.EdotIos); } - if (pa.EdotAndroid is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Android", pa.EdotAndroid); } - if (pa.EdotDotnet is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry .NET", pa.EdotDotnet); } - if (pa.EdotJava is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Java", pa.EdotJava); } - if (pa.EdotNode is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Node.js", pa.EdotNode); } - if (pa.EdotPhp is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry PHP", pa.EdotPhp); } - if (pa.EdotPython is not null) { @RenderProduct("Elastic Distribution of OpenTelemetry Python", pa.EdotPython); } + if (pa.EdotIos is not null) { @RenderProduct("EDOT iOS", pa.EdotIos); } + if (pa.EdotAndroid is not null) { @RenderProduct("EDOT Android", pa.EdotAndroid); } + if (pa.EdotDotnet is not null) { @RenderProduct("EDOT .NET", pa.EdotDotnet); } + if (pa.EdotJava is not null) { @RenderProduct("EDOT Java", pa.EdotJava); } + if (pa.EdotNode is not null) { @RenderProduct("EDOT Node.js", pa.EdotNode); } + if (pa.EdotPhp is not null) { @RenderProduct("EDOT PHP", pa.EdotPhp); } + if (pa.EdotPython is not null) { @RenderProduct("EDOT Python", pa.EdotPython); } } @functions {