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
* Introduced the OpenTelemetry configuration for self-instrumentation
* Refactored the previous logging config and moved it to the new instrumentation module
---------
Co-authored-by: Christian Felipe Álvarez <calvarez@newrelic.com>
// Agent Control command call was a "one-shot" operation. Exit successfully after performing.
37
37
CliCommand::OneShot(op) => {
@@ -40,7 +40,7 @@ fn main() -> ExitCode {
40
40
}
41
41
};
42
42
43
-
match_main(agent_control_config){
43
+
match_main(agent_control_config, tracer){
44
44
Err(e) => {
45
45
error!("The agent control main process exited with an error: {e}");
46
46
ExitCode::FAILURE
@@ -62,11 +62,10 @@ fn main() -> ExitCode {
62
62
/// Could not read Agent Control config from /invalid/path: error loading the agent control config: \`error retrieving config: \`missing field \`agents\`\`\`
63
63
/// Error: ConfigRead(LoadConfigError(ConfigError(missing field \`agents\`)))
0 commit comments