Retire domains nothing has probed in 90 days, and notice NPM changes within five minutes

This commit is contained in:
Gmer4Lfe
2026-08-16 12:12:08 -04:00
parent 7b65b64864
commit 28273ffc2a
3 changed files with 31 additions and 4 deletions
+4 -1
View File
@@ -1044,8 +1044,11 @@ function _renderUptimeHistory() {
const st = stale(d);
const dot = st ? '#333'
: (rec.state === 'down' ? '#ef5350' : (rec.state === 'up' ? '#2d5a2d' : '#333'));
// "Not probed" rather than "not in NPM": the probe also skips hosts that are merely switched
// off in the Proxies tab, and calling a disabled host deleted would send someone looking for
// something that is still sitting there with its toggle turned off.
const dotT = st ? ('last probed ' + (rec.last_at ? _ago(rec.last_at) + ' ago' : 'never')
+ ' — no longer in NPM, so nothing is checking it')
+ ' — not being probed: disabled or removed in NPM')
: (rec.state === 'down' ? 'down now' : (rec.state === 'up' ? 'up now' : 'not yet probed'));
const cells = _UP_PERIODS.map(([k]) => {
const p = h[k];