-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathjournal.go
More file actions
35 lines (29 loc) · 765 Bytes
/
journal.go
File metadata and controls
35 lines (29 loc) · 765 Bytes
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
package fleet
import (
"fmt"
)
// Journal prints the systemd journal of target unit(s)
func (c *FleetClient) Journal(target string) (err error) {
units, err := c.Units(target)
if err != nil {
return
}
for _, unit := range units {
c.runJournal(unit)
}
return
}
// runJournal tails the systemd journal for a given unit
func (c *FleetClient) runJournal(name string) (exit int) {
u, err := c.Fleet.Unit(name)
if suToGlobal(*u) {
fmt.Fprintf(c.errWriter, "Unable to get journal for global unit %s. Check on a host directly using journalctl.\n", name)
return 1
}
machineID, err := c.findUnit(name)
if err != nil {
return 1
}
command := fmt.Sprintf("journalctl --unit %s --no-pager -n 40 -f", name)
return c.runCommand(command, machineID)
}