stats property

Map<String, int> get stats

Statistics about this service instance.

Implementation

Map<String, int> get stats => {
  'tracked': _totalTracked,
  'flushed': _totalFlushed,
  'dropped': _totalDropped,
  'pending': _batch.length,
};