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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
|
/** @file
This file implements the LogConfig object.
@section license License
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 "tscore/ink_platform.h"
#include "tscore/I_Layout.h"
#include "I_Machine.h"
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include <memory>
#include "tscore/ink_platform.h"
#include "tscore/ink_file.h"
#include "tscore/Filenames.h"
#include "tscore/List.h"
#include "tscore/LogMessage.h"
#include "Log.h"
#include "LogField.h"
#include "LogFilter.h"
#include "LogFormat.h"
#include "LogFile.h"
#include "LogBuffer.h"
#include "LogObject.h"
#include "LogConfig.h"
#include "LogUtils.h"
#include "tscore/SimpleTokenizer.h"
#include "YamlLogConfig.h"
#define DISK_IS_CONFIG_FULL_MESSAGE \
"Access logging to local log directory suspended - " \
"configured space allocation exhausted."
#define DISK_IS_ACTUAL_FULL_MESSAGE \
"Access logging to local log directory suspended - " \
"no more space on the logging partition."
#define DISK_IS_CONFIG_LOW_MESSAGE \
"Access logging to local log directory suspended - " \
"configured space allocation almost exhausted."
#define DISK_IS_ACTUAL_LOW_MESSAGE "Access logging to local log directory suspended - partition space is low."
#define PARTITION_HEADROOM_MB 10
#define DIAGS_LOG_FILENAME "diags.log"
#define MANAGER_LOG_FILENAME "manager.log"
void
LogConfig::setup_default_values()
{
hostname = ats_strdup(Machine::instance()->host_name.c_str());
log_buffer_size = static_cast<int>(10 * LOG_KILOBYTE);
max_secs_per_buffer = 5;
max_space_mb_for_logs = 100;
max_space_mb_headroom = 10;
error_log_filename = ats_strdup("error.log");
logfile_perm = 0644;
logfile_dir = ats_strdup(".");
preproc_threads = 1;
rolling_enabled = Log::NO_ROLLING;
rolling_interval_sec = 86400; // 24 hours
rolling_offset_hr = 0;
rolling_size_mb = 10;
rolling_max_count = 0;
rolling_allow_empty = false;
auto_delete_rolled_files = true;
roll_log_files_now = false;
sampling_frequency = 1;
file_stat_frequency = 16;
space_used_frequency = 900;
ascii_buffer_size = 4 * 9216;
max_line_size = 9216; // size of pipe buffer for SunOS 5.6
logbuffer_max_iobuf_index = BUFFER_SIZE_INDEX_32K;
}
void LogConfig::reconfigure_mgmt_variables(ts::MemSpan<void>)
{
Note("received log reconfiguration event, rolling now");
Log::config->roll_log_files_now = true;
}
void
LogConfig::register_rolled_log_auto_delete(std::string_view logname, int rolling_min_count)
{
if (!auto_delete_rolled_files) {
// Nothing to do if auto-deletion is not configured.
return;
}
Debug("logspace", "Registering rotated log deletion for %s with min roll count %d", std::string(logname).c_str(),
rolling_min_count);
rolledLogDeleter.register_log_type_for_deletion(logname, rolling_min_count);
}
void
LogConfig::read_configuration_variables()
{
int val;
char *ptr;
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.log_buffer_size"));
if (val > 0) {
log_buffer_size = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.max_secs_per_buffer"));
if (val > 0) {
max_secs_per_buffer = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.max_space_mb_for_logs"));
if (val > 0) {
max_space_mb_for_logs = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.max_space_mb_headroom"));
if (val > 0) {
max_space_mb_headroom = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.io.max_buffer_index"));
if (val > 0) {
logbuffer_max_iobuf_index = val;
}
ptr = REC_ConfigReadString("proxy.config.log.logfile_perm");
int logfile_perm_parsed = ink_fileperm_parse(ptr);
if (logfile_perm_parsed != -1) {
logfile_perm = logfile_perm_parsed;
}
ats_free(ptr);
ptr = REC_ConfigReadString("proxy.config.log.hostname");
if (ptr != nullptr && std::string_view(ptr) != "localhost") {
ats_free(hostname);
hostname = ptr;
}
ptr = REC_ConfigReadString("proxy.config.error.logfile.filename");
if (ptr != nullptr) {
ats_free(error_log_filename);
error_log_filename = ptr;
}
ats_free(logfile_dir);
logfile_dir = ats_stringdup(RecConfigReadLogDir());
if (access(logfile_dir, R_OK | W_OK | X_OK) == -1) {
// Try 'system_root_dir/var/log/trafficserver' directory
fprintf(stderr, "unable to access log directory '%s': %d, %s\n", logfile_dir, errno, strerror(errno));
fprintf(stderr, "please set 'proxy.config.log.logfile_dir'\n");
::exit(1);
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.preproc_threads"));
if (val > 0 && val <= 128) {
preproc_threads = val;
}
// ROLLING
// we don't check for valid values of rolling_enabled, rolling_interval_sec,
// rolling_offset_hr, or rolling_size_mb because the LogObject takes care of this
//
rolling_interval_sec = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_interval_sec"));
rolling_offset_hr = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_offset_hr"));
rolling_size_mb = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_size_mb"));
rolling_min_count = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_min_count"));
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_enabled"));
if (LogRollingEnabledIsValid(val)) {
rolling_enabled = static_cast<Log::RollingEnabledValues>(val);
} else {
Warning("invalid value '%d' for '%s', disabling log rolling", val, "proxy.config.log.rolling_enabled");
rolling_enabled = Log::NO_ROLLING;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.auto_delete_rolled_files"));
auto_delete_rolled_files = (val > 0);
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_allow_empty"));
rolling_allow_empty = (val > 0);
// THROTTLING
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.throttling_interval_msec"));
if (LogThrottlingIsValid(val)) {
LogMessage::set_default_log_throttling_interval(std::chrono::milliseconds{val});
} else {
Warning("invalid value '%d' for '%s', disabling log rolling", val, "proxy.config.log.throttling_interval_msec");
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.diags.debug.throttling_interval_msec"));
if (LogThrottlingIsValid(val)) {
LogMessage::set_default_debug_throttling_interval(std::chrono::milliseconds{val});
} else {
Warning("invalid value '%d' for '%s', disabling log rolling", val, "proxy.config.diags.debug.throttling_interval_msec");
}
// Read in min_count control values for auto deletion
if (auto_delete_rolled_files) {
// The majority of register_rolled_log_auto_delete() updates come in
// through LogObject. However, not all ATS logs are managed by LogObject.
// The following register these other core logs for log rotation deletion.
// For diagnostic logs
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.diags.logfile.rolling_min_count"));
register_rolled_log_auto_delete(DIAGS_LOG_FILENAME, val);
register_rolled_log_auto_delete(MANAGER_LOG_FILENAME, val);
// For traffic.out
char *configured_name(REC_ConfigReadString("proxy.config.output.logfile"));
const char *traffic_logname = configured_name ? configured_name : "traffic.out";
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.output.logfile.rolling_min_count"));
register_rolled_log_auto_delete(traffic_logname, val);
rolling_max_count = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.rolling_max_count"));
ats_free(configured_name);
}
// PERFORMANCE
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.sampling_frequency"));
if (val > 0) {
sampling_frequency = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.file_stat_frequency"));
if (val > 0) {
file_stat_frequency = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.space_used_frequency"));
if (val > 0) {
space_used_frequency = val;
}
// ASCII BUFFER
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.ascii_buffer_size"));
if (val > 0) {
ascii_buffer_size = val;
}
val = static_cast<int>(REC_ConfigReadInteger("proxy.config.log.max_line_size"));
if (val > 0) {
max_line_size = val;
}
}
/*-------------------------------------------------------------------------
LogConfig::LogConfig
Read the logging configuration variables from the config file and
initialize the LogConfig member variables. Assign some meaningful
default value if we get garbage back from the config file.
-------------------------------------------------------------------------*/
// TODO: Is UINT_MAX here really correct?
LogConfig::LogConfig() : m_partition_space_left(static_cast<int64_t>(UINT_MAX))
{
// Setup the default values for all LogConfig public variables so that
// a LogConfig object is valid upon return from the constructor even
// if no configuration file is read
//
setup_default_values();
}
/*-------------------------------------------------------------------------
LogConfig::~LogConfig
Delete all config variable strings.
-------------------------------------------------------------------------*/
LogConfig::~LogConfig()
{
ats_free(error_log_filename);
ats_free(logfile_dir);
}
/*-------------------------------------------------------------------------
LogConfig::init
-------------------------------------------------------------------------*/
void
LogConfig::init(LogConfig *prev_config)
{
LogObject *errlog = nullptr;
ink_assert(!initialized);
update_space_used();
// create log objects
//
if (Log::transaction_logging_enabled()) {
setup_log_objects();
}
// ----------------------------------------------------------------------
// Construct a new error log object candidate.
if (Log::error_logging_enabled()) {
std::unique_ptr<LogFormat> fmt(MakeTextLogFormat("error"));
Debug("log", "creating predefined error log object");
errlog = new LogObject(this, fmt.get(), logfile_dir, error_log_filename, LOG_FILE_ASCII, nullptr, rolling_enabled,
preproc_threads, rolling_interval_sec, rolling_offset_hr, rolling_size_mb, /* auto_created */ false,
rolling_max_count, rolling_min_count);
log_object_manager.manage_object(errlog);
errlog->set_fmt_timestamps();
} else {
Log::error_log = nullptr;
}
if (prev_config) {
// Transfer objects from previous configuration.
transfer_objects(prev_config);
// After transferring objects, we are going to keep either the new error log or the old one. Figure out
// which one we are keeping and make that the global ...
if (Log::error_log) {
errlog = this->log_object_manager.find_by_format_name(Log::error_log->m_format->name());
}
}
ink_atomic_swap(&Log::error_log, errlog);
initialized = true;
}
/*-------------------------------------------------------------------------
LogConfig::display
Dump the values for the current LogConfig object.
-------------------------------------------------------------------------*/
void
LogConfig::display(FILE *fd)
{
fprintf(fd, "-----------------------------\n");
fprintf(fd, "--- Logging Configuration ---\n");
fprintf(fd, "-----------------------------\n");
fprintf(fd, "Config variables:\n");
fprintf(fd, " log_buffer_size = %d\n", log_buffer_size);
fprintf(fd, " max_secs_per_buffer = %d\n", max_secs_per_buffer);
fprintf(fd, " max_space_mb_for_logs = %d\n", max_space_mb_for_logs);
fprintf(fd, " max_space_mb_headroom = %d\n", max_space_mb_headroom);
fprintf(fd, " hostname = %s\n", hostname);
fprintf(fd, " logfile_dir = %s\n", logfile_dir);
fprintf(fd, " logfile_perm = 0%o\n", logfile_perm);
fprintf(fd, " error_log_filename = %s\n", error_log_filename);
fprintf(fd, " preproc_threads = %d\n", preproc_threads);
fprintf(fd, " rolling_enabled = %d\n", rolling_enabled);
fprintf(fd, " rolling_interval_sec = %d\n", rolling_interval_sec);
fprintf(fd, " rolling_offset_hr = %d\n", rolling_offset_hr);
fprintf(fd, " rolling_size_mb = %d\n", rolling_size_mb);
fprintf(fd, " rolling_min_count = %d\n", rolling_min_count);
fprintf(fd, " rolling_max_count = %d\n", rolling_max_count);
fprintf(fd, " rolling_allow_empty = %d\n", rolling_allow_empty);
fprintf(fd, " auto_delete_rolled_files = %d\n", auto_delete_rolled_files);
fprintf(fd, " sampling_frequency = %d\n", sampling_frequency);
fprintf(fd, " file_stat_frequency = %d\n", file_stat_frequency);
fprintf(fd, " space_used_frequency = %d\n", space_used_frequency);
fprintf(fd, " logbuffer_max_iobuf_index = %d\n", logbuffer_max_iobuf_index);
fprintf(fd, "\n");
fprintf(fd, "************ Log Objects (%u objects) ************\n", log_object_manager.get_num_objects());
log_object_manager.display(fd);
fprintf(fd, "************ Filter List (%u filters) ************\n", filter_list.count());
filter_list.display(fd);
fprintf(fd, "************ Format List (%u formats) ************\n", format_list.count());
format_list.display(fd);
}
//-----------------------------------------------------------------------------
// setup_log_objects
//
// Construct: All custom objects.
//
// Upon return from this function:
// - global_object_list has the aforementioned objects
// - global_filter_list has all custom filters
//
void
LogConfig::setup_log_objects()
{
Debug("log", "creating objects...");
filter_list.clear();
// Evaluate logging.yaml to construct the custom log objects.
evaluate_config();
// Open local pipes so readers can see them.
log_object_manager.open_local_pipes();
if (is_debug_tag_set("log")) {
log_object_manager.display();
}
}
/*-------------------------------------------------------------------------
LogConfig::reconfigure
This is the manager callback for any logging config variable change.
Since we want to access the config variables to build a new config
object, but can't from this function (big lock technology in the
manager), we'll just set a flag and call the real reconfiguration
function from the logging thread.
-------------------------------------------------------------------------*/
int
LogConfig::reconfigure(const char * /* name ATS_UNUSED */, RecDataT /* data_type ATS_UNUSED */, RecData /* data ATS_UNUSED */,
void * /* cookie ATS_UNUSED */)
{
Debug("log-config", "Reconfiguration request accepted");
Log::config->reconfiguration_needed = true;
return 0;
}
/*-------------------------------------------------------------------------
LogConfig::register_config_callbacks
This static function is called by Log::init to register the config update
function for each of the logging configuration variables.
-------------------------------------------------------------------------*/
void
LogConfig::register_config_callbacks()
{
static const char *names[] = {
"proxy.config.log.log_buffer_size",
"proxy.config.log.max_secs_per_buffer",
"proxy.config.log.max_space_mb_for_logs",
"proxy.config.log.max_space_mb_headroom",
"proxy.config.log.error_log_filename",
"proxy.config.log.logfile_perm",
"proxy.config.log.hostname",
"proxy.config.log.logfile_dir",
"proxy.config.log.rolling_enabled",
"proxy.config.log.rolling_interval_sec",
"proxy.config.log.rolling_offset_hr",
"proxy.config.log.rolling_size_mb",
"proxy.config.log.auto_delete_rolled_files",
"proxy.config.log.rolling_max_count",
"proxy.config.log.rolling_allow_empty",
"proxy.config.log.config.filename",
"proxy.config.log.sampling_frequency",
"proxy.config.log.file_stat_frequency",
"proxy.config.log.space_used_frequency",
"proxy.config.log.io.max_buffer_index",
"proxy.config.log.throttling_interval_msec",
"proxy.config.diags.debug.throttling_interval_msec",
};
for (unsigned i = 0; i < countof(names); ++i) {
REC_RegisterConfigUpdateFunc(names[i], &LogConfig::reconfigure, nullptr);
}
}
/*-------------------------------------------------------------------------
LogConfig::register_stat_callbacks
This static function is called by Log::init to register the stat update
function for each of the logging stats variables.
-------------------------------------------------------------------------*/
void
LogConfig::register_stat_callbacks()
{
//
// events
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_ok", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_ok_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_skip", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_skip_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_aggr", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_aggr_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_full", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_full_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_error_fail", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_error_fail_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_ok", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_ok_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_skip", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_skip_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_aggr", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_aggr_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_full", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_full_stat, RecRawStatSyncCount);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.event_log_access_fail", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_event_log_access_fail_stat, RecRawStatSyncCount);
//
// number vs bytes of logs
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_sent_to_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_lost_before_sent_to_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_lost_before_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_received_from_network", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_received_from_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_flush_to_disk", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.num_lost_before_flush_to_disk", RECD_COUNTER, RECP_PERSISTENT,
(int)log_stat_num_lost_before_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_preproc", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_preproc_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_sent_to_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_sent_to_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_sent_to_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_received_from_network", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_received_from_network_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_flush_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_flush_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_flush_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_written_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_written_to_disk_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.bytes_lost_before_written_to_disk", RECD_INT, RECP_PERSISTENT,
(int)log_stat_bytes_lost_before_written_to_disk_stat, RecRawStatSyncSum);
//
// I/O
//
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.log_files_open", RECD_COUNTER, RECP_NON_PERSISTENT,
(int)log_stat_log_files_open_stat, RecRawStatSyncSum);
RecRegisterRawStat(log_rsb, RECT_PROCESS, "proxy.process.log.log_files_space_used", RECD_INT, RECP_NON_PERSISTENT,
(int)log_stat_log_files_space_used_stat, RecRawStatSyncSum);
}
/*-------------------------------------------------------------------------
LogConfig::register_mgmt_callbacks
This static function is called by Log::init to register the mgmt callback
function for each of the logging mgmt messages.
-------------------------------------------------------------------------*/
void
LogConfig::register_mgmt_callbacks()
{
RecRegisterManagerCb(REC_EVENT_ROLL_LOG_FILES, &LogConfig::reconfigure_mgmt_variables);
}
/*-------------------------------------------------------------------------
LogConfig::space_to_write
This function returns true if there is enough disk space to write the
given number of bytes, false otherwise.
-------------------------------------------------------------------------*/
bool
LogConfig::space_to_write(int64_t bytes_to_write) const
{
int64_t config_space, partition_headroom;
int64_t logical_space_used, physical_space_left;
bool space;
config_space = static_cast<int64_t>(get_max_space_mb()) * LOG_MEGABYTE;
partition_headroom = static_cast<int64_t>(PARTITION_HEADROOM_MB) * LOG_MEGABYTE;
logical_space_used = m_space_used + bytes_to_write;
physical_space_left = m_partition_space_left - bytes_to_write;
space = ((logical_space_used < config_space) && (physical_space_left > partition_headroom));
Debug("logspace",
"logical space used %" PRId64 ", configured space %" PRId64 ", physical space left %" PRId64 ", partition headroom %" PRId64
", space %s available",
logical_space_used, config_space, physical_space_left, partition_headroom, space ? "is" : "is not");
return space;
}
/*-------------------------------------------------------------------------
LogConfig::update_space_used
Update the m_space_used variable by reading the logging dir and counting
the total bytes being occupied by files. If we've used too much space
(space_used > max_space - headroom) then start deleting some files (if
auto_delete_rolled_files is set) to make room. Finally, update the
space_used stat.
This routine will only be executed SINGLE-THREADED, either by the main
thread when a LogConfig is initialized, or by the event thread during the
periodic space check.
-------------------------------------------------------------------------*/
void
LogConfig::update_space_used()
{
// no need to update space used if log directory is inaccessible
//
if (m_log_directory_inaccessible) {
return;
}
int64_t total_space_used, partition_space_left;
char path[MAXPATHLEN];
int sret;
struct dirent *entry;
struct stat sbuf;
DIR *ld;
// check if logging directory has been specified
//
if (!logfile_dir) {
const char *msg = "Logging directory not specified";
Error("%s", msg);
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, "%s", msg);
m_log_directory_inaccessible = true;
return;
}
// check if logging directory exists and is searchable readable & writable
int err;
do {
err = access(logfile_dir, R_OK | W_OK | X_OK);
} while ((err < 0) && (errno == EINTR));
if (err < 0) {
const char *msg = "Error accessing logging directory %s: %s.";
Error(msg, logfile_dir, strerror(errno));
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, msg, logfile_dir, strerror(errno));
m_log_directory_inaccessible = true;
return;
}
ld = ::opendir(logfile_dir);
if (ld == nullptr) {
const char *msg = "Error opening logging directory %s to perform a space check: %s.";
Error(msg, logfile_dir, strerror(errno));
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, msg, logfile_dir, strerror(errno));
m_log_directory_inaccessible = true;
return;
}
total_space_used = 0LL;
while ((entry = readdir(ld))) {
snprintf(path, MAXPATHLEN, "%s/%s", logfile_dir, entry->d_name);
sret = ::stat(path, &sbuf);
if (sret != -1 && S_ISREG(sbuf.st_mode)) {
total_space_used += static_cast<int64_t>(sbuf.st_size);
if (auto_delete_rolled_files && LogFile::rolled_logfile(entry->d_name)) {
rolledLogDeleter.consider_for_candidacy(path, sbuf.st_size, sbuf.st_mtime);
}
}
}
::closedir(ld);
//
// Now check the partition to see if there is enough *actual* space.
//
partition_space_left = m_partition_space_left;
struct statvfs fs;
if (::statvfs(logfile_dir, &fs) >= 0) {
partition_space_left = static_cast<int64_t>(fs.f_bavail) * static_cast<int64_t>(fs.f_bsize);
}
//
// Update the config variables for space used/left
//
m_space_used = total_space_used;
m_partition_space_left = partition_space_left;
RecSetRawStatSum(log_rsb, log_stat_log_files_space_used_stat, m_space_used);
RecSetRawStatCount(log_rsb, log_stat_log_files_space_used_stat, 1);
Debug("logspace", "%" PRId64 " bytes being used for logs", m_space_used);
Debug("logspace", "%" PRId64 " bytes left on partition", m_partition_space_left);
//
// Now that we have an accurate picture of the amount of space being
// used by logging, we can see if we're running low on space. If so,
// we might consider deleting some files that are stored in the
// candidate array.
//
// To delete oldest files first, we'll sort our candidate array by
// timestamps, making the oldest files first in the array (thus first
// selected).
//
int64_t max_space = static_cast<int64_t>(get_max_space_mb()) * LOG_MEGABYTE;
int64_t headroom = static_cast<int64_t>(max_space_mb_headroom) * LOG_MEGABYTE;
if (!space_to_write(headroom)) {
Debug("logspace", "headroom reached, trying to clear space ...");
if (!rolledLogDeleter.has_candidates()) {
Note("Cannot clear space because there are no recognized Traffic Server rolled logs for auto deletion.");
} else {
Debug("logspace", "Considering %zu delete candidates ...", rolledLogDeleter.get_candidate_count());
}
while (rolledLogDeleter.has_candidates()) {
if (space_to_write(headroom + log_buffer_size)) {
Debug("logspace", "low water mark reached; stop deleting");
break;
}
auto victim = rolledLogDeleter.take_next_candidate_to_delete();
// Check if any candidate exists
if (!victim) {
// This shouldn't be triggered unless min_count are configured wrong or extra non-log files occupy the directory
Debug("logspace", "No more victims. Check your rolling_min_count settings and logging directory.");
} else {
Debug("logspace", "auto-deleting %s", victim->rolled_log_path.c_str());
if (unlink(victim->rolled_log_path.c_str()) < 0) {
Note("Traffic Server was unable to auto-delete rolled "
"logfile %s: %s.",
victim->rolled_log_path.c_str(), strerror(errno));
} else {
Debug("logspace",
"The rolled logfile, %s, was auto-deleted; "
"%" PRId64 " bytes were reclaimed.",
victim->rolled_log_path.c_str(), victim->size);
// Update after successful unlink;
m_space_used -= victim->size;
m_partition_space_left += victim->size;
}
}
}
}
// The set of files in the logs dir may change between iterations to check
// for logs to delete. To deal with this, we simply clear our internal
// candidates metadata and regenerate it on each iteration.
rolledLogDeleter.clear_candidates();
//
// Now that we've updated the m_space_used value, see if we need to
// issue any alarms or warnings about space
//
if (!space_to_write(headroom)) {
if (!logging_space_exhausted) {
Note("Logging space exhausted, any logs writing to local disk will be dropped!");
}
logging_space_exhausted = true;
//
// Despite our best efforts, we still can't write to the disk.
// Find out why and set/clear warnings.
//
// First, are we out of space based on configuration?
//
if (m_space_used >= max_space) {
if (!m_disk_full) {
m_disk_full = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_CONFIG_FULL_MESSAGE);
Warning(DISK_IS_CONFIG_FULL_MESSAGE);
}
}
//
// How about out of actual space on the partition?
//
else if (m_partition_space_left <= 0) {
if (!m_partition_full) {
m_partition_full = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_ACTUAL_FULL_MESSAGE);
Warning(DISK_IS_ACTUAL_FULL_MESSAGE);
}
}
//
// How about being within the headroom limit?
//
else if (m_space_used + headroom >= max_space) {
if (!m_disk_low) {
m_disk_low = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_CONFIG_LOW_MESSAGE);
Warning(DISK_IS_CONFIG_LOW_MESSAGE);
}
} else {
if (!m_partition_low) {
m_partition_low = true;
LogUtils::manager_alarm(LogUtils::LOG_ALARM_ERROR, DISK_IS_ACTUAL_LOW_MESSAGE);
Warning(DISK_IS_ACTUAL_LOW_MESSAGE);
}
}
} else {
//
// We have enough space to log again; clear any previous messages
//
if (logging_space_exhausted) {
Note("Logging space is no longer exhausted.");
}
logging_space_exhausted = false;
if (m_disk_full || m_partition_full) {
Note("Logging disk is no longer full; access logging to local log directory resumed.");
m_disk_full = false;
m_partition_full = false;
}
if (m_disk_low || m_partition_low) {
Note("Logging disk is no longer low; access logging to local log directory resumed.");
m_disk_low = false;
m_partition_low = false;
}
}
}
bool
LogConfig::evaluate_config()
{
ats_scoped_str path(RecConfigReadConfigPath("proxy.config.log.config.filename", ts::filename::LOGGING));
struct stat sbuf;
if (stat(path.get(), &sbuf) == -1 && errno == ENOENT) {
Warning("logging configuration '%s' doesn't exist", path.get());
return false;
}
Note("%s loading ...", path.get());
YamlLogConfig y(this);
bool zret = y.parse(path.get());
if (zret) {
Note("%s finished loading", path.get());
} else {
Note("%s failed to load", path.get());
}
return zret;
}
|