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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Remember that the keywords that you can use are the following:
19
19
- RPM packages now restore `local_config.yaml` from the `.rpmsave` backup left by a prior uninstall.
20
20
21
21
### enhancement
22
+
- On-host agent-type parsing now validates `reported_version_package`: it must reference a declared package, and is required when more than one package is defined. Invalid configurations are rejected at parse time with a descriptive error. This `reported_version_package` will be used to know which version to report as `agent.version`.
22
23
- Add support for `copy_from_file` for on-host "in-agent" filesystem.
23
24
- Add support for `shared_filesystem` in on-host agent types.
24
25
- On-host self-update: skip sub-agent reconciliation when a self-update is in progress. When a single remote config both bumps the Agent Control version and changes a sub-agent's `agent_type`, the changed sub-agent is no longer recreated moments before the process restarts; the new config is stored and re-applied cleanly by the restarted process, avoiding a redundant sub-agent restart and telemetry gap.
Copy file name to clipboardExpand all lines: agent-control/src/agent_type/runtime_config/on_host.rs
+175-9Lines changed: 175 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -19,25 +19,88 @@ pub mod rendered;
19
19
/// The definition for an on-host supervisor.
20
20
///
21
21
/// It contains the instructions of what are the agent binaries, command-line arguments, the environment variables passed to it and the restart policy of the supervisor.
0 commit comments