summaryrefslogtreecommitdiff
path: root/src/mongo/util/signal_handlers.cpp
diff options
context:
space:
mode:
authorGabriel Russell <gabriel.russell@mongodb.com>2020-02-13 11:49:46 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-13 18:16:35 +0000
commita84c09a19720b73cedb2e8ef7c5cfeedfa1c9761 (patch)
tree85ac46cd5f4ea6d5134560bf764fb9e6cf11fe4e /src/mongo/util/signal_handlers.cpp
parent6df40e01f7b6899affc4536e7e73a35802cabf98 (diff)
downloadmongo-a84c09a19720b73cedb2e8ef7c5cfeedfa1c9761.tar.gz
SERVER-45869 automatically converted structured logging
Diffstat (limited to 'src/mongo/util/signal_handlers.cpp')
-rw-r--r--src/mongo/util/signal_handlers.cpp56
1 files changed, 38 insertions, 18 deletions
diff --git a/src/mongo/util/signal_handlers.cpp b/src/mongo/util/signal_handlers.cpp
index 20e82cbc0ea..8c8d04c6254 100644
--- a/src/mongo/util/signal_handlers.cpp
+++ b/src/mongo/util/signal_handlers.cpp
@@ -43,6 +43,7 @@
#include "mongo/db/log_process_details.h"
#include "mongo/db/server_options.h"
#include "mongo/db/service_context.h"
+#include "mongo/logv2/log.h"
#include "mongo/platform/process_id.h"
#include "mongo/stdx/thread.h"
#include "mongo/util/assert_util.h"
@@ -78,24 +79,26 @@ namespace {
#ifdef _WIN32
void consoleTerminate(const char* controlCodeName) {
setThreadName("consoleTerminate");
- log() << "got " << controlCodeName << ", will terminate after current cmd ends";
+ LOGV2(23371,
+ "got {controlCodeName}, will terminate after current cmd ends",
+ "controlCodeName"_attr = controlCodeName);
exitCleanly(EXIT_KILL);
}
BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) {
switch (fdwCtrlType) {
case CTRL_C_EVENT:
- log() << "Ctrl-C signal";
+ LOGV2(23372, "Ctrl-C signal");
consoleTerminate("CTRL_C_EVENT");
return TRUE;
case CTRL_CLOSE_EVENT:
- log() << "CTRL_CLOSE_EVENT signal";
+ LOGV2(23373, "CTRL_CLOSE_EVENT signal");
consoleTerminate("CTRL_CLOSE_EVENT");
return TRUE;
case CTRL_BREAK_EVENT:
- log() << "CTRL_BREAK_EVENT signal";
+ LOGV2(23374, "CTRL_BREAK_EVENT signal");
consoleTerminate("CTRL_BREAK_EVENT");
return TRUE;
@@ -104,7 +107,7 @@ BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) {
return FALSE;
case CTRL_SHUTDOWN_EVENT:
- log() << "CTRL_SHUTDOWN_EVENT signal";
+ LOGV2(23375, "CTRL_SHUTDOWN_EVENT signal");
consoleTerminate("CTRL_SHUTDOWN_EVENT");
return TRUE;
@@ -118,7 +121,9 @@ void eventProcessingThread() {
HANDLE event = CreateEventA(nullptr, TRUE, FALSE, eventName.c_str());
if (event == nullptr) {
- warning() << "eventProcessingThread CreateEvent failed: " << errnoWithDescription();
+ LOGV2_WARNING(23382,
+ "eventProcessingThread CreateEvent failed: {errnoWithDescription}",
+ "errnoWithDescription"_attr = errnoWithDescription());
return;
}
@@ -127,19 +132,24 @@ void eventProcessingThread() {
int returnCode = WaitForSingleObject(event, INFINITE);
if (returnCode != WAIT_OBJECT_0) {
if (returnCode == WAIT_FAILED) {
- warning() << "eventProcessingThread WaitForSingleObject failed: "
- << errnoWithDescription();
+ LOGV2_WARNING(
+ 23383,
+ "eventProcessingThread WaitForSingleObject failed: {errnoWithDescription}",
+ "errnoWithDescription"_attr = errnoWithDescription());
return;
} else {
- warning() << "eventProcessingThread WaitForSingleObject failed: "
- << errnoWithDescription(returnCode);
+ LOGV2_WARNING(23384,
+ "eventProcessingThread WaitForSingleObject failed: "
+ "{errnoWithDescription_returnCode}",
+ "errnoWithDescription_returnCode"_attr =
+ errnoWithDescription(returnCode));
return;
}
}
setThreadName("eventTerminate");
- log() << "shutdown event signaled, will terminate after current cmd ends";
+ LOGV2(23376, "shutdown event signaled, will terminate after current cmd ends");
exitCleanly(EXIT_CLEAN);
}
@@ -169,7 +179,9 @@ bool waitForSignal(const sigset_t& sigset, SignalWaitResult* result) {
if (result->sig == -1) {
if (errsv == EINTR)
continue;
- severe() << "sigwaitinfo failed with error:" << strerror(errsv);
+ LOGV2_FATAL(23385,
+ "sigwaitinfo failed with error:{strerror_errsv}",
+ "strerror_errsv"_attr = strerror(errsv));
return false;
}
return true;
@@ -189,19 +201,25 @@ struct LogRotationState {
void handleOneSignal(const SignalWaitResult& waited, LogRotationState* rotation) {
int sig = waited.sig;
- log() << "got signal " << sig << " (" << strsignal(sig) << ")";
+ LOGV2(23377,
+ "got signal {sig} ({strsignal_sig})",
+ "sig"_attr = sig,
+ "strsignal_sig"_attr = strsignal(sig));
#ifdef __linux__
const siginfo_t& si = waited.si;
switch (si.si_code) {
case SI_USER:
case SI_QUEUE:
- log() << "kill from pid:" << si.si_pid << " uid:" << si.si_uid;
+ LOGV2(23378,
+ "kill from pid:{si_si_pid} uid:{si_si_uid}",
+ "si_si_pid"_attr = si.si_pid,
+ "si_si_uid"_attr = si.si_uid);
break;
case SI_TKILL:
- log() << "tgkill";
+ LOGV2(23379, "tgkill");
break;
case SI_KERNEL:
- log() << "kernel";
+ LOGV2(23380, "kernel");
break;
}
#endif // __linux__
@@ -228,7 +246,7 @@ void handleOneSignal(const SignalWaitResult& waited, LogRotationState* rotation)
}
#endif
// interrupt/terminate signal
- log() << "will terminate after current cmd ends";
+ LOGV2(23381, "will terminate after current cmd ends");
exitCleanly(EXIT_CLEAN);
}
@@ -255,7 +273,9 @@ void signalProcessingThread(LogFileStatus rotate) {
errno = 0;
if (int r = pthread_sigmask(SIG_SETMASK, &waitSignals, nullptr); r != 0) {
int errsv = errno;
- severe() << "pthread_sigmask failed with error:" << strerror(errsv);
+ LOGV2_FATAL(23386,
+ "pthread_sigmask failed with error:{strerror_errsv}",
+ "strerror_errsv"_attr = strerror(errsv));
fassertFailed(31377);
}