161 строка
5.7 KiB
C++
161 строка
5.7 KiB
C++
/*
|
|
microsoft-oms-auditd-plugin
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
All rights reserved.
|
|
|
|
MIT License
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "ProcMetrics.h"
|
|
#include "Logger.h"
|
|
#include "FileUtils.h"
|
|
#include "StringUtils.h"
|
|
|
|
#include <unistd.h>
|
|
#include <sys/sysinfo.h>
|
|
#include <cstring>
|
|
|
|
void ProcMetrics::run() {
|
|
Logger::Warn("ProcMetrics: starting");
|
|
|
|
// Collect process metrics once per second without drift
|
|
constexpr long frequency = 1000;
|
|
auto next = std::chrono::steady_clock::now() + std::chrono::milliseconds(frequency);
|
|
long sleep_duration = 0;
|
|
do {
|
|
if (!collect_metrics()) {
|
|
return;
|
|
}
|
|
|
|
sleep_duration = std::chrono::duration_cast<std::chrono::milliseconds>(next - std::chrono::steady_clock::now()).count();
|
|
next += std::chrono::milliseconds(frequency);
|
|
if (sleep_duration < 0) {
|
|
sleep_duration = 0;
|
|
}
|
|
} while (!_sleep(sleep_duration));
|
|
}
|
|
|
|
bool ProcMetrics::collect_metrics() {
|
|
PriorityQueueStats queue_stats;
|
|
_queue->GetStats(queue_stats);
|
|
|
|
for (int p = 0; p < _queue->NumPriorities(); ++p) {
|
|
_queue_priority_metrics[p].Update(queue_stats._priority_stats[p]);
|
|
}
|
|
_queue_total_metrics.Update(queue_stats._total);
|
|
_fs_size_metric->Update(queue_stats._fs_size);
|
|
_fs_free_metric->Update(queue_stats._fs_free);
|
|
_queue_fs_allowed_bytes_metric->Update(static_cast<double>(queue_stats._fs_allowed_bytes));
|
|
|
|
if (_total_system_memory == 0) {
|
|
struct sysinfo si;
|
|
auto ret = sysinfo(&si);
|
|
if (ret != 0) {
|
|
Logger::Error("ProcMetrics: sysinfo() failed: %s", std::strerror(errno));
|
|
return false;
|
|
}
|
|
_total_system_memory = static_cast<uint64_t>(si.totalram) * si.mem_unit;
|
|
}
|
|
|
|
if (_page_size == 0) {
|
|
_page_size = sysconf(_SC_PAGESIZE);
|
|
}
|
|
|
|
if (_clock == 0) {
|
|
_clock = std::clock();
|
|
return true;
|
|
}
|
|
|
|
auto clock = std::clock();
|
|
auto used = clock-_clock;
|
|
_clock = clock;
|
|
|
|
auto cpu_pct = (static_cast<double>(used)/static_cast<double>(CLOCKS_PER_SEC))*100.0;
|
|
|
|
_cpu_metric->Update(cpu_pct);
|
|
|
|
uint64_t total, resident, shared, text, unused1, data, unused2;
|
|
resident = 0;
|
|
try {
|
|
auto lines = ReadFile("/proc/self/statm");
|
|
if (!lines.empty()) {
|
|
if (std::sscanf(lines[0].c_str(), "%lu %lu %lu %lu %lu %lu %lu", &total, &resident, &shared, &text, &unused1, &data, &unused2) != 7) {
|
|
Logger::Error("Failed to parse /proc/self/statm");
|
|
return false;
|
|
}
|
|
} else {
|
|
Logger::Error("Failed to read /proc/self/statm: No contents!");
|
|
return false;
|
|
}
|
|
} catch (std::exception& ex) {
|
|
Logger::Error("Failed to read /proc/self/statm: %s", ex.what());
|
|
return false;
|
|
}
|
|
|
|
uint64_t rss = resident*_page_size;
|
|
uint64_t virt = total*_page_size;
|
|
auto rss_mem_pct = (static_cast<double>(rss)/static_cast<double>(_total_system_memory))*100.0;
|
|
|
|
if (rss > _rss_limit) {
|
|
Logger::Error("RSS Limit (%ld) exceeded (%ld)", _rss_limit, rss);
|
|
_limit_fn();
|
|
return false;
|
|
}
|
|
|
|
if (rss_mem_pct > _rss_pct_limit) {
|
|
Logger::Error("RSS %%MEM Limit (%lf) exceeded (%lf)", _rss_pct_limit, rss_mem_pct);
|
|
_limit_fn();
|
|
return false;
|
|
}
|
|
|
|
if (virt > _virt_limit) {
|
|
Logger::Error("Virt Limit (%ld) exceeded (%ld)", _virt_limit, virt);
|
|
_limit_fn();
|
|
return false;
|
|
}
|
|
|
|
_mem_pct_metric->Update(rss_mem_pct);
|
|
_rss_metric->Update(static_cast<double>(rss));
|
|
_virt_metric->Update(static_cast<double>(virt));
|
|
|
|
uint64_t read_bytes = 0;
|
|
uint64_t write_bytes = 0;
|
|
try {
|
|
auto lines = ReadFile("/proc/self/io");
|
|
|
|
for (auto& line: lines) {
|
|
if (starts_with(line, "read_bytes: ")) {
|
|
try {
|
|
read_bytes = std::stoul(line.substr(12));
|
|
} catch (std::exception& ex) {
|
|
Logger::Error("Failed to parse read_bytes in /proc/self/io: %s", ex.what());
|
|
return false;
|
|
}
|
|
} else if (starts_with(line, "write_bytes: ")) {
|
|
try {
|
|
write_bytes = std::stoul(line.substr(13));
|
|
} catch (std::exception& ex) {
|
|
Logger::Error("Failed to parse write_bytes in /proc/self/io: %s", ex.what());
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} catch (std::exception& ex) {
|
|
Logger::Error("Failed to read /proc/self/io: %s", ex.what());
|
|
return false;
|
|
}
|
|
|
|
_read_bytes_metric->Update(static_cast<double>(read_bytes));
|
|
_write_bytes_metric->Update(static_cast<double>(write_bytes));
|
|
|
|
return true;
|
|
}
|