I’m writing a python script to monitor my sync status of my main syncthing (version 2.0.9) host via the API. I got warnings for the host itself:
”Device ‘bart’ has issues: Last seen 488384 hours ago”.
I checked the data on the API endpoint:
Device: bart
Raw stats: {
"lastSeen": "1970-01-01T00:00:00Z",
"lastConnectionDurationS": 0
}
I tried the API call on a different device with the same output:
Device: nas
Raw stats: {
"lastSeen": "1970-01-01T00:00:00Z",
"lastConnectionDurationS": 0
}
On the WebUI i can’t see any problems.
Also my API endpoints has a folder which was never synced but shows perfectly fine on the WebUI. I don’t know whether this is related to the device issue above?
Raw stats: {
"lastFile": {
"at": "0001-01-01T00:00:00Z",
"filename": "",
"deleted": false
},
"lastScan": "2025-09-18T08:15:34Z"
}
This folder is also reported on every device on my syncthing network.
Has anyone an idea where i can’t start to troubleshoot that issue?