recordGauge abstract method
Records a gauge metric (current value).
Use for measurements like pool size, active connections, etc.
Returns ResultDart with success or TelemetryException on error.
Implementation
Future<ResultDart<void, TelemetryException>> recordGauge({
required String name,
required double value,
Map<String, String> attributes = const {},
});