LogsNotifyChannel returns the channel name responsible for notifying of new logs.
(agentID uuid.UUID)
| 764 | // LogsNotifyChannel returns the channel name responsible for notifying |
| 765 | // of new logs. |
| 766 | func LogsNotifyChannel(agentID uuid.UUID) string { |
| 767 | return fmt.Sprintf("agent-logs:%s", agentID) |
| 768 | } |
| 769 | |
| 770 | type LogsNotifyMessage struct { |
| 771 | CreatedAfter int64 `json:"created_after"` |
no outgoing calls
no test coverage detected