Watchtower Status: richtige Interpretation von "active_session_candidate" und "num_sessions"

Hallo,
leider bin ich mir immer noch nicht 100% sicher, ob der von mir gewählte Watchtower richtig arbeitet. Deshalb die folgende kurze Frage, wie man die Ausgabe von $ lncli wtclient towers richtig deutet:

Beispiel:
„towers“: [
{
„pubkey“: „02xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx“,
„addresses“: [
iixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion:9911
],
„active_session_candidate“: true,
„num_sessions“: 0,
„sessions“: [
]
},

Was ist eure Interpretation aus der Kombination
„active_session_candidate“: true
und
„num_sessions“: 0
?

Arbeitet der gezeigte Watchtower, so wie er soll?
Mein Fragezeichen ist eher der Wert „num_sessions“: 0.

Danke schon mal im Voraus.

Hier ist eine Erklärung aus @Github - lnd/docs/watchtower.md:

Watchtower Status
As as example, with the lncli wtclient tower command, you can obtain the number of sessions currently negotiated with the watchtower added above and determine whether it is currently being used for backups through the active_session_candidate value.

As as example, with the lncli wtclient tower command, you can obtain the number of sessions currently negotiated with the watchtower added above and determine whether it is currently being used for backups through the active_session_candidate value.

$ lncli wtclient tower 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
{
"pubkey": "03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63",
"addresses": ["1.2.3.4:9911"],
"active_session_candidate": true,
"num_sessions": 1,
"sessions": []
}

To obtain information about the watchtower’s sessions, users can use the --include_sessions flag.

$ lncli wtclient tower --include_sessions 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
{
"pubkey": "03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63",
"addresses": [ "1.2.3.4:9911" ],
"active_session_candidate": true,
"num_sessions": 1,
"sessions": [
{
"num_backups": 0,
"num_pending_backups": 0,
"max_backups": 1024,
"sweep_sat_per_vbyte": 10
}
]
}

So, meine verbleibende Frage lautet:
Was sagt mir the number of sessions currently negotiated with the watchtower?
Soll diese nur >0 sein, wenn etwas anliegt und ist =0, wenn alles OK ist mit der eigenen Node?