Show online in CLI & API when isOnline() reports so
This commit is contained in:
parent
4532915be1
commit
000c02dad9
2 changed files with 2 additions and 3 deletions
|
@ -513,9 +513,7 @@ func nodesToPtables(
|
||||||
}
|
}
|
||||||
|
|
||||||
var online string
|
var online string
|
||||||
if lastSeen.After(
|
if machine.Online {
|
||||||
time.Now().Add(-5 * time.Minute),
|
|
||||||
) { // TODO: Find a better way to reliably show if online
|
|
||||||
online = pterm.LightGreen("online")
|
online = pterm.LightGreen("online")
|
||||||
} else {
|
} else {
|
||||||
online = pterm.LightRed("offline")
|
online = pterm.LightRed("offline")
|
||||||
|
|
|
@ -767,6 +767,7 @@ func (machine *Machine) toProto() *v1.Machine {
|
||||||
GivenName: machine.GivenName,
|
GivenName: machine.GivenName,
|
||||||
Namespace: machine.Namespace.toProto(),
|
Namespace: machine.Namespace.toProto(),
|
||||||
ForcedTags: machine.ForcedTags,
|
ForcedTags: machine.ForcedTags,
|
||||||
|
Online: machine.isOnline(),
|
||||||
|
|
||||||
// TODO(kradalby): Implement register method enum converter
|
// TODO(kradalby): Implement register method enum converter
|
||||||
// RegisterMethod: ,
|
// RegisterMethod: ,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue