From kagents
Azure Monitor, Application Insights, OpenTelemetry — metrics, traces, logs, custom Meter/Counter/Histogram, SLO-based alerts, Aspire Dashboard. USE FOR: configuring monitoring pipelines, creating alert rules, instrumenting .NET services with OpenTelemetry. DO NOT USE FOR: Aspire AppHost configuration (use aspire-architecture) or general Azure resource provisioning (use azure-specialist agent).
How this skill is triggered — by the user, by Claude, or both
Slash command
/kagents:azure-monitoringThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```csharp
builder.Services.AddOpenTelemetry()
.ConfigureResource(r => r.AddService("MyApp"))
.WithTracing(t => t
.AddAspNetCoreInstrumentation()
.AddHttpClientInstrumentation()
.AddEntityFrameworkCoreInstrumentation()
.AddOtlpExporter())
.WithMetrics(m => m
.AddAspNetCoreInstrumentation()
.AddHttpClientInstrumentation()
.AddOtlpExporter());
// Connection String (nicht Instrumentation Key!)
builder.Services.AddApplicationInsightsTelemetry(options =>
{
options.ConnectionString = builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"];
});
| Variable | Lokal (Aspire) | Produktion (Azure) |
|---|---|---|
OTEL_EXPORTER_OTLP_ENDPOINT | http://localhost:4317 | — |
APPLICATIONINSIGHTS_CONNECTION_STRING | — | InstrumentationKey=... |
OTEL_SERVICE_NAME | Auto (Aspire) | Manuell setzen |
private static readonly Meter AppMeter = new("MyApp.Business");
private static readonly Counter<long> OrdersCreated = AppMeter.CreateCounter<long>("orders.created");
private static readonly Histogram<double> OrderProcessingTime = AppMeter.CreateHistogram<double>("orders.processing_time_ms");
2plugins reuse this skill
First indexed Apr 5, 2026
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub grexyloco/k.agents --plugin kagents