feat(smart-proxy): add UDP transport support with QUIC/HTTP3 routing and datagram handler relay
This commit is contained in:
@@ -218,6 +218,13 @@ export class RustMetricsAdapter implements IMetrics {
|
||||
},
|
||||
};
|
||||
|
||||
public udp = {
|
||||
activeSessions: (): number => this.cache?.activeUdpSessions ?? 0,
|
||||
totalSessions: (): number => this.cache?.totalUdpSessions ?? 0,
|
||||
datagramsIn: (): number => this.cache?.totalDatagramsIn ?? 0,
|
||||
datagramsOut: (): number => this.cache?.totalDatagramsOut ?? 0,
|
||||
};
|
||||
|
||||
public percentiles = {
|
||||
connectionDuration: (): { p50: number; p95: number; p99: number } => {
|
||||
return { p50: 0, p95: 0, p99: 0 };
|
||||
|
||||
Reference in New Issue
Block a user