summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/ssgreg/journald@v1.0.0/doc.go
blob: c67836e9a16663fb6a89b36e12a416f23ea9ba48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
Package journald offers Go implementation of systemd Journal's native API for logging.  Key features are:

	- based on connection-less socket
	- work with messages of any size and type
	- client can use any number of separation sockets

Let's look at what the journald provides as Go APIs for logging:

	package main

	import (
		"github.com/ssgreg/journald"
	)

	func main() {
		journald.Print(journald.PriorityInfo, "Hello World!")
	}

The JSON representation of the journal entry this generates:

	{
		"PRIORITY": "6",
		"MESSAGE": "Hello World!",
		"_PID": "3965",
		"_COMM": "simple",
		...
	}

The primary reason for using the Journal's native logging APIs is a not just the source code location however: it is to allow passing additional structured log messages from the program into the journal. This additional log data may the be used to search the journal for, is available for consumption for other programs, and might help the administrator to track down issues beyond what is expressed in the human readable message text. Here's and example how to do that with journals.Send:

	package main

	import (
		"os"
		"runtime"

		"github.com/ssgreg/journald"
	)

	func main() {
		journald.Send("Hello World!", journald.PriorityInfo, map[string]interface{}{
			"HOME":        os.Getenv("HOME"),
			"TERM":        os.Getenv("TERM"),
			"N_GOROUTINE": runtime.NumGoroutine(),
			"N_CPUS":      runtime.NumCPU(),
			"TRACE":       runtime.ReadTrace(),
		})
	}

This will write a log message to the journal much like the earlier examples. However, this times a few additional, structured fields are attached:

	{
		"PRIORITY": "6",
		"MESSAGE": "Hello World!",
		"HOME": "/root",
		"TERM": "xterm",
		"N_GOROUTINE": "2",
		"N_CPUS": "4",
		"TRACE": [103,111,32,49,46,56,32,116,114,97,99,101,0,0,0,0],
		"_PID": "4037",
		"_COMM": "send",
		...
	}

Our structured message includes six fields. The first thow we passed are well-known fields:
1. MESSAGE= is the actual human readable message part of the structured message.
2. PRIORITY= is the numeric message priority value as known from BSD syslog formatted as an integer string.

Applications may relatively freely define additional fields as they see fit (we defined four pretty arbitrary ones in our example). A complete list of the currently well-known fields is available here: https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html

For more details visit https://github.com/ssgreg/journald-send

Thanks to http://0pointer.de/blog/ for the inspiration.
*/
package journald