profilesSampleRate property

  1. @override
  2. @experimental
double? get profilesSampleRate

The sample rate for profiling traces in the range of 0.0 to 1.0. This is relative to tracesSampleRate - it is a ratio of profiled traces out of all sampled traces. At the moment, only apps targeting iOS and macOS are supported.

Implementation

@override
@meta.experimental
double? get profilesSampleRate {
  // ignore: invalid_use_of_internal_member
  return super.profilesSampleRate;
}
  1. @override
  2. @experimental
set profilesSampleRate (double? value)

The sample rate for profiling traces in the range of 0.0 to 1.0. This is relative to tracesSampleRate - it is a ratio of profiled traces out of all sampled traces. At the moment, only apps targeting iOS and macOS are supported.

Implementation

@override
@meta.experimental
set profilesSampleRate(double? value) {
  // ignore: invalid_use_of_internal_member
  super.profilesSampleRate = value;
}