mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-15 20:45:57 +08:00
增加jemalloc工具类, 增加jemalloc内存统计分析 (#2885)
增加jemalloc工具类, 增加jemalloc内存统计分析
This commit is contained in:
74
src/Common/JemallocUtil.cpp
Normal file
74
src/Common/JemallocUtil.cpp
Normal file
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
||||
*
|
||||
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
||||
*
|
||||
* Use of this source code is governed by MIT license that can be found in the
|
||||
* LICENSE file in the root of the source tree. All contributing project authors
|
||||
* may be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
|
||||
#include "JemallocUtil.h"
|
||||
#include "Util/logger.h"
|
||||
#ifdef USE_JEMALLOC
|
||||
#include <iostream>
|
||||
#include <jemalloc/jemalloc.h>
|
||||
#endif
|
||||
|
||||
namespace mediakit {
|
||||
|
||||
void set_profile_active(bool active) {
|
||||
#ifdef USE_JEMALLOC
|
||||
int err = mallctl("prof.active", nullptr, nullptr, (void *)&active, sizeof(active));
|
||||
if (err != 0) {
|
||||
WarnL << "mallctl failed with: " << err;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void JemallocUtil::enable_profiling() {
|
||||
set_profile_active(true);
|
||||
}
|
||||
void JemallocUtil::disable_profiling() {
|
||||
set_profile_active(false);
|
||||
}
|
||||
void JemallocUtil::dump(const std::string &file_name) {
|
||||
#ifdef USE_JEMALLOC
|
||||
auto *c_str = file_name.c_str();
|
||||
int err = mallctl("prof.dump", nullptr, nullptr, &c_str, sizeof(const char *));
|
||||
if (err != 0) {
|
||||
std::cerr << "mallctl failed with: " << err << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
std::string JemallocUtil::get_malloc_stats() {
|
||||
#ifdef USE_JEMALLOC
|
||||
std::string res;
|
||||
malloc_stats_print([](void *opaque, const char *s) { ((std::string *)opaque)->append(s); }, &res, "J");
|
||||
return res;
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
void JemallocUtil::some_malloc_stats(const std::function<void(const char *, uint64_t)> &fn) {
|
||||
#ifdef USE_JEMALLOC
|
||||
constexpr std::array<const char *, 8> STATS = {
|
||||
"stats.allocated", "stats.active", "stats.metadata", "stats.metadata_thp",
|
||||
"stats.resident", "stats.mapped", "stats.retained", "stats.zero_reallocs",
|
||||
};
|
||||
|
||||
for (const char *stat : STATS) {
|
||||
size_t value;
|
||||
size_t len = sizeof(value);
|
||||
auto err = mallctl(stat, &value, &len, nullptr, 0);
|
||||
if (err != 0) {
|
||||
ErrorL << "Failed reading " << stat << ": " << err;
|
||||
continue;
|
||||
}
|
||||
fn(stat, value);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
} // namespace mediakit
|
||||
Reference in New Issue
Block a user