Telegraf is an agent for collecting, processing, aggregating, and
writing metrics. Plugin-driven, it has the concept of 4 distinct plugin
types:
* Input Plugins collect metrics from the system, services, or 3rd party
APIs
* Processor Plugins transform, decorate, and/or filter metrics
* Aggregator Plugins create aggregate metrics (e.g. mean, min, max,
quantiles, etc.)
* Output Plugins write metrics to various destinations
note that input.system is currently broken on OpenBSD (probably because
of gopsutil or go internals), tracked in
https://github.com/influxdata/telegraf/issues/5157. Other plugins seem
to work fine.
As it was done for influxdb (telegraf comes from the same source),
bundle the go deps and selfhost the distfile.
ok danj@
The new syntax to have version with '-' character:
-MODCARGO_CRATES += aho-corasick-0.6.8 # Unlicense/MIT
+MODCARGO_CRATES += aho-corasick 0.6.8 # Unlicense/MIT
update all customers of devel/cargo to use the new syntax
ok landry@
- bootorder support (CONFIG_BOOTORDER=y)
- setting the default for screen-and-debug to 0 since for vmd screen is
always the serial port (which is used for debug)
- Use a while (len--) inb() loop to read from IO ports instead of 'rep insb'
This will allow to implement fw_cfg support into vmd(4) and through that to
support alternative boot devices.
I tested OpenBSD (disk and cdrom boots) and a Linux guests and all still works.
OK reyk@, sthen@ and mlarkin@
archives, and directories
ok sthen@
diffoscope will try to get to the bottom of what makes files or
directories different. It will recursively unpack archives of many kinds
and transform various binary formats into more human readable form to
compare them. It can compare two tarballs, ISO images, or PDF just as
easily.
It can be scripted through error codes, and a report can be produced
with the detected differences. The report can be text or HTML. When no
type of report has been selected, diffoscope defaults to write a text
report on the standard output.
diffoscope was initially started by the "reproducible builds" Debian
project and now being developed as part of the wider "Reproducible
Builds" initiative. It is meant to be able to quickly understand why two
builds of the same package produce different outputs. diffoscope was
previously named debbindiff.