Export National Weather Service weather data for your network's Prometheus. URL structure: https://weather.gsc.io/weather?latitude=...&longitude=... Example: * Berkshires, MA: https://weather.gsc.io/weather?latitude=42.45&longitude=-73.25 * New York, NY: https://weather.gsc.io/weather?latitude=40.75&longitude=-73.98 * San Francisco, CA: https://weather.gsc.io/weather?latitude=37.77&longitude=-122.41 Example Prometheus configuration: { "scrape_configs": [ { "job_name": "weather-berkshires", "metrics_path": "/weather", "params": { "latitude": [ "42.45" ], "longitude": [ "-73.25" ] }, "scheme": "https", "static_configs": [ { "labels": {}, "targets": [ "weather.gsc.io" ] } ] } ] } SLA: best effort. Poll frequency: feel free to poll every 30s or so, but the data is only refreshed every few minutes. Contact: graham@grahamc.com