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
1 change: 0 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ The library follows a static facade pattern for ease of use:
- **Metrics/MetricsProvider.cs** - Manages `Meter` for counters, histograms, gauges
- **Logging/LoggerProvider.cs** - Wraps `ILoggerFactory` for OpenTelemetry-integrated logging
- **Exceptions/ExceptionTracker.cs** - Captures exceptions manually and via global handlers
- **Extensions/ServiceCollectionExtensions.cs** - DI integration via `AddOtel4Vsix()`

## Key Implementation Details

Expand Down
21 changes: 0 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,27 +276,6 @@ VsixTelemetry.Initialize(config);

---

## Dependency Injection

If your extension uses dependency injection:

```csharp
using Otel4Vsix.Extensions;

public void ConfigureServices(IServiceCollection services)
{
services.AddOtel4Vsix(config =>
{
config.ServiceName = "MyExtension";
config.OtlpEndpoint = "http://localhost:4317";
});

// Now ILogger<T> is available via DI
}
```

---

## Supported Backends

Otel4Vsix exports telemetry via OTLP, which is supported by:
Expand Down

This file was deleted.

Loading