2010-04-14 20:32:20 +00:00
|
|
|
// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
|
2011-02-28 19:17:43 +00:00
|
|
|
#include <base/logging.h>
|
2014-02-06 07:26:25 +00:00
|
|
|
#include <base/strings/string_util.h>
|
2010-04-14 20:32:20 +00:00
|
|
|
#include <gflags/gflags.h>
|
2011-02-28 19:17:43 +00:00
|
|
|
#include <rootdev/rootdev.h>
|
2010-04-14 20:32:20 +00:00
|
|
|
|
|
|
|
#include "metrics_daemon.h"
|
|
|
|
|
2013-05-07 23:55:00 +00:00
|
|
|
const char kScalingMaxFreqPath[] =
|
|
|
|
"/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq";
|
|
|
|
const char kCpuinfoMaxFreqPath[] =
|
|
|
|
"/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq";
|
|
|
|
|
2010-04-14 20:32:20 +00:00
|
|
|
DEFINE_bool(daemon, true, "run as daemon (use -nodaemon for debugging)");
|
|
|
|
|
2011-10-14 19:03:35 +00:00
|
|
|
// Returns the path to the disk stats in the sysfs. Returns the null string if
|
|
|
|
// it cannot find the disk stats file.
|
2011-02-28 19:17:43 +00:00
|
|
|
static
|
|
|
|
const std::string MetricsMainDiskStatsPath() {
|
|
|
|
char dev_path_cstr[PATH_MAX];
|
|
|
|
std::string dev_prefix = "/dev/";
|
|
|
|
std::string dev_path;
|
|
|
|
std::string dev_name;
|
|
|
|
|
|
|
|
int ret = rootdev(dev_path_cstr, sizeof(dev_path_cstr), true, true);
|
|
|
|
if (ret != 0) {
|
|
|
|
LOG(WARNING) << "error " << ret << " determining root device";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
dev_path = dev_path_cstr;
|
|
|
|
// Check that rootdev begins with "/dev/".
|
|
|
|
if (!StartsWithASCII(dev_path, dev_prefix, false)) {
|
|
|
|
LOG(WARNING) << "unexpected root device " << dev_path;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
// Get the device name, e.g. "sda" from "/dev/sda".
|
|
|
|
dev_name = dev_path.substr(dev_prefix.length());
|
|
|
|
return "/sys/class/block/" + dev_name + "/stat";
|
|
|
|
}
|
2011-02-17 18:21:16 +00:00
|
|
|
|
2010-04-14 20:32:20 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
google::ParseCommandLineFlags(&argc, &argv, true);
|
2010-05-18 18:00:59 +00:00
|
|
|
MetricsLibrary metrics_lib;
|
|
|
|
metrics_lib.Init();
|
|
|
|
MetricsDaemon daemon;
|
2013-05-07 23:55:00 +00:00
|
|
|
daemon.Init(false, &metrics_lib, MetricsMainDiskStatsPath(),
|
|
|
|
"/proc/vmstat", kScalingMaxFreqPath, kCpuinfoMaxFreqPath);
|
2010-05-18 18:00:59 +00:00
|
|
|
daemon.Run(FLAGS_daemon);
|
2010-04-14 20:32:20 +00:00
|
|
|
}
|