Add a note to a JSM alert
jsm_add_alert_noteAppend a note to an alert's activity timeline without changing its state. Use it to record triage findings, link a runbook or dashboard, or leave context for the next responder.
Instructions
Append a note to a JSM alert's activity timeline without changing its state.
Use this to record triage findings, link a runbook or dashboard, or leave context for the next responder. It does not acknowledge, close, or reassign the alert.
Args:
alert_id (string): the full alert id (not the tinyId)
note (string): the note text
user (string, optional): actor name/email; defaults to the credential owner
source (string, optional): source label for the activity log
Returns: { "requestId": string, "result": string, "alert_id": string }
IMPORTANT: this action is asynchronous. Verify with jsm_get_request_status using the returned requestId.
Examples:
"Note that this correlates with the 14:02 deploy" -> alert_id=, note="Correlates with deploy 4412 at 14:02 UTC"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | Note text to record on the alert's activity timeline. | |
| alert_id | Yes | Full alert id, e.g. '9b251e07-73c9-4907-9996-8cb53a6a20d0-1704440650350'. This is NOT the short tinyId shown in the JSM UI — get the full id from jsm_list_alerts first. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | ||
| alert_id | Yes | ||
| requestId | No |