dart_seq 3.0.0
dart_seq: ^3.0.0 copied to clipboard
A Dart logging client for (batched) Seq HTTP ingestion with automated retries.
dart_seq is a powerful and versatile logging solution for Dart, designed to simplify the process of sending log entries to a Seq server. It supports all platforms supported by Dart, including Windows, Android, iOS, macOS, Linux and Web, making it a versatile choice for logging in various Dart applications.
Features #
- Logging to Seq Server:
dart_seqseamlessly integrates with Seq servers, enabling you to send log entries directly to your Seq instance. This allows you to centralize and analyze logs efficiently, aiding in troubleshooting, debugging, and monitoring your Dart applications. - Cross-Platform Support: With
dart_seq, you can enjoy consistent logging capabilities across all Dart-supported platforms. It leverages the inherent cross-platform capabilities of Dart, making it easy to adopt and utilize in your applications, regardless of the target platform. - Customizable Seq Client and Caching Implementations:
dart_seqprovides an intuitive and flexible interface to customize your Seq client and caching implementations. This enables you to tailor the logging behavior to your specific requirements and preferences, adapting the library to various use cases and scenarios in your Dart applications. - Batch Sending of Events:
dart_seqoptimizes log transmission by sending events to Seq in batches. This helps minimize network overhead and improves overall logging performance, especially in high-traffic scenarios.
With dart_seq, logging in your Dart applications becomes a breeze, ensuring that your logs are efficiently delivered to Seq servers across multiple platforms.
Getting Started #
To start using dart_seq in your Dart/Flutter application, follow these steps:
- Install this library and the HTTP client:
dart pub add dart_seq dart_seq_http_client - Instantiate client, cache and logger (see usage below)
- Enjoy!
Usage #
Note This library provides just the interfaces and scaffolding. To actually log events, you need to use a client implementation like
dart_seq_http_client.
After the installation, you can use the library like this:
import 'package:dart_seq/dart_seq.dart';
import 'package:dart_seq_http_client/dart_seq_http_client.dart';
Future<void> main() async {
// Use the HTTP client implementation to create a logger
final logger = SeqHttpLogger.create(
host: 'http://localhost:5341',
globalContext: {
'App': 'Example',
},
);
// Log a message
await logger.log(
SeqLogLevel.information,
'test, logged at: {Timestamp}',
context: {
'Timestamp': DateTime.now().toUtc().toIso8601String(),
},
);
// Flush the logger to ensure all messages are sent
await logger.flush();
}
which then can be viewed in your Seq instance:

Flush Behavior #
SeqLogger.flush() sends at most backlogLimit events from the cache to the server via
SeqClient.sendEvents(). The method handles two outcomes:
Successful / partial send (results returned) #
When sendEvents returns a list of SeqEventResult:
- All events are removed from cache (they were all attempted).
- If all succeeded - minimum log level is updated, done.
- If some failed, the default behavior uses
SeqEventResult.isPermanent:
isPermanent |
Default (no onFlushError) |
With onFlushError |
|---|---|---|
true |
Dropped - event is malformed, retry would fail again | Callback decides |
false |
Re-queued to cache for retry | Callback decides |
Total failure (exception thrown) #
When sendEvents throws (network error, auth failure, etc.):
No onFlushError |
With onFlushError |
|
|---|---|---|
| Cache | Untouched - events were never sent | Removed, then callback returns which to re-queue |
Flush triggers #
| Trigger | Condition | Awaited? |
|---|---|---|
| Auto-flush | autoFlush == true && cache.count >= backlogLimit |
Yes (in send()) |
| Timer flush | flushInterval != null && cache.count > 0 |
No (unawaited) |
| Manual | Caller calls flush() |
Up to caller |
If flush() is already running, subsequent calls return immediately (concurrent guard).
Configuration flags #
| Flag | Default | Effect |
|---|---|---|
autoFlush |
true |
Auto-flush when cache reaches backlogLimit |
backlogLimit |
50 |
Max events per flush; auto-flush threshold |
throwOnError |
false |
false: errors swallowed, logged via onDiagnosticLog. true: propagated |
flushInterval |
null |
Timer-based flush after period of inactivity (reset on each send()) |
onFlushError |
null |
Custom error handler. When null, built-in defaults apply (see above) |
Custom onFlushError #
Only needed if you want behavior beyond the defaults (e.g. logging, retry limits):
onFlushError: (results, error) async {
final toRetry = <SeqEvent>[];
for (final r in results.where((r) => !r.isSuccess)) {
if (r.isPermanent) {
// Malformed event - retrying would fail again
log('Dropping permanently rejected event: ${r.error}');
continue;
}
// Transient failure - retry
toRetry.add(r.event);
}
return toRetry;
}
Error Handling #
See the dart_seq_http_client README for
documentation on HTTP-specific error handling, per-event retry on batch failures, and the
SeqClientException hierarchy.
Additional information #
- Feature requests and bug reports should be reported using GitHub issues.
- Contributions are welcome! If you'd like to contribute, please follow the guidelines outlined in the CONTRIBUTING.md file.
License #
dart_seq is licensed under the MIT License. See the LICENSE file for more information.
This project is not affiliated with Datalust, the creators of Seq. The library is an independent open-source project developed by the community for the community.