Receiving transient alerts (NASA GCN)
Your installation can listen to NASA's General Coordinates Network (GCN), the stream over which space observatories announce transient events — gamma-ray bursts from Swift and SVOM, X-ray transients from Einstein Probe. Alerts arrive as database rows within seconds of the satellite's downlink and feed the Target-of-Opportunity features as they land in upcoming releases.
The service is optional. If you skipped it during arcsecond setup, re-run:
arcsecond setup --with-alerts
arcsecond startNetwork prerequisites
The consumer opens outbound TLS (port 443) connections to exactly two hosts, and listens on nothing:
kafka.gcn.nasa.govauth.gcn.nasa.gov
That is the complete list to hand your IT department if the observatory network is restricted.
Get your GCN credentials (about two minutes, once per installation)
GCN identifies each consumer individually — there are no shared Arcsecond credentials. Your installation gets its own identity, its own quota, and its own revocation switch.
- Sign in (or create an account) at https://gcn.nasa.gov/quickstart.
- Follow the Start streaming GCN Notices flow to create client credentials. When asked for a scope, select
gcn.nasa.gov/kafka-public-consumer. - Copy the client ID and client secret it shows you.
Configure
Open the .env file in your Arcsecond folder and paste the two values:
GCN_CONSUMER_CLIENT_ID=your-client-id
GCN_CONSUMER_CLIENT_SECRET=your-client-secretThen recreate just the alerts service, so it reads them:
arcsecond restart alertsVerify
arcsecond logs alerts -fWithin about a minute you should see:
GCN consumer started (group.id=io.arcsecond.local.…, 32 topics).
GCN connection established (heartbeat received).The heartbeat line repeats at most once per hour — that is the liveness signal. Real alerts are rare; a quiet log between heartbeats is normal and correct. Ctrl-C leaves the log; the service keeps running.
Troubleshooting
| Symptom | Meaning and next action |
|---|---|
arcsecond status does not list alerts | The service is not in your docker-compose.yml. Run arcsecond setup --with-alerts, then arcsecond start. If you have customized your compose file, the packaged version lands in docker-compose.latest.yml — merge the # >>> arcsecond:alerts block from there by hand. |
Log says GCN credentials not configured — transient alerts disabled | The two .env keys are empty. Follow Configure above, then arcsecond restart alerts. |
| Repeated authentication/SASL errors in the log | GCN rejected your credentials. Re-create them at https://gcn.nasa.gov/quickstart (check the scope is gcn.nasa.gov/kafka-public-consumer), update .env, then arcsecond restart alerts. |
| Connected, but no heartbeat line | Outbound 443 to the two hosts above is likely blocked. Test from the host: curl -sI https://auth.gcn.nasa.gov. |
Log says Installation not initialized | The backend has not completed its first boot yet. Run arcsecond start, which waits for the backend to be ready, then arcsecond restart alerts. |
Turning it off
Remove the service from your installation; the next start takes its container down:
arcsecond setup --without-alerts
arcsecond startYour GCN credentials stay in .env; delete the two lines (and revoke the credential on gcn.nasa.gov) if you want them gone for good. arcsecond setup --with-alerts brings the service back at any time.