You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,26 @@
9
9
how a consumer would use the library or CLI tool (e.g. adding unit tests, updating documentation, etc) are not captured
10
10
here.
11
11
12
+
## 1.2.0 - 2024-3-18
13
+
14
+
### Added
15
+
16
+
- The following agent health related fields will be present on the response when retrieving agents:
17
+
-`serialNumber`
18
+
-`machineId`
19
+
-`agentHealthIssueTypes`
20
+
- Additional optional args in the SDK's agent client for filtering by agent health.
21
+
-`client.agents.v1.get_page()` and `client.agents.v1.get_page()` now accept:
22
+
-`agent_healthy: bool` - Retrieve only healthy agents with `True` or only unhealthy agents with `False`. Defaults to returning all agents.
23
+
-`agent_health_issue_types: List[str] | str`- Retrieve agents with any of the given health issues. Ex: `NOT_CONNECTING`
24
+
- Additional options in the CLI's agent command group for filtering by agent health:
25
+
-`incydr agents list` now accepts:
26
+
-`--healthy` - Retrieve only healthy agents.
27
+
-`--unhealthy` - Retrieve only unhealthy agents.
28
+
- Pass a comma separated list of health issue types to the unhealthy option to filter for agents with any of the given health issues. Ex: `--unhealthy NOT_CONNECTING,NOT_SENDING_SECURITY_EVENTS`
29
+
- Use `incydr agents list --help` to see more specifics on the new command options.
30
+
- See the [SDK documentation](https://developer.code42.com/sdk/clients/agents/) and the [CLI documentation](https://developer.code42.com/cli/cmds/agents/#agents-list) for more details.
0 commit comments