cri-o/vendor/github.com/coreos/go-systemd
Mrunal Patel 8e5b17cf13 Switch to github.com/golang/dep for vendoring
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2017-01-31 16:45:59 -08:00
..
activation Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
daemon Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
dbus Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
examples/activation Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
fixtures Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
journal Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
login1 Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
machine1 Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
sdjournal Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
unit Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
util Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
.travis.yml Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
CONTRIBUTING.md Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
DCO Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
LICENSE Build and install from GOPATH 2017-01-17 12:09:09 -08:00
README.md Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00
test Switch to github.com/golang/dep for vendoring 2017-01-31 16:45:59 -08:00

go-systemd

Build Status godoc

Go bindings to systemd. The project has several packages:

  • activation - for writing and using socket activation from Go
  • dbus - for starting/stopping/inspecting running services and units
  • journal - for writing to systemd's logging service, journald
  • sdjournal - for reading from journald by wrapping its C API
  • machine1 - for registering machines/containers with systemd
  • unit - for (de)serialization and comparison of unit files

Socket Activation

An example HTTP server using socket activation can be quickly set up by following this README on a Linux machine running systemd:

https://github.com/coreos/go-systemd/tree/master/examples/activation/httpserver

Journal

Using the pure-Go journal package you can submit journal entries directly to systemd's journal, taking advantage of features like indexed key/value pairs for each log entry. The sdjournal package provides read access to the journal by wrapping around journald's native C API; consequently it requires cgo and the journal headers to be available.

D-Bus

The dbus package connects to the systemd D-Bus API and lets you start, stop and introspect systemd units. The API docs are here:

http://godoc.org/github.com/coreos/go-systemd/dbus

Debugging

Create /etc/dbus-1/system-local.conf that looks like this:

<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
    <policy user="root">
        <allow eavesdrop="true"/>
        <allow eavesdrop="true" send_destination="*"/>
    </policy>
</busconfig>

machined

The machine1 package allows interaction with the systemd machined D-Bus API.

Units

The unit package provides various functions for working with systemd unit files.