Future<String> checkBasicNodeHealth() async { final path = "$endpoint/-/healthy"; final resp = await http.get(path); return resp.data["message"]; }