Elastic Observability 是提供对正在运行的 Web 应用程序的可见性的最佳工具。 Microsoft Azure 容器应用程序是一个完全托管的环境,使你能够在无服务器平台上运行容器化应用程序,以便你的应用程序可以扩展和缩减。 这使你能够实现双重目标:满足每个客户的可用性需求,同时满足你尽可能高效地开展工作的需求。
使用 Elastic Observability 和 Azure 容器应用程序是开发人员部署可通过完全可观察操作自动扩展的 Web 应用程序的完美组合。
本博文将向你展示如何将简单的 Hello World Web 应用程序部署到 Azure 容器应用程序,然后引导你完成实施 Hello World Web 应用程序的步骤,以便能够通过 Elastic Cloud 观察应用程序的操作。
Elastic 可观测性设置
我们将从设置 Elastic Cloud 部署开始,这是我们将要部署的 Web 应用程序的可观察性所在。
从 Elastic Cloud 控制台中,选择 Create deployment。
输入部署名称并单击 Create deployment。 创建部署需要几分钟时间。 等待期间,系统会提示你保存部署的管理员凭据,这为你提供了对 Elastic® 部署的超级用户访问权限。 确保这些凭据的安全,因为它们仅显示一次。
Elastic Observability 需要 APM 服务器 URL 和 APM Secret token,应用程序才能将可观察性数据发送到 Elastic Cloud。 创建部署后,我们将复制 Elastic Observability 服务器 URL 和秘密 token,并将它们安全地存储在某个位置,以便在后续步骤中添加到我们的 Web 应用程序代码中。
要复制 APM 服务器 URL 和 APM 秘密 token,请转到 Elastic Cloud 。 然后转到 "Deployment" 页面,其中列出了你已创建的所有部署。 选择你要使用的部署,这将打开部署详细信息页面。 在 Kibana 链接行中,单击 Open 以打开 Kibana® 进行部署。
从顶级菜单中选择 integrations 。 然后单击 APM。
在 APM 代理页面上,复制 SecretToken 和 serverUrl 值并保存它们以供后续步骤使用。
现在我们已经完成了 Elastic Cloud 设置,下一步是在 Azure 中设置我们的帐户,以便将应用程序部署到容器应用程序服务。
Azure 容器应用程序设置
首先,我们需要一个 Azure 帐户,因此让我们通过转到 Microsoft Azure 门户并创建一个新项目来创建一个帐户。 单击 "Start free" 按钮,然后按照步骤登录或创建新帐户。
将 Hello World Web 应用程序部署到容器应用程序
我们将使用名为 Cloud Shell 的便捷 Azure 工具执行将 C# Hello World Web 应用程序部署到容器应用程序的过程。 要部署 Hello World 应用程序,我们将执行以下 12 个步骤:
- 在 Azure 门户中,单击门户顶部的 Cloud Shell 图标以打开 Cloud Shell...
...当 Cloud Shell 首次打开时,选择 Bash 作为要使用的 shell 类型。
- 如果系统提示你 "You have no storage mounted",请单击 Create storage 按钮创建一个文件存储,用于从 Cloud Shell 保存和编辑文件。
- 在 Cloud Shell 中,通过输入以下命令从 GitHub 克隆 C# Hello World 示例应用存储库。
bash
git clone https://github.com/elastic/observability-examples
- 将目录更改为 Hello World Web 应用程序代码的位置。
bash
cd observability-examples/azure/container-apps/helloworld
- 定义我们将在本博文中的命令中使用的环境变量。
ini
1. RESOURCE_GROUP="helloworld-containerapps"
2. LOCATION="centralus"
3. ENVIRONMENT="env-helloworld-containerapps"
4. APP_
- 通过运行以下命令定义唯一的注册表容器名称。
bash
ACR_$RANDOM
- 通过运行以下命令创建 Azure 资源组。
bash
az group create --name $RESOURCE_GROUP --location "$LOCATION"
- 运行以下命令在 Azure 容器注册表中创建注册表容器。
css
1. az acr create --resource-group $RESOURCE_GROUP \
2. --name $ACR_NAME --sku Basic --admin-enable true
- 构建应用程序映像并通过运行以下命令将其推送到 Azure 容器注册表。
bash
az acr build --registry $ACR_NAME --image $APP_NAME .
- 通过运行以下命令将 Microsoft.OperationalInsights 命名空间注册为提供程序。
arduino
az provider register -n Microsoft.OperationalInsights --wait
- 运行以下命令创建容器应用程序环境以将你的应用程序部署到其中。
bash
1. az containerapp env create --name $ENVIRONMENT \
2. --resource-group $RESOURCE_GROUP --location "$LOCATION"
- 使用以下命令将 Hello World 应用程序的映像部署到容器应用程序,创建新的容器应用程序。
lua
1. az containerapp create \
2. --name $APP_NAME \
3. --resource-group $RESOURCE_GROUP \
4. --environment $ENVIRONMENT \
5. --image $ACR_NAME.azurecr.io/$APP_NAME \
6. --target-port 3500 \
7. --ingress 'external' \
8. --registry-server $ACR_NAME.azurecr.io \
9. --query properties.configuration.ingress.fqdn
此命令将输出已部署的 Hello World 应用程序的完全限定域名 (FQDN)。 将 FQDN 复制并粘贴到浏览器中以查看正在运行的 Hello World 应用程序。
使用 Elastic Observability 检测 Hello World Web 应用程序
随着 Web 应用程序在容器应用程序中成功运行,我们现在已准备好添加所需的最少代码,以启用 Elastic Cloud 中的 Hello World 应用程序的可观察性。 我们将执行以下八个步骤:
- 在 Azure Cloud Shell 中,通过键入以下命令创建一个名为 Telemetry.cs 的新文件。
bash
touch Telemetry.cs
- 在 Cloud Shell 中键入以下命令,打开 Azure Cloud Shell 文件编辑器。
css
code .
- 在 Azure Cloud Shell 编辑器中,打开 Telemetry.cs 文件并粘贴以下代码。 按键盘上的 [Ctrl] + [s] 键(或者如果你使用的是 macOS 计算机,请使用 [⌘] + [s] 键),将编辑后的文件保存在 Cloud Shell 中。 该类文件用于创建跟踪器 ActivitySource,它可以生成跟踪 Activity 跨度以实现可观察性。
csharp
1. using System.Diagnostics;
3. public static class Telemetry
4. {
5. public static readonly ActivitySource activitySource = new("Helloworld");
6. }
- 在 Azure Cloud Shell 编辑器中,编辑名为 Dockerfile 的文件以添加以下 Elastic OpenTelemetry 环境变量。 将 ELASTIC_APM_SERVER_URL 文本和 ELASTIC_APM_SECRET_TOKEN 文本替换为你在先前步骤中复制并保存的 APM 服务器 URL 和 APM 秘密 token 值。
按键盘上的 [Ctrl] + [s] 键(或者如果你使用的是 macOS 计算机,请使用 [⌘] + [s] 键),将编辑后的文件保存在 Cloud Shell 中。
更新后的 Dockerfile 应如下所示:
ini
1. FROM ${ARCH}mcr.microsoft.com/dotnet/aspnet:7.0. AS base
2. WORKDIR /app
4. FROM mcr.microsoft.com/dotnet/sdk:8.0-preview AS build
5. ARG TARGETPLATFORM
7. WORKDIR /src
8. COPY ["helloworld.csproj", "./"]
9. RUN dotnet restore "./helloworld.csproj"
10. COPY . .
11. WORKDIR "/src/."
12. RUN dotnet build "helloworld.csproj" -c Release -o /app/build
14. FROM build AS publish
15. RUN dotnet publish "helloworld.csproj" -c Release -o /app/publish
17. FROM base AS final
18. WORKDIR /app
19. COPY --from=publish /app/publish .
20. EXPOSE 3500
21. ENV ASPNETCORE_URLS=http://+:3500
23. ENV OTEL_EXPORTER_OTLP_ENDPOINT='https://******.apm.us-east-2.aws.elastic-cloud.com:443'
24. ENV OTEL_EXPORTER_OTLP_HEADERS='Authorization=Bearer ***********'
25. ENV OTEL_LOG_LEVEL=info
26. ENV OTEL_METRICS_EXPORTER=otlp
27. ENV OTEL_RESOURCE_ATTRIBUTES=service.version=1.0,deployment.environment=production
28. ENV OTEL_SERVICE_NAME=helloworld
29. ENV OTEL_TRACES_EXPORTER=otlp
31. ENTRYPOINT ["dotnet", "helloworld.dll"]
- 在 Azure Cloud Shell 编辑器中,编辑 helloworld.csproj 文件以添加 Elastic APM 和 OpenTelemetry 依赖项。 更新后的 helloworld.csproj 文件应如下所示:
xml
1. <Project Sdk="Microsoft.NET.Sdk.Web">
3. <PropertyGroup>
4. <TargetFramework>net7.0</TargetFramework>
5. <Nullable>enable</Nullable>
6. <ImplicitUsings>enable</ImplicitUsings>
7. </PropertyGroup>
8. <ItemGroup>
9. <PackageReference Include="Elastic.Apm" Version="1.24.0" />
10. <PackageReference Include="Elastic.Apm.NetCoreAll" Version="1.24.0" />
11. <PackageReference Include="OpenTelemetry" Version="1.6.0" />
12. <PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.6.0" />
13. <PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.6.0" />
14. <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.6.0" />
15. <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.5.0-beta.1" />
16. </ItemGroup>
18. </Project>
- 在 Azure Cloud Shell 编辑器中,编辑 Program.cs:
- 在文件顶部添加一条 using 语句来导入 System.Diagnostics,该语句用于创建相当于OpenTelemetry中 "spans" 的Activity。 还要导入 OpenTelemetry.Resources 和 OpenTelemetry.Trace 包。
arduino
1. using System.Diagnostics;
2. using OpenTelemetry.Resources;
3. using OpenTelemetry.Trace;
- 更新 "builder" 初始化代码块以包含启用 Elastic OpenTelemetry 可观察性的配置。
less
1. builder.Services.AddOpenTelemetry().WithTracing(builder => builder.AddOtlpExporter()
2. .AddSource("helloworld")
3. .AddAspNetCoreInstrumentation()
4. .AddOtlpExporter()
5. .ConfigureResource(resource =>
6. resource.AddService(
7. serviceName: "helloworld"))
8. );
9. builder.Services.AddControllers();
- 替换 "Hello World!" HTML 输出字符串...
css
<h1>Hello World!</h1>
- ...使用 "Hello Elastic Observability" HTML 输出字符串。
css
1. <div style="text-align: center;">
2. <h1 style="color: #005A9E; font-family:'Verdana'">
3. Hello Elastic Observability - Azure Container Apps - C#
4. </h1>
5. <img src="https://elastichelloworld.blob.core.windows.net/elastic-helloworld/elastic-logo.png">
6. </div>
- 使用遥测类的 ActivitySource 在输出响应周围添加遥测跟踪范围。
ini
1. using (Activity activity = Telemetry.activitySource.StartActivity("HelloSpan")!)
2. {
3. Console.Write("hello");
4. await context.Response.WriteAsync(output);
5. }
更新后的 Program.cs 文件应如下所示:
ini
1. using System.Diagnostics;
2. using OpenTelemetry.Resources;
3. using OpenTelemetry.Trace;
5. var builder = WebApplication.CreateBuilder(args);
6. builder.Services.AddOpenTelemetry().WithTracing(builder => builder.AddOtlpExporter()
7. .AddSource("helloworld")
8. .AddAspNetCoreInstrumentation()
9. .AddOtlpExporter()
10. .ConfigureResource(resource =>
11. resource.AddService(
12. serviceName: "helloworld"))
13. );
14. builder.Services.AddControllers();
15. var app = builder.Build();
17. string output =
18. """
19. <div style="text-align: center;">
20. <h1 style="color: #005A9E; font-family:'Verdana'">
21. Hello Elastic Observability - Azure Container Apps - C#
22. </h1>
23. <img src="https://elastichelloworld.blob.core.windows.net/elastic-helloworld/elastic-logo.png">
24. </div>
25. """;
27. app.MapGet("/", async context =>
28. {
29. using (Activity activity = Telemetry.activitySource.StartActivity("HelloSpan")!)
30. {
31. Console.Write("hello");
32. await context.Response.WriteAsync(output);
33. }
34. }
35. );
36. app.Run();
- 重建 Hello World 应用程序映像,并通过运行以下命令将该映像推送到 Azure 容器注册表。
bash
az acr build --registry $ACR_NAME --image $APP_NAME .
- 使用以下命令将更新的 Hello World 应用重新部署到 Azure 容器应用。
lua
1. az containerapp create \
2. --name $APP_NAME \
3. --resource-group $RESOURCE_GROUP \
4. --environment $ENVIRONMENT \
5. --image $ACR_NAME.azurecr.io/$APP_NAME \
6. --target-port 3500 \
7. --ingress 'external' \
8. --registry-server $ACR_NAME.azurecr.io \
9. --query properties.configuration.ingress.fqdn
此命令将输出已部署的 Hello World 应用程序的完全限定域名 (FQDN)。 将 FQDN 复制并粘贴到浏览器中,以查看 Azure 容器应用中运行的更新的 Hello World 应用。
观察 Hello World Web 应用程序
现在我们已经对 Web 应用程序进行了检测,将可观测性数据发送到 Elastic Observability,现在我们可以使用 Elastic Cloud 来监控 Web 应用程序的操作。
- 在 Elastic Cloud 中,选择可观测性 Services 菜单项。
- 单击 helloworld 服务。
- 单击 Transactions 选项卡。
- 向下滚动并单击 GET / transaction。向下滚动到 Trace Sample 部分以查看 GET / 、HelloSpan 跟踪示例。
规模化的可观察性
你已经了解了将 Web 应用程序部署到使用 Elastic Observability 进行检测的 Azure 容器应用程序的整个过程。 该网络应用程序现已在网络上完全可用,该平台运行在一个平台上,该平台将自动扩展以服务全球访问者。 它针对 Elastic Observability APM 进行了检测,使用 OpenTelemetry 将数据提取到 Elastic Cloud 的 Kibana 仪表板中。
现在你已经了解了如何使用基本的可观测性设置来部署 Hello World Web 应用程序,请访问 Elastic Observability 以了解有关为你的应用程序扩展为全面的可观测性覆盖解决方案的更多信息。 或者访问 Microsoft Azure 上的 Elastic 入门,获取更多示例,了解如何通过将 Microsoft Azure 的云计算服务与 Elastic 的搜索驱动平台相结合来获得所需的数据洞察。
本文中描述的任何特性或功能的发布和时间安排均由 Elastic 自行决定。 当前不可用的任何特性或功能可能无法按时交付或根本无法交付。