diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index d3346516a..83da25b21 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -3,6 +3,7 @@ - Return a better error on enrolling and the Elasticsearch version is incompatible. {pull}1211[1211] - Give a grace period when starting the unenroll monitor. {issue}1500[1500] - Fixes a race condition between the unenroller goroutine and the main goroutine for the coordinator monitor. {issues}1738[1738] +- Remove events from agent checkin body. {issue}1774[1774] ==== New Features diff --git a/internal/pkg/api/schema.go b/internal/pkg/api/schema.go index 7a7e3a0f3..481632b71 100644 --- a/internal/pkg/api/schema.go +++ b/internal/pkg/api/schema.go @@ -80,7 +80,6 @@ type EnrollResponse struct { type CheckinRequest struct { Status string `json:"status"` AckToken string `json:"ack_token,omitempty"` - Events []Event `json:"events"` LocalMeta json.RawMessage `json:"local_metadata"` }