dart_syslog 0.1.1 copy "dart_syslog: ^0.1.1" to clipboard
dart_syslog: ^0.1.1 copied to clipboard

A syslog protocol (RFC 3164/RFC 5424) implementation that only supports UDP transport.

dart_syslog #

A syslog protocol (RFC 3164/RFC 5424) implementation that only supports UDP transport.

Features #

Usage #

The following sample illustrates a program that sends syslog message to the server that runs on 192.168.10.222:5140:

import 'dart:io';

import 'package:syslog/syslog.dart';

void main() async {
  final syslog = SyslogUdpClient(
    address: InternetAddress.tryParse('192.168.10.222')!,
    port: 5140,
    tags: SyslogTags(
      hostName: 'myhost',
      appName: 'hello_syslog',
      procId: pid.toString(),
    ),
  );
  await syslog.send(facility: Facility.local0, Severity.debug, 'Hello, world!');
}
0
likes
130
pub points
29%
popularity

Publisher

verified publisherespresso3389.jp

A syslog protocol (RFC 3164/RFC 5424) implementation that only supports UDP transport.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

intl, synchronized, udp

More

Packages that depend on dart_syslog