In AYON there is an Events section where you can track status changes, task creation, etc. But new comments on tasks are not visible there. Is it possible to track them?
For tasks I listen to events like:
entity.task.created,
entity.version.status_changed, etc. Is there a similar way to track comments?
Comments are activities.
And, in event details, you can additional info like
activity_type.
So, you can get all activities where activity type is comment.
I’m aware of these activities:
activity.created
activity.updated
activity.deleted
1 Like
On server version 1.8.5, is this not implemented? For some reason, comments are not displayed in events, but I can intercept them in code via activity.created. However, this event contains very little information.
For example, I don’t have the comment text or payload.
"id": "9a5daba2f5e511f08f2e0242ac120004",
"hash": "9a5daba2f5e511f08f2e0242ac120004",
"topic": "activity.created",
"status": "finished",
"retries": 0,
"project": "TEST",
"user": "admin",
"sender": "kcJjPvMf8fJxqkXY4DNvL1",
"depends_on": None,
"description": "",
"summary": {
"activity_id": "9a5a4b10f5e511f0932bf1a708fe715e",
"activity_type": "comment",
"references": [
{
"entity_type": "folder",
"entity_id": "0f91d780f2f911f0ba8d7d3d214d2ba7",
"reference_type": "relation",
},
{
"entity_type": "task",
"entity_id": "1eae8cf0f55011f098ce71764ce8b68a",
"reference_type": "origin",
},
],
},
"payload": {},
"created_at": "2026-01-20T09:51:33.463249",
"updated_at": "2026-01-20T09:51:33.463254",
}
Is this due to the server version, or am I doing something wrong?