You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to zeromq
Hello Team,
How to open a zmq SUB socket on this endpoint ipc:///*-events.socket That will aggregate and publish a status message from our core services (rate at 1Hz) of the following format (as go json struct): type Status int const ( FATAL Status = iota ERROR WARNING OKAY )
type Event struct { Name string `json:"name"` Service string `json:"service"` Timestamp time.Time `json:"timestamp"` Status Status `json:"status"` Uptime time.Duration `json:"uptime"` Key Key `json:"key"` Message string `json:"message"` }