1 instantiation of KestrelTrace
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\KestrelServerImpl.cs (1)
81
var trace = new
KestrelTrace
(loggerFactory);
36 references to KestrelTrace
Microsoft.AspNetCore.Server.Kestrel.Core (35)
Internal\ConnectionDispatcher.cs (1)
24
private
KestrelTrace
Log => _serviceContext.Log;
Internal\Http\Http1OutputProducer.cs (2)
30
private readonly
KestrelTrace
_log;
76
KestrelTrace
log,
Internal\Http\HttpProtocol.cs (1)
108
protected
KestrelTrace
Log => ServiceContext.Log;
Internal\Http\MessageBody.cs (1)
46
protected
KestrelTrace
Log => _context.ServiceContext.Log;
Internal\Http2\Http2Connection.cs (1)
211
public
KestrelTrace
Log => _context.ServiceContext.Log;
Internal\Http2\Http2FrameWriter.cs (1)
81
private readonly
KestrelTrace
_log;
Internal\Http2\Http2OutputProducer.cs (1)
27
private readonly
KestrelTrace
_log;
Internal\Http3\Http3Connection.cs (1)
94
private
KestrelTrace
Log => _context.ServiceContext.Log;
Internal\Http3\Http3ControlStream.cs (1)
70
public
KestrelTrace
Log => _context.ServiceContext.Log;
Internal\Http3\Http3FrameWriter.cs (2)
39
private readonly
KestrelTrace
_log;
59
public Http3FrameWriter(ConnectionContext connectionContext, ITimeoutControl timeoutControl, MinDataRate? minResponseDataRate, MemoryPool<byte> memoryPool,
KestrelTrace
log, IStreamIdFeature streamIdFeature, Http3PeerSettings clientPeerSettings, IHttp3Stream http3Stream)
Internal\Http3\Http3OutputProducer.cs (2)
21
private readonly
KestrelTrace
_log;
40
KestrelTrace
log)
Internal\HttpConnection.cs (1)
51
private
KestrelTrace
Log => _context.ServiceContext.Log;
Internal\Infrastructure\ConnectionManager.cs (3)
15
private readonly
KestrelTrace
_trace;
17
public ConnectionManager(
KestrelTrace
trace, long? upgradedConnectionLimit)
22
public ConnectionManager(
KestrelTrace
trace, ResourceCounter upgradedConnections)
Internal\Infrastructure\Heartbeat.cs (2)
16
private readonly
KestrelTrace
_trace;
21
public Heartbeat(IHeartbeatHandler[] callbacks, TimeProvider timeProvider, IDebugger debugger,
KestrelTrace
trace, TimeSpan interval)
Internal\Infrastructure\KestrelConnection.cs (2)
27
KestrelTrace
logger,
38
protected
KestrelTrace
Logger { get; }
Internal\Infrastructure\KestrelConnectionOfT.cs (1)
21
KestrelTrace
logger,
Internal\Infrastructure\PipeWriterHelpers\TimingPipeFlusher.cs (2)
21
private readonly
KestrelTrace
_log;
25
KestrelTrace
log)
Internal\Infrastructure\TransportManager.cs (1)
34
private
KestrelTrace
Trace => _serviceContext.Log;
Internal\KestrelServerImpl.cs (4)
81
var
trace = new KestrelTrace(loggerFactory);
116
private
KestrelTrace
Trace => ServiceContext.Log;
428
private static ConnectionDelegate EnforceConnectionLimit(ConnectionDelegate innerDelegate, long? connectionLimit,
KestrelTrace
trace, KestrelMetrics metrics)
438
private static MultiplexedConnectionDelegate EnforceConnectionLimit(MultiplexedConnectionDelegate innerDelegate, long? connectionLimit,
KestrelTrace
trace, KestrelMetrics metrics)
Internal\ServiceContext.cs (1)
18
public
KestrelTrace
Log { get; set; } = default!;
Internal\WebTransport\WebTransportStream.cs (1)
23
private readonly
KestrelTrace
_log;
Middleware\ConnectionLimitMiddleware.cs (3)
15
private readonly
KestrelTrace
_trace;
18
public ConnectionLimitMiddleware(Func<T, Task> next, long connectionLimit,
KestrelTrace
trace, KestrelMetrics metrics)
24
internal ConnectionLimitMiddleware(Func<T, Task> next, ResourceCounter concurrentConnectionCounter,
KestrelTrace
trace, KestrelMetrics metrics)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
Http1\Http1ConnectionTests.cs (1)
839
var
previousLog = _serviceContext.Log;