recordCompletedSpan method
Future<bool>
recordCompletedSpan(
- String name,
- int startTimeMs,
- int endTimeMs, {
- ErrorCode? errorCode,
- String? parentSpanId,
- Map<
String, String> ? attributes, - List<
Map< ? events,String, dynamic> >
override
Record a completed span with the given parameters. Returns true if the span is recorded and false otherwise.
Implementation
@override
Future<bool> recordCompletedSpan(
String name,
int startTimeMs,
int endTimeMs, {
ErrorCode? errorCode,
String? parentSpanId,
Map<String, String>? attributes,
List<Map<String, dynamic>>? events,
}) async {
throwIfNotStarted();
return await methodChannel.invokeMethod(_recordCompletedSpanMethodName, {
_nameArgName: name,
_startTimeMsArgName: startTimeMs,
_endTimeMsArgName: endTimeMs,
_errorCodeArgName: errorCode?.name,
_parentSpanIdArgName: parentSpanId,
_attributesArgName: attributes,
_eventsArgName: events,
}) as bool;
}