blob: f4f14307efffce2e4caebe5e6e4df605b1f5b675 [file] [log] [blame]
Darin Petkov65b01462010-04-14 13:32:20 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Luigi Semenzato4a6c9422014-06-30 18:12:28 -07005#ifndef METRICS_METRICS_DAEMON_H_
6#define METRICS_METRICS_DAEMON_H_
Darin Petkov65b01462010-04-14 13:32:20 -07007
Ben Chanf05ab402014-08-07 00:54:59 -07008#include <stdint.h>
9
Darin Petkov703ec972010-04-27 11:02:18 -070010#include <dbus/dbus.h>
Darin Petkov41e06232010-05-03 16:45:37 -070011#include <glib.h>
Ken Mixter4c5daa42010-08-26 18:35:06 -070012#include <map>
Luigi Semenzato4a6c9422014-06-30 18:12:28 -070013#include <string>
14#include <vector>
Darin Petkov65b01462010-04-14 13:32:20 -070015
Ben Chan2e6543d2014-02-05 23:26:25 -080016#include <base/files/file_path.h>
Chris Masone817016a2011-05-12 14:14:48 -070017#include <base/memory/scoped_ptr.h>
Ben Chan2e6543d2014-02-05 23:26:25 -080018#include <base/time/time.h>
Darin Petkovf1e85e42010-06-10 15:59:53 -070019#include <gtest/gtest_prod.h> // for FRIEND_TEST
20
Luigi Semenzato4a6c9422014-06-30 18:12:28 -070021#include "metrics/metrics_library.h"
22#include "metrics/persistent_integer.h"
Bertrand SIMONNET46b49da2014-06-25 14:38:07 -070023#include "uploader/upload_service.h"
Darin Petkovfc91b422010-05-12 13:05:45 -070024
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -080025using chromeos_metrics::PersistentInteger;
Darin Petkov2ccef012010-05-05 16:06:37 -070026
Darin Petkov65b01462010-04-14 13:32:20 -070027class MetricsDaemon {
Darin Petkov65b01462010-04-14 13:32:20 -070028 public:
Darin Petkovf1e85e42010-06-10 15:59:53 -070029 MetricsDaemon();
30 ~MetricsDaemon();
Darin Petkov65b01462010-04-14 13:32:20 -070031
Darin Petkov11b8eb32010-05-18 11:00:59 -070032 // Initializes.
Bertrand SIMONNET46b49da2014-06-25 14:38:07 -070033 void Init(bool testing,
34 bool uploader_active,
35 MetricsLibraryInterface* metrics_lib,
Luigi Semenzato5bd764f2011-10-14 12:03:35 -070036 const std::string& diskstats_path,
Luigi Semenzatofb3a8212013-05-07 16:55:00 -070037 const std::string& vmstats_path,
38 const std::string& cpuinfo_max_freq_path,
Steve Fung67906c62014-10-06 15:15:30 -070039 const std::string& scaling_max_freq_path,
Bertrand SIMONNETcac74e12014-10-09 10:14:13 -070040 const base::TimeDelta& upload_interval,
Steve Fung67906c62014-10-06 15:15:30 -070041 const std::string& server,
Bertrand SIMONNET71a62ef2014-10-07 11:26:25 -070042 const std::string& metrics_file,
43 const std::string& config_root);
Darin Petkov11b8eb32010-05-18 11:00:59 -070044
Darin Petkov703ec972010-04-27 11:02:18 -070045 // Does all the work. If |run_as_daemon| is true, daemonizes by
Darin Petkov2ccef012010-05-05 16:06:37 -070046 // forking.
47 void Run(bool run_as_daemon);
Darin Petkov65b01462010-04-14 13:32:20 -070048
Bertrand SIMONNET46b49da2014-06-25 14:38:07 -070049 // Triggers an upload event and exit. (Used to test UploadService)
50 void RunUploaderTest();
51
Luigi Semenzato96360192014-06-04 10:53:35 -070052 protected:
53 // Used also by the unit tests.
54 static const char kComprDataSizeName[];
55 static const char kOrigDataSizeName[];
56 static const char kZeroPagesName[];
57
Darin Petkov65b01462010-04-14 13:32:20 -070058 private:
Darin Petkov2ccef012010-05-05 16:06:37 -070059 friend class MetricsDaemonTest;
Ken Mixterccd84c02010-08-16 19:57:13 -070060 FRIEND_TEST(MetricsDaemonTest, CheckSystemCrash);
Ken Mixter4c5daa42010-08-26 18:35:06 -070061 FRIEND_TEST(MetricsDaemonTest, ComputeEpochNoCurrent);
62 FRIEND_TEST(MetricsDaemonTest, ComputeEpochNoLast);
63 FRIEND_TEST(MetricsDaemonTest, GetHistogramPath);
64 FRIEND_TEST(MetricsDaemonTest, IsNewEpoch);
Darin Petkove579d662010-05-05 16:19:39 -070065 FRIEND_TEST(MetricsDaemonTest, MessageFilter);
Luigi Semenzato5bd764f2011-10-14 12:03:35 -070066 FRIEND_TEST(MetricsDaemonTest, ParseVmStats);
Darin Petkov38d5cb02010-06-24 12:10:26 -070067 FRIEND_TEST(MetricsDaemonTest, ProcessKernelCrash);
Luigi Semenzato29c7ef92011-04-12 14:12:35 -070068 FRIEND_TEST(MetricsDaemonTest, ProcessMeminfo);
69 FRIEND_TEST(MetricsDaemonTest, ProcessMeminfo2);
Ken Mixterccd84c02010-08-16 19:57:13 -070070 FRIEND_TEST(MetricsDaemonTest, ProcessUncleanShutdown);
Darin Petkov1bb904e2010-06-16 15:58:06 -070071 FRIEND_TEST(MetricsDaemonTest, ProcessUserCrash);
Ken Mixterccd84c02010-08-16 19:57:13 -070072 FRIEND_TEST(MetricsDaemonTest, ReportCrashesDailyFrequency);
Luigi Semenzatofb3a8212013-05-07 16:55:00 -070073 FRIEND_TEST(MetricsDaemonTest, ReadFreqToInt);
Ken Mixterccd84c02010-08-16 19:57:13 -070074 FRIEND_TEST(MetricsDaemonTest, ReportDailyUse);
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -080075 FRIEND_TEST(MetricsDaemonTest, ReportDiskStats);
Ken Mixterccd84c02010-08-16 19:57:13 -070076 FRIEND_TEST(MetricsDaemonTest, ReportKernelCrashInterval);
77 FRIEND_TEST(MetricsDaemonTest, ReportUncleanShutdownInterval);
78 FRIEND_TEST(MetricsDaemonTest, ReportUserCrashInterval);
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -080079 FRIEND_TEST(MetricsDaemonTest, SendSample);
Luigi Semenzatofb3a8212013-05-07 16:55:00 -070080 FRIEND_TEST(MetricsDaemonTest, SendCpuThrottleMetrics);
Luigi Semenzato96360192014-06-04 10:53:35 -070081 FRIEND_TEST(MetricsDaemonTest, SendZramMetrics);
Darin Petkov41e06232010-05-03 16:45:37 -070082
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -080083 // State for disk stats collector callback.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -070084 enum StatsState {
85 kStatsShort, // short wait before short interval collection
86 kStatsLong, // final wait before new collection
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -080087 };
88
Darin Petkov41e06232010-05-03 16:45:37 -070089 // Data record for aggregating daily usage.
90 class UseRecord {
91 public:
92 UseRecord() : day_(0), seconds_(0) {}
93 int day_;
94 int seconds_;
95 };
96
Luigi Semenzato3ccca062013-02-04 19:50:45 -080097 // Type of scale to use for meminfo histograms. For most of them we use
98 // percent of total RAM, but for some we use absolute numbers, usually in
99 // megabytes, on a log scale from 0 to 4000, and 0 to 8000 for compressed
100 // swap (since it can be larger than total RAM).
Luigi Semenzato942cbab2013-02-12 13:17:07 -0800101 enum MeminfoOp {
102 kMeminfoOp_HistPercent = 0,
103 kMeminfoOp_HistLog,
104 kMeminfoOp_SwapTotal,
105 kMeminfoOp_SwapFree,
Luigi Semenzato3ccca062013-02-04 19:50:45 -0800106 };
107
Luigi Semenzato8accd332011-05-17 16:37:18 -0700108 // Record for retrieving and reporting values from /proc/meminfo.
109 struct MeminfoRecord {
Luigi Semenzato3ccca062013-02-04 19:50:45 -0800110 const char* name; // print name
111 const char* match; // string to match in output of /proc/meminfo
Luigi Semenzato942cbab2013-02-12 13:17:07 -0800112 MeminfoOp op; // histogram scale selector, or other operator
Luigi Semenzato3ccca062013-02-04 19:50:45 -0800113 int value; // value from /proc/meminfo
Luigi Semenzato8accd332011-05-17 16:37:18 -0700114 };
115
Sonny Rao4b8aebb2013-07-31 23:18:31 -0700116 // Record for retrieving and reporting values from /proc/vmstat
117 struct VmstatRecord {
118 uint64_t page_faults_; // major faults
119 uint64_t swap_in_; // pages swapped in
120 uint64_t swap_out_; // pages swapped out
121 };
122
Darin Petkov2ccef012010-05-05 16:06:37 -0700123 // Metric parameters.
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800124 static const char kMetricReadSectorsLongName[];
125 static const char kMetricReadSectorsShortName[];
126 static const char kMetricWriteSectorsLongName[];
127 static const char kMetricWriteSectorsShortName[];
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700128 static const char kMetricPageFaultsShortName[];
129 static const char kMetricPageFaultsLongName[];
Sonny Rao4b8aebb2013-07-31 23:18:31 -0700130 static const char kMetricSwapInLongName[];
131 static const char kMetricSwapInShortName[];
132 static const char kMetricSwapOutLongName[];
133 static const char kMetricSwapOutShortName[];
Luigi Semenzatofb3a8212013-05-07 16:55:00 -0700134 static const char kMetricScaledCpuFrequencyName[];
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700135 static const int kMetricStatsShortInterval;
136 static const int kMetricStatsLongInterval;
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700137 static const int kMetricMeminfoInterval;
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800138 static const int kMetricSectorsIOMax;
139 static const int kMetricSectorsBuckets;
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700140 static const int kMetricPageFaultsMax;
141 static const int kMetricPageFaultsBuckets;
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800142 static const char kMetricsDiskStatsPath[];
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700143 static const char kMetricsVmStatsPath[];
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700144 static const char kMetricsProcStatFileName[];
145 static const int kMetricsProcStatFirstLineItemsCount;
Darin Petkov2ccef012010-05-05 16:06:37 -0700146
Luigi Semenzato8accd332011-05-17 16:37:18 -0700147 // Returns the active time since boot (uptime minus sleep time) in seconds.
148 double GetActiveTime();
149
Darin Petkov65b01462010-04-14 13:32:20 -0700150 // Creates the event loop and enters it.
151 void Loop();
152
Darin Petkov703ec972010-04-27 11:02:18 -0700153 // D-Bus filter callback.
154 static DBusHandlerResult MessageFilter(DBusConnection* connection,
155 DBusMessage* message,
156 void* user_data);
Darin Petkov65b01462010-04-14 13:32:20 -0700157
Darin Petkov41e06232010-05-03 16:45:37 -0700158 // Updates the daily usage file, if necessary, by adding |seconds|
159 // of active use to the |day| since Epoch. If there's usage data for
160 // day in the past in the usage file, that data is sent to UMA and
161 // removed from the file. If there's already usage data for |day| in
162 // the usage file, the |seconds| are accumulated.
163 void LogDailyUseRecord(int day, int seconds);
164
Darin Petkov1bb904e2010-06-16 15:58:06 -0700165 // Updates the active use time and logs time between user-space
166 // process crashes.
167 void ProcessUserCrash();
168
Darin Petkov38d5cb02010-06-24 12:10:26 -0700169 // Updates the active use time and logs time between kernel crashes.
170 void ProcessKernelCrash();
171
Ken Mixterccd84c02010-08-16 19:57:13 -0700172 // Updates the active use time and logs time between unclean shutdowns.
173 void ProcessUncleanShutdown();
174
175 // Checks if a kernel crash has been detected and returns true if
176 // so. The method assumes that a kernel crash has happened if
177 // |crash_file| exists. It removes the file immediately if it
178 // exists, so it must not be called more than once.
179 bool CheckSystemCrash(const std::string& crash_file);
Darin Petkov38d5cb02010-06-24 12:10:26 -0700180
Ken Mixter4c5daa42010-08-26 18:35:06 -0700181 // Report daily use through UMA.
Luigi Semenzato5ef2e392014-04-15 15:15:02 -0700182 void ReportDailyUse(int use_seconds);
Ken Mixter4c5daa42010-08-26 18:35:06 -0700183
Darin Petkov11b8eb32010-05-18 11:00:59 -0700184 // Sends a regular (exponential) histogram sample to Chrome for
185 // transport to UMA. See MetricsLibrary::SendToUMA in
186 // metrics_library.h for a description of the arguments.
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800187 void SendSample(const std::string& name, int sample,
Darin Petkov11b8eb32010-05-18 11:00:59 -0700188 int min, int max, int nbuckets);
Darin Petkov65b01462010-04-14 13:32:20 -0700189
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700190 // Sends a linear histogram sample to Chrome for transport to UMA. See
191 // MetricsLibrary::SendToUMA in metrics_library.h for a description of the
192 // arguments.
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800193 void SendLinearSample(const std::string& name, int sample,
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700194 int max, int nbuckets);
195
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700196 // Sends various cumulative kernel crash-related stats, for instance the
197 // total number of kernel crashes since the last version update.
Luigi Semenzatoe5883fa2014-04-18 17:00:35 -0700198 void SendKernelCrashesCumulativeCountStats();
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700199
200 // Returns the total (system-wide) CPU usage between the time of the most
201 // recent call to this function and now.
202 base::TimeDelta GetIncrementalCpuUse();
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800203
Luigi Semenzatoe5883fa2014-04-18 17:00:35 -0700204 // Sends a sample representing the number of seconds of active use
205 // for a 24-hour period.
206 void SendDailyUseSample(const scoped_ptr<PersistentInteger>& use);
207
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800208 // Sends a sample representing a time interval between two crashes of the
209 // same type.
210 void SendCrashIntervalSample(const scoped_ptr<PersistentInteger>& interval);
211
212 // Sends a sample representing a frequency of crashes of some type.
213 void SendCrashFrequencySample(const scoped_ptr<PersistentInteger>& frequency);
214
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700215 // Initializes vm and disk stats reporting.
216 void StatsReporterInit();
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800217
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700218 // Schedules a callback for the next vm and disk stats collection.
219 void ScheduleStatsCallback(int wait);
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800220
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700221 // Reads cumulative disk statistics from sysfs. Returns true for success.
Ben Chanf05ab402014-08-07 00:54:59 -0700222 bool DiskStatsReadStats(uint64_t* read_sectors, uint64_t* write_sectors);
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800223
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700224 // Reads cumulative vm statistics from procfs. Returns true for success.
Sonny Rao4b8aebb2013-07-31 23:18:31 -0700225 bool VmStatsReadStats(struct VmstatRecord* stats);
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800226
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700227 // Parse cumulative vm statistics from a C string. Returns true for success.
Sonny Rao4b8aebb2013-07-31 23:18:31 -0700228 bool VmStatsParseStats(const char* stats, struct VmstatRecord* record);
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700229
230 // Reports disk and vm statistics (static version for glib). Arguments are a
231 // glib artifact.
232 static gboolean StatsCallbackStatic(void* handle);
233
234 // Reports disk and vm statistics.
235 void StatsCallback();
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800236
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700237 // Schedules meminfo collection callback.
238 void ScheduleMeminfoCallback(int wait);
239
240 // Reports memory statistics (static version for glib). Argument is a glib
241 // artifact.
242 static gboolean MeminfoCallbackStatic(void* handle);
243
244 // Reports memory statistics. Returns false on failure.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700245 bool MeminfoCallback();
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700246
247 // Parses content of /proc/meminfo and sends fields of interest to UMA.
Luigi Semenzato8accd332011-05-17 16:37:18 -0700248 // Returns false on errors. |meminfo_raw| contains the content of
249 // /proc/meminfo.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700250 bool ProcessMeminfo(const std::string& meminfo_raw);
Luigi Semenzato8accd332011-05-17 16:37:18 -0700251
252 // Parses meminfo data from |meminfo_raw|. |fields| is a vector containing
253 // the fields of interest. The order of the fields must be the same in which
254 // /proc/meminfo prints them. The result of parsing fields[i] is placed in
255 // fields[i].value.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700256 bool FillMeminfo(const std::string& meminfo_raw,
257 std::vector<MeminfoRecord>* fields);
Luigi Semenzato8accd332011-05-17 16:37:18 -0700258
Luigi Semenzato0d9a9c92013-12-05 15:55:12 -0800259 // Schedule a memory use callback in |interval| seconds.
260 void ScheduleMemuseCallback(double interval);
Luigi Semenzato8accd332011-05-17 16:37:18 -0700261
262 // Static wrapper for MemuseCallback. Always returns false.
263 static gboolean MemuseCallbackStatic(void* handle);
264
265 // Calls MemuseCallbackWork, and possibly schedules next callback, if enough
266 // active time has passed. Otherwise reschedules itself to simulate active
267 // time callbacks (i.e. wall clock time minus sleep time).
268 void MemuseCallback();
269
270 // Reads /proc/meminfo and sends total anonymous memory usage to UMA.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700271 bool MemuseCallbackWork();
Luigi Semenzato8accd332011-05-17 16:37:18 -0700272
Luigi Semenzatofb3a8212013-05-07 16:55:00 -0700273 // Parses meminfo data and sends it to UMA.
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700274 bool ProcessMemuse(const std::string& meminfo_raw);
Luigi Semenzato29c7ef92011-04-12 14:12:35 -0700275
Luigi Semenzatofb3a8212013-05-07 16:55:00 -0700276 // Sends stats for thermal CPU throttling.
277 void SendCpuThrottleMetrics();
278
279 // Reads an integer CPU frequency value from sysfs.
280 bool ReadFreqToInt(const std::string& sysfs_file_name, int* value);
281
Luigi Semenzato859b3f02014-02-05 15:33:19 -0800282 // Reads the current OS version from /etc/lsb-release and hashes it
283 // to a unsigned 32-bit int.
Ben Chanf05ab402014-08-07 00:54:59 -0700284 uint32_t GetOsVersionHash();
Luigi Semenzato859b3f02014-02-05 15:33:19 -0800285
Daniel Eratc83975a2014-04-04 08:53:44 -0700286 // Updates stats, additionally sending them to UMA if enough time has elapsed
287 // since the last report.
288 void UpdateStats(base::TimeTicks now_ticks, base::Time now_wall_time);
289
290 // Invoked periodically by |update_stats_timeout_id_| to call UpdateStats().
291 static gboolean HandleUpdateStatsTimeout(gpointer data);
292
Luigi Semenzato96360192014-06-04 10:53:35 -0700293 // Reports zram statistics.
294 bool ReportZram(const base::FilePath& zram_dir);
295
Ben Chanf05ab402014-08-07 00:54:59 -0700296 // Reads a string from a file and converts it to uint64_t.
297 static bool ReadFileToUint64(const base::FilePath& path, uint64_t* value);
Luigi Semenzato96360192014-06-04 10:53:35 -0700298
299 // VARIABLES
300
Darin Petkov2ccef012010-05-05 16:06:37 -0700301 // Test mode.
Darin Petkov41e06232010-05-03 16:45:37 -0700302 bool testing_;
Darin Petkov65b01462010-04-14 13:32:20 -0700303
Bertrand SIMONNET71a62ef2014-10-07 11:26:25 -0700304 // Root of the configuration files to use.
305 std::string config_root_;
306
Darin Petkovfc91b422010-05-12 13:05:45 -0700307 // The metrics library handle.
308 MetricsLibraryInterface* metrics_lib_;
309
Darin Petkovf27f0362010-06-04 13:14:19 -0700310 // Timestamps last network state update. This timestamp is used to
311 // sample the time from the network going online to going offline so
312 // TimeTicks ensures a monotonically increasing TimeDelta.
313 base::TimeTicks network_state_last_;
Darin Petkov65b01462010-04-14 13:32:20 -0700314
Daniel Eratc83975a2014-04-04 08:53:44 -0700315 // The last time that UpdateStats() was called.
316 base::TimeTicks last_update_stats_time_;
Darin Petkov41e06232010-05-03 16:45:37 -0700317
Daniel Eratc83975a2014-04-04 08:53:44 -0700318 // ID of a GLib timeout that repeatedly runs UpdateStats().
319 gint update_stats_timeout_id_;
Darin Petkov41e06232010-05-03 16:45:37 -0700320
Darin Petkov41e06232010-05-03 16:45:37 -0700321 // Sleep period until the next daily usage aggregation performed by
322 // the daily use monitor (see ScheduleUseMonitor).
323 int usemon_interval_;
324
325 // Scheduled daily use monitor source (see ScheduleUseMonitor).
326 GSource* usemon_source_;
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800327
Luigi Semenzato0d9a9c92013-12-05 15:55:12 -0800328 // End time of current memuse stat collection interval.
329 double memuse_final_time_;
Luigi Semenzato8accd332011-05-17 16:37:18 -0700330
331 // Selects the wait time for the next memory use callback.
332 unsigned int memuse_interval_index_;
333
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700334 // Contain the most recent disk and vm cumulative stats.
Ben Chanf05ab402014-08-07 00:54:59 -0700335 uint64_t read_sectors_;
336 uint64_t write_sectors_;
Sonny Rao4b8aebb2013-07-31 23:18:31 -0700337 struct VmstatRecord vmstats_;
Luigi Semenzatoc88e42d2011-02-17 10:21:16 -0800338
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700339 StatsState stats_state_;
340 double stats_initial_time_;
341
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700342 // The system "HZ", or frequency of ticks. Some system data uses ticks as a
343 // unit, and this is used to convert to standard time units.
Ben Chanf05ab402014-08-07 00:54:59 -0700344 uint32_t ticks_per_second_;
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700345 // Used internally by GetIncrementalCpuUse() to return the CPU utilization
346 // between calls.
Ben Chanf05ab402014-08-07 00:54:59 -0700347 uint64_t latest_cpu_use_ticks_;
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700348
349 // Persistent values and accumulators for crash statistics.
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800350 scoped_ptr<PersistentInteger> daily_cycle_;
351 scoped_ptr<PersistentInteger> weekly_cycle_;
352 scoped_ptr<PersistentInteger> version_cycle_;
353
Luigi Semenzatoe5883fa2014-04-18 17:00:35 -0700354 // Active use accumulated in a day.
355 scoped_ptr<PersistentInteger> daily_active_use_;
356 // Active use accumulated since the latest version update.
357 scoped_ptr<PersistentInteger> version_cumulative_active_use_;
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800358
Luigi Semenzatoba0c65d2014-03-17 12:28:38 -0700359 // The CPU time accumulator. This contains the CPU time, in milliseconds,
360 // used by the system since the most recent OS version update.
361 scoped_ptr<PersistentInteger> version_cumulative_cpu_use_;
362
Luigi Semenzato2fd51cc2014-02-26 11:53:16 -0800363 scoped_ptr<PersistentInteger> user_crash_interval_;
364 scoped_ptr<PersistentInteger> kernel_crash_interval_;
365 scoped_ptr<PersistentInteger> unclean_shutdown_interval_;
366
367 scoped_ptr<PersistentInteger> any_crashes_daily_count_;
368 scoped_ptr<PersistentInteger> any_crashes_weekly_count_;
369 scoped_ptr<PersistentInteger> user_crashes_daily_count_;
370 scoped_ptr<PersistentInteger> user_crashes_weekly_count_;
371 scoped_ptr<PersistentInteger> kernel_crashes_daily_count_;
372 scoped_ptr<PersistentInteger> kernel_crashes_weekly_count_;
373 scoped_ptr<PersistentInteger> kernel_crashes_version_count_;
374 scoped_ptr<PersistentInteger> unclean_shutdowns_daily_count_;
375 scoped_ptr<PersistentInteger> unclean_shutdowns_weekly_count_;
376
Luigi Semenzato0f132bb2011-02-28 11:17:43 -0800377 std::string diskstats_path_;
Luigi Semenzato5bd764f2011-10-14 12:03:35 -0700378 std::string vmstats_path_;
Luigi Semenzatofb3a8212013-05-07 16:55:00 -0700379 std::string scaling_max_freq_path_;
380 std::string cpuinfo_max_freq_path_;
Bertrand SIMONNET46b49da2014-06-25 14:38:07 -0700381
Bertrand SIMONNETcac74e12014-10-09 10:14:13 -0700382 base::TimeDelta upload_interval_;
Steve Fung67906c62014-10-06 15:15:30 -0700383 std::string server_;
384 std::string metrics_file_;
385
Bertrand SIMONNET46b49da2014-06-25 14:38:07 -0700386 scoped_ptr<UploadService> upload_service_;
Darin Petkov65b01462010-04-14 13:32:20 -0700387};
388
Luigi Semenzato4a6c9422014-06-30 18:12:28 -0700389#endif // METRICS_METRICS_DAEMON_H_