Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Activity changes] Upcoming activities run as listed (one queue) and can be canceled #23075

Draft
wants to merge 3 commits into
base: docs-v4.60.0
Choose a base branch
from
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/Contributing/Audit-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1374,6 +1374,48 @@ This activity contains the following fields:
}
```

## canceled_script

Generated when upcoming script is canceled on a host.

This activity contains the following fields:
- host_id: ID of the host on which the script was canceled.
- host_display_name: Display name of the host.
- script_id: ID of the script that's canceled.
- script_name: Name of the script that's canceled.

#### Example

```json
{
"host_id": 42,
"host_display_name": "Anna's MacBook Pro",
"script_id": 24,
"script_name": "set-timezone.sh"
}
```

## canceled_software_install

Generated when upcoming software install is canceled on a host.

This activity contains the following fields:
- host_id: ID of the host on which the script was canceled.
- host_display_name: Display name of the host.
- software_title_id: ID of the software title that's canceled.
- software_title_name: Name of the software title that's canceled.
rachaelshaw marked this conversation as resolved.
Show resolved Hide resolved

#### Example

```json
{
"host_id": 42,
"host_display_name": "Anna's MacBook Pro",
"software_title_id": 3667,
"software_title_name": "Adobe Acrobat.app"
}
```

## added_ndes_scep_proxy

Generated when NDES SCEP proxy is configured in Fleet.
Expand Down
Loading