2 implementations of ITelemetryHookConfigurator
aspire (1)
Agents\Hooks\TelemetryHookConfigurator.cs (1)
22internal sealed class TelemetryHookConfigurator : ITelemetryHookConfigurator
Aspire.Cli.Tests (1)
Commands\AgentInitCommandTests.cs (1)
976private sealed class ThrowingTelemetryHookConfigurator(string message) : ITelemetryHookConfigurator
7 references to ITelemetryHookConfigurator
aspire (6)
Agents\Hooks\ITelemetryHookConfigurator.cs (1)
48/// The outcome of <see cref="ITelemetryHookConfigurator.ConfigureAsync"/>.
Agents\Hooks\TelemetryHookConfigurator.cs (1)
11/// Default <see cref="ITelemetryHookConfigurator"/>. Materializes the hook scripts once and writes the
Commands\AgentInitCommand.cs (2)
31private readonly ITelemetryHookConfigurator _telemetryHookConfigurator; 39ITelemetryHookConfigurator telemetryHookConfigurator,
Commands\McpInitCommand.cs (1)
28Aspire.Cli.Agents.Hooks.ITelemetryHookConfigurator telemetryHookConfigurator,
Program.cs (1)
564builder.Services.AddSingleton<Aspire.Cli.Agents.Hooks.ITelemetryHookConfigurator, Aspire.Cli.Agents.Hooks.TelemetryHookConfigurator>();
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
690public Func<IServiceProvider, ITelemetryHookConfigurator> TelemetryHookConfiguratorFactory { get; set; }