forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.cpp
More file actions
235 lines (204 loc) · 8.26 KB
/
Copy pathlogging.cpp
File metadata and controls
235 lines (204 loc) · 8.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "logging.h"
#include <bthread/bthread.h>
#include <bthread/types.h>
#include <glog/logging.h>
#include <glog/vlog_is_on.h>
#include <iomanip>
#include <iostream>
#include <mutex>
#include "config.h"
namespace doris::cloud {
static butil::LinkedList<AnnotateTag>* get_annotate_tag_list() {
static std::once_flag log_annotated_tags_key_once;
static bthread_key_t log_annotated_tags_key;
std::call_once(
log_annotated_tags_key_once,
+[](bthread_key_t* key) {
bthread_key_create(
key, +[](void* value) {
delete reinterpret_cast<butil::LinkedList<AnnotateTag>*>(value);
});
},
&log_annotated_tags_key);
auto* tag_list = reinterpret_cast<butil::LinkedList<AnnotateTag>*>(
bthread_getspecific(log_annotated_tags_key));
if (!tag_list) {
tag_list = new butil::LinkedList<AnnotateTag>();
bthread_setspecific(log_annotated_tags_key, tag_list);
}
return tag_list;
}
AnnotateTag::AnnotateTag(default_tag_t, std::string_view key, std::string value)
: key_(key), value_(std::move(value)) {
get_annotate_tag_list()->Append(this);
}
AnnotateTag::AnnotateTag(std::string_view key, std::string_view value)
: AnnotateTag(default_tag, key, fmt::format("\"{}\"", value)) {}
AnnotateTag::~AnnotateTag() {
RemoveFromList();
}
void AnnotateTag::format_tag_list(std::ostream& stream) {
butil::LinkedList<AnnotateTag>* list = get_annotate_tag_list();
butil::LinkNode<AnnotateTag>* head = list->head();
const butil::LinkNode<AnnotateTag>* end = list->end();
for (; head != end; head = head->next()) {
stream << ' ' << head->value()->key_ << '=' << head->value()->value_;
}
}
void custom_prefix(std::ostream& s, const google::LogMessageInfo& l, void*) {
// Add prefix "RuntimeLogger ".
s << "RuntimeLogger ";
// Same as in fe.log
// The following is same as default log format. eg:
// I20240605 15:25:15.677153 1763151 meta_service_txn.cpp:481] msg...
s << l.severity[0];
s << std::setw(4) << 1900 + l.time.year();
s << std::setw(2) << 1 + l.time.month();
s << std::setw(2) << l.time.day();
s << ' ';
s << std::setw(2) << l.time.hour() << ':';
s << std::setw(2) << l.time.min() << ':';
s << std::setw(2) << l.time.sec() << ".";
s << std::setw(6) << l.time.usec();
s << ' ';
s << std::setfill(' ') << std::setw(5);
s << l.thread_id << std::setfill('0');
s << ' ';
s << l.filename << ':' << l.line_number << "]";
}
// Implement the custom log format for stdout output in K8S environment
// Format: I20240605 15:25:15.677153 1763151 meta_service_txn.cpp:481] msg...
struct StdoutLogSink : google::LogSink {
void send(google::LogSeverity severity, const char* /*full_filename*/,
const char* base_filename, int line, const google::LogMessageTime& time,
const char* message, std::size_t message_len) override {
// Convert log severity to corresponding character (I/W/E/F)
char severity_char;
switch (severity) {
case google::GLOG_INFO:
severity_char = 'I';
break;
case google::GLOG_WARNING:
severity_char = 'W';
break;
case google::GLOG_ERROR:
severity_char = 'E';
break;
case google::GLOG_FATAL:
severity_char = 'F';
break;
default:
severity_char = '?';
break;
}
// Set output formatting flags
std::cout << std::setfill('0');
// 1. Log severity (I/W/E/F)
std::cout << severity_char;
// 2. Date (YYYYMMDD)
// Note: tm_year is years since 1900, tm_mon is 0-based (0-11)
std::cout << std::setw(4) << (time.year() + 1900) << std::setw(2) << std::setfill('0')
<< (time.month() + 1) << std::setw(2) << std::setfill('0') << time.day();
// 3. Time (HH:MM:SS.ffffff)
std::cout << " " << std::setw(2) << std::setfill('0') << time.hour() << ":" << std::setw(2)
<< std::setfill('0') << time.min() << ":" << std::setw(2) << std::setfill('0')
<< time.sec() << "." << std::setw(6) << std::setfill('0') << time.usec();
// 4. Thread ID
std::cout << " " << std::setfill(' ') << std::setw(5) << getpid() << std::setfill('0');
// 5. Filename and line number
std::cout << " " << base_filename << ":" << line << "] ";
// 6. Log message
std::cout.write(message, message_len);
// Add newline and flush
std::cout << std::endl;
}
};
static StdoutLogSink stdout_log_sink;
/**
* @param basename the basename of log file
* @return true for success
*/
bool init_glog(const char* basename) {
static std::mutex mtx;
static bool inited = false;
std::lock_guard<std::mutex> logging_lock(mtx);
if (inited) return true;
bool log_to_console = (getenv("DORIS_LOG_TO_STDERR") != nullptr);
if (log_to_console) {
if (config::enable_file_logger) {
// will output log to log file and output log to stdout
google::AddLogSink(&stdout_log_sink);
} else {
// enable_file_logger is false, will only output log to stdout
// Not output to stderr because doris_cloud.out will output log to stderr
FLAGS_logtostdout = true;
}
} else {
FLAGS_alsologtostderr = false;
}
// Don't log to stderr except fatal level
// so fatal log can output to doris_cloud.out .
FLAGS_stderrthreshold = google::FATAL;
// Set glog log dir
FLAGS_log_dir = config::log_dir;
// Buffer log messages for at most this many seconds
FLAGS_logbufsecs = 1;
// Set log roll mode
// Candidates: day, hour, size
FLAGS_log_split_method = "size";
// Sets the maximum log file size (in MB).
FLAGS_max_log_size = config::log_size_mb;
// Set roll num
FLAGS_log_filenum_quota = config::log_filenum_quota;
#ifdef GLOG_HAS_WARN_LOG_FILENUM_QUOTA
// Set warn log roll num
FLAGS_warn_log_filenum_quota = config::warn_log_filenum_quota;
#endif
// clang-format off
// set log level
std::string& loglevel = config::log_level;
// Can be 0 1 2 3 ... the larger the higher level for logging,
// corrensponding to INFO WARNING ERROR FATAL
// const int GLOG_INFO = 0, GLOG_WARNING = 1, GLOG_ERROR = 2, GLOG_FATAL = 3, NUM_SEVERITIES = 4;
auto tolower = [](std::string s) { for (auto& i : s) i |= 0x20; return s; };
FLAGS_minloglevel = tolower(loglevel) == "info" ? 0
: tolower(loglevel) == "warn" ? 1
: tolower(loglevel) == "error" ? 2
: tolower(loglevel) == "fatal" ? 3
: 0; // Default INFO
// clang-format on
// Log messages at a level <= this flag are buffered.
// Log messages at a higher level are flushed immediately.
FLAGS_logbuflevel = config::log_immediate_flush ? -1 : 0;
// Set verbose modules
FLAGS_v = -1;
for (auto& i : config::log_verbose_modules) {
if (i.empty()) continue;
google::SetVLOGLevel(i.c_str(), config::log_verbose_level);
}
if (log_to_console) {
// Only add prefix if log output to stderr
google::InitGoogleLogging(basename, &custom_prefix);
} else {
google::InitGoogleLogging(basename);
}
inited = true;
return true;
}
} // namespace doris::cloud