Skip to content

Commit

Permalink
Merge pull request #10125 from Icinga/output-exit-code-2.14
Browse files Browse the repository at this point in the history
Mention plugin exit codes outside [0..3] in the plugin output and warning log
  • Loading branch information
yhabteab committed Sep 17, 2024
2 parents 7a04966 + 1446139 commit 06b01cb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/base/process.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include "base/i2-base.hpp"
#include "base/dictionary.hpp"
#include <cstdint>
#include <iosfwd>
#include <deque>
#include <vector>
Expand All @@ -25,7 +26,7 @@ struct ProcessResult
pid_t PID;
double ExecutionStart;
double ExecutionEnd;
long ExitStatus;
int_fast64_t ExitStatus;
String Output;
};

Expand Down
4 changes: 3 additions & 1 deletion lib/icinga/checkresult.ti
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include <cstdint>

library icinga;

namespace icinga
Expand Down Expand Up @@ -50,7 +52,7 @@ class CheckResult
[state] Timestamp execution_end;

[state] Value command;
[state] int exit_status;
[state] int_fast64_t exit_status;

[state, enum] ServiceState "state";
[state, enum] ServiceState previous_hard_state;
Expand Down
12 changes: 10 additions & 2 deletions lib/methods/pluginchecktask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "base/utility.hpp"
#include "base/process.hpp"
#include "base/convert.hpp"
#include <sstream>

using namespace icinga;

Expand Down Expand Up @@ -66,15 +67,22 @@ void PluginCheckTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, co
Checkable::CurrentConcurrentChecks.fetch_sub(1);
Checkable::DecreasePendingChecks();

String output = pr.Output.Trim();

if (pr.ExitStatus > 3) {
Process::Arguments parguments = Process::PrepareCommand(commandLine);
Log(LogWarning, "PluginCheckTask")
<< "Check command for object '" << checkable->GetName() << "' (PID: " << pr.PID
<< ", arguments: " << Process::PrettyPrintArguments(parguments) << ") terminated with exit code "
<< pr.ExitStatus << ", output: " << pr.Output;
}

String output = pr.Output.Trim();
std::stringstream crOutput;

crOutput << "<Terminated with exit code " << pr.ExitStatus
<< " (0x" << std::noshowbase << std::hex << std::uppercase << pr.ExitStatus << ").>";

output += crOutput.str();
}

std::pair<String, String> co = PluginUtility::ParseCheckOutput(output);
cr->SetCommand(commandLine);
Expand Down

0 comments on commit 06b01cb

Please sign in to comment.