ispectify_riverpod 7.0.0-dev4
ispectify_riverpod: ^7.0.0-dev4 copied to clipboard
Riverpod ProviderObserver for ISpect with add, update, dispose, fail, and redacted metadata logging.
ispectify_riverpod plugs the riverpod and flutter_riverpod ecosystem into the ISpect toolkit. One ProviderObserver forwards every provider add, update, dispose, and failure through the log pipeline, so the whole provider lifecycle shows up in the log viewer.
- Adds, updates, disposes, and failures with full redacted values by default.
- Per-provider filtering. Mute noisy providers without touching their code.
- Zero configuration. Hand the observer to
ProviderScope(orProviderContainer) and you are done.
Install #
dependencies:
flutter_riverpod: ^2.5.0
ispectify: ^7.0.0-dev4
ispectify_riverpod: ^7.0.0-dev4
Quick start #
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:ispect/ispect.dart';
import 'package:ispectify_riverpod/ispectify_riverpod.dart';
ISpect.run(
() => runApp(
ProviderScope(
observers: [ISpectRiverpodObserver(logger: ISpect.logger)],
child: const MyApp(),
),
),
);
The observer emits logs under the riverpod-add, riverpod-update, riverpod-dispose, and riverpod-fail log-type keys, each with a dedicated icon, palette entry, and localized description in the log viewer. Filter them in the debug panel or through ISpectSettingsState.disabledLogTypes.
Settings #
ISpectRiverpodSettings controls which lifecycle events are captured and
whether provider values are written to trace meta. printValues defaults to
true, so bounded provider values are retained after redaction. The compact
preset replaces them with coarse structural labels such as String, int,
List, or Map. Unnamed providers use the family label Provider.
const settings = ISpectRiverpodSettings(
printAdds: true,
printUpdates: true,
printDisposes: true,
printFails: true,
printValues: true,
enableRedaction: true,
captureMode: DiagnosticCaptureMode.balanced,
resourceLimits: DiagnosticResourceLimits.constrained,
);
Balanced capture retains guarded, bounded toJson() or toString() output
before redaction. Set captureMode: DiagnosticCaptureMode.strict when
application-defined formatters must never run.
Presets #
// Logs disabled entirely.
ISpectRiverpodObserver(settings: ISpectRiverpodSettings.silent);
// Lifecycle creation, disposal, and failures — updates are muted.
ISpectRiverpodObserver(settings: ISpectRiverpodSettings.minimal);
// Reduces values to coarse structural labels. Use when provider state may
// carry PII and you still want lifecycle visibility.
ISpectRiverpodObserver(settings: ISpectRiverpodSettings.compact);
compact uses strict capture automatically.
Omit resourceLimits to inherit the logger policy; set it locally to tune
provider-value and state-trace budgets for this observer.
Filtering noisy providers #
ISpectRiverpodObserver(
// Drop everything for providers whose name matches one of these patterns.
filters: [RegExp(r'cache'), 'metrics'],
settings: ISpectRiverpodSettings(
// Or skip individual updates by inspecting the values.
updateFilter: (provider, previous, next) =>
previous != next,
),
);
Data redaction #
Sensitive data is masked before it reaches logs or observers. Redaction is on by default. The built-in rules cover auth headers, tokens, passwords, API keys, cookies, common PII (SSN, passport, driver's license), financial data (credit cards, IBAN), and phone numbers.
The default policy is a single source of truth. Configure it once and core logs, traces, persistence, network and database adapters, BLoC and Riverpod observers, supported exports, clipboard helpers, and cURL generation resolve it when each diagnostic operation runs.
Redaction works best paired with deliberate capture. Use the integration's metadataOnly() or compact preset when payload values are unnecessary, and register project-specific keys for the business identifiers only your application understands.
The default DiagnosticCaptureMode.balanced keeps diagnostics useful by
allowing guarded toJson() and toString() capture. The result is bounded
immediately and redacted before it leaves the active pipeline. Select
DiagnosticCaptureMode.strict when application-defined formatters must never
run. Network metadataOnly() and production() presets, plus BLoC/Riverpod
compact, select strict capture automatically. Persistence, export, and
observer delivery do not re-run formatters after capture.
Global configuration #
import 'package:ispectify/ispectify.dart';
ISpectRedaction.configure(
service: RedactionService(
additionalSensitiveKeys: {
'x-custom-secret',
'internal_token',
},
additionalSensitiveKeyPatterns: [
RegExp(r'my_app_secret_\w+', caseSensitive: false),
],
fullyMaskedKeys: {'filename'},
placeholder: '***',
visibleEdgeLength: 3,
),
);
additionalSensitiveKeys and additionalSensitiveKeyPatterns extend the built-in policy. Use sensitiveKeys or sensitiveKeyPatterns only when you intentionally want to replace the corresponding defaults:
final replacementPolicy = RedactionService(
sensitiveKeys: {
'x-custom-secret',
'internal_token',
},
sensitiveKeyPatterns: [
RegExp(r'my_app_secret_\w+', caseSensitive: false),
],
);
Flutter apps can pass the same policy as ISpect.run(redactionService: ...); ISpect.dispose() restores the policy that was active before that run. An explicit RedactionService supplied to one integration stays local and takes precedence over the global policy. Existing integrations without an explicit service pick up later global reconfiguration. The policy is scoped to the current Dart isolate.
Local exceptions #
final redactor = RedactionService(
ignoredKeys: {'mobile', 'platform_token'},
ignoredValues: {'<test-token>', 'public-api-key'},
);
Disabling #
ISpectRedaction.configure(enabled: false) is the global content-masking
opt-out. Each interceptor also accepts enableRedaction: false on its settings
object for a local opt-out. Size limits, private-storage checks, the selected
capture mode, and the compile-time ISPECT_ENABLED gate remain enforced.
Only disable redaction in isolated local or deterministic test environments. Exported sessions and observer events should be handled according to the data they contain.
Supply a custom RedactionService to mask sensitive provider state:
ISpectRiverpodObserver(
logger: ISpect.logger,
settings: ISpectRiverpodSettings(
redactor: RedactionService(
additionalSensitiveKeys: {'access-token'},
),
),
);
The ISpect toolkit #
ISpect is a modular monorepo. Pick the packages your project needs. Each one works on its own.
| Package | What it does |
|---|---|
ispect |
Flutter UI: debug panel, log viewer, navigation observer, inspector integration. |
ispect_layout |
Visual layout inspector with sizes, constraints, decorations, compare mode, and a color picker. |
ispectify |
Pure-Dart logging core: typed log entries, filtering, tracing, observers. |
ispectify_dio |
Dio HTTP interceptor with automatic redaction. |
ispectify_http |
http package interceptor with automatic redaction. |
ispectify_ws |
Provider-agnostic WebSocket capture (any client) with automatic redaction. |
ispectify_db |
Database operation tracing for SQL, ORMs, and KV stores. |
ispectify_bloc |
BLoC event, state, transition, and error observer. |
ispectify_riverpod |
Riverpod provider add, update, dispose, and failure observer. |
Contributing #
Contributions are welcome. See CONTRIBUTING.md for guidelines, and open issues or pull requests at the ISpect repository.
License #
MIT. See LICENSE.