blob: b7f1bd530d5e277c705b5004e705c2f38976999e [file] [log] [blame]
Yao Chen44cf27c2017-09-14 22:32:50 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Yao Chen8a8d16c2018-02-08 14:50:40 -080016#define DEBUG true // STOPSHIP if true
Joe Onorato9fc9edf2017-10-15 20:08:52 -070017#include "Log.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070018#include "MetricsManager.h"
Yao Chend10f7b12017-12-18 12:53:50 -080019#include "statslog.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070020
Yao Chen44cf27c2017-09-14 22:32:50 -070021#include "CountMetricProducer.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070022#include "condition/CombinationConditionTracker.h"
23#include "condition/SimpleConditionTracker.h"
Yao Chenb3561512017-11-21 18:07:17 -080024#include "guardrail/StatsdStats.h"
Yao Chen93fe3a32017-11-02 13:52:59 -070025#include "matchers/CombinationLogMatchingTracker.h"
26#include "matchers/SimpleLogMatchingTracker.h"
Yao Chencaf339d2017-10-06 16:01:10 -070027#include "metrics_manager_util.h"
28#include "stats_util.h"
Yangster-mac330af582018-02-08 15:24:38 -080029#include "stats_log_util.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070030
Yao Chen93fe3a32017-11-02 13:52:59 -070031#include <log/logprint.h>
Bookatz6f197902018-02-05 12:30:14 -080032#include <private/android_filesystem_config.h>
David Chen16049572018-02-01 18:27:51 -080033#include <utils/SystemClock.h>
Yao Chen288c6002017-12-12 13:43:18 -080034
35using android::util::FIELD_COUNT_REPEATED;
David Chenfaa1af52018-03-30 15:14:04 -070036using android::util::FIELD_TYPE_INT32;
37using android::util::FIELD_TYPE_INT64;
Yao Chen288c6002017-12-12 13:43:18 -080038using android::util::FIELD_TYPE_MESSAGE;
39using android::util::ProtoOutputStream;
40
Yao Chen44cf27c2017-09-14 22:32:50 -070041using std::make_unique;
42using std::set;
43using std::string;
Yao Chen44cf27c2017-09-14 22:32:50 -070044using std::unordered_map;
45using std::vector;
46
47namespace android {
48namespace os {
49namespace statsd {
50
Yao Chen288c6002017-12-12 13:43:18 -080051const int FIELD_ID_METRICS = 1;
David Chenfaa1af52018-03-30 15:14:04 -070052const int FIELD_ID_ANNOTATIONS = 7;
53const int FIELD_ID_ANNOTATIONS_INT64 = 1;
54const int FIELD_ID_ANNOTATIONS_INT32 = 2;
Yao Chen288c6002017-12-12 13:43:18 -080055
Yao Chend10f7b12017-12-18 12:53:50 -080056MetricsManager::MetricsManager(const ConfigKey& key, const StatsdConfig& config,
Yangster-macc04feba2018-04-02 14:37:33 -070057 const long timeBaseSec, const long currentTimeSec,
Yangster-mac932ecec2018-02-01 10:23:52 -080058 const sp<UidMap> &uidMap,
59 const sp<AlarmMonitor>& anomalyAlarmMonitor,
60 const sp<AlarmMonitor>& periodicAlarmMonitor)
Yangster-mac3fa5d7f2018-03-10 21:50:27 -080061 : mConfigKey(key), mUidMap(uidMap),
Yangster-macb142cc82018-03-30 15:22:08 -070062 mTtlNs(config.has_ttl_in_seconds() ? config.ttl_in_seconds() * NS_PER_SEC : -1),
63 mTtlEndNs(-1),
Yangster-mac3fa5d7f2018-03-10 21:50:27 -080064 mLastReportTimeNs(timeBaseSec * NS_PER_SEC),
65 mLastReportWallClockNs(getWallClockNs()) {
Yangster-macb142cc82018-03-30 15:22:08 -070066 // Init the ttl end timestamp.
67 refreshTtl(timeBaseSec * NS_PER_SEC);
68
Yao Chenb3561512017-11-21 18:07:17 -080069 mConfigValid =
Yangster-mac932ecec2018-02-01 10:23:52 -080070 initStatsdConfig(key, config, *uidMap, anomalyAlarmMonitor, periodicAlarmMonitor,
Yangster-macc04feba2018-04-02 14:37:33 -070071 timeBaseSec, currentTimeSec, mTagIds, mAllAtomMatchers,
Yangster-mac932ecec2018-02-01 10:23:52 -080072 mAllConditionTrackers, mAllMetricProducers, mAllAnomalyTrackers,
73 mAllPeriodicAlarmTrackers, mConditionToMetricMap, mTrackerToMetricMap,
74 mTrackerToConditionMap, mNoReportMetricIds);
Yao Chenb3561512017-11-21 18:07:17 -080075
Yao Chen147ce602017-12-22 14:35:34 -080076 if (config.allowed_log_source_size() == 0) {
David Chen8faaa012018-02-28 15:54:36 -080077 mConfigValid = false;
78 ALOGE("Log source whitelist is empty! This config won't get any data. Suggest adding at "
79 "least AID_SYSTEM and AID_STATSD to the allowed_log_source field.");
Yao Chend10f7b12017-12-18 12:53:50 -080080 } else {
Yao Chen147ce602017-12-22 14:35:34 -080081 for (const auto& source : config.allowed_log_source()) {
82 auto it = UidMap::sAidToUidMapping.find(source);
83 if (it != UidMap::sAidToUidMapping.end()) {
84 mAllowedUid.push_back(it->second);
85 } else {
86 mAllowedPkg.push_back(source);
87 }
88 }
Yao Chend10f7b12017-12-18 12:53:50 -080089
90 if (mAllowedUid.size() + mAllowedPkg.size() > StatsdStats::kMaxLogSourceCount) {
91 ALOGE("Too many log sources. This is likely to be an error in the config.");
92 mConfigValid = false;
93 } else {
94 initLogSourceWhiteList();
95 }
96 }
97
David Chenfaa1af52018-03-30 15:14:04 -070098 // Store the sub-configs used.
99 for (const auto& annotation : config.annotation()) {
100 mAnnotations.emplace_back(annotation.field_int64(), annotation.field_int32());
101 }
102
Yao Chenb3561512017-11-21 18:07:17 -0800103 // Guardrail. Reject the config if it's too big.
104 if (mAllMetricProducers.size() > StatsdStats::kMaxMetricCountPerConfig ||
105 mAllConditionTrackers.size() > StatsdStats::kMaxConditionCountPerConfig ||
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800106 mAllAtomMatchers.size() > StatsdStats::kMaxMatcherCountPerConfig) {
Yao Chenb3561512017-11-21 18:07:17 -0800107 ALOGE("This config is too big! Reject!");
108 mConfigValid = false;
109 }
Bookatz1476ef22018-02-13 12:26:01 -0800110 if (mAllAnomalyTrackers.size() > StatsdStats::kMaxAlertCountPerConfig) {
111 ALOGE("This config has too many alerts! Reject!");
112 mConfigValid = false;
113 }
Yao Chenf09569f2017-12-13 17:00:51 -0800114 // no matter whether this config is valid, log it in the stats.
David Chenfaa1af52018-03-30 15:14:04 -0700115 StatsdStats::getInstance().noteConfigReceived(
116 key, mAllMetricProducers.size(), mAllConditionTrackers.size(), mAllAtomMatchers.size(),
117 mAllAnomalyTrackers.size(), mAnnotations, mConfigValid);
Yao Chen44cf27c2017-09-14 22:32:50 -0700118}
119
120MetricsManager::~MetricsManager() {
Bookatzd3606c72017-10-19 10:13:49 -0700121 VLOG("~MetricsManager()");
Yao Chen44cf27c2017-09-14 22:32:50 -0700122}
123
Yao Chend10f7b12017-12-18 12:53:50 -0800124void MetricsManager::initLogSourceWhiteList() {
125 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
126 mAllowedLogSources.clear();
127 mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end());
128
129 for (const auto& pkg : mAllowedPkg) {
130 auto uids = mUidMap->getAppUid(pkg);
131 mAllowedLogSources.insert(uids.begin(), uids.end());
132 }
133 if (DEBUG) {
134 for (const auto& uid : mAllowedLogSources) {
135 VLOG("Allowed uid %d", uid);
136 }
137 }
138}
139
Yao Chencaf339d2017-10-06 16:01:10 -0700140bool MetricsManager::isConfigValid() const {
141 return mConfigValid;
142}
143
Yangster-macb142cc82018-03-30 15:22:08 -0700144void MetricsManager::notifyAppUpgrade(const int64_t& eventTimeNs, const string& apk, const int uid,
David Chen27785a82018-01-19 17:06:45 -0800145 const int64_t version) {
Yao Chend10f7b12017-12-18 12:53:50 -0800146 // check if we care this package
147 if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) {
148 return;
149 }
150 // We will re-initialize the whole list because we don't want to keep the multi mapping of
151 // UID<->pkg inside MetricsManager to reduce the memory usage.
152 initLogSourceWhiteList();
153}
154
Yangster-macb142cc82018-03-30 15:22:08 -0700155void MetricsManager::notifyAppRemoved(const int64_t& eventTimeNs, const string& apk,
David Chen27785a82018-01-19 17:06:45 -0800156 const int uid) {
Yao Chend10f7b12017-12-18 12:53:50 -0800157 // check if we care this package
158 if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) {
159 return;
160 }
161 // We will re-initialize the whole list because we don't want to keep the multi mapping of
162 // UID<->pkg inside MetricsManager to reduce the memory usage.
163 initLogSourceWhiteList();
164}
165
Yangster-macb142cc82018-03-30 15:22:08 -0700166void MetricsManager::onUidMapReceived(const int64_t& eventTimeNs) {
Yao Chend10f7b12017-12-18 12:53:50 -0800167 if (mAllowedPkg.size() == 0) {
168 return;
169 }
170 initLogSourceWhiteList();
171}
172
Yao Chen884c8c12018-01-26 10:36:25 -0800173void MetricsManager::dumpStates(FILE* out, bool verbose) {
174 fprintf(out, "ConfigKey %s, allowed source:", mConfigKey.ToString().c_str());
175 {
176 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
177 for (const auto& source : mAllowedLogSources) {
178 fprintf(out, "%d ", source);
179 }
180 }
181 fprintf(out, "\n");
182 for (const auto& producer : mAllMetricProducers) {
183 producer->dumpStates(out, verbose);
184 }
185}
186
Yangster-macb142cc82018-03-30 15:22:08 -0700187void MetricsManager::dropData(const int64_t dropTimeNs) {
Yao Chen06dba5d2018-01-26 13:38:16 -0800188 for (const auto& producer : mAllMetricProducers) {
189 producer->dropData(dropTimeNs);
190 }
191}
192
Yangster-mace68f3a52018-04-04 00:01:43 -0700193void MetricsManager::onDumpReport(const int64_t dumpTimeStampNs,
194 const bool include_current_partial_bucket,
195 ProtoOutputStream* protoOutput) {
Yao Chen729093d2017-10-16 10:33:26 -0700196 VLOG("=========================Metric Reports Start==========================");
197 // one StatsLogReport per MetricProduer
Yangster-mac94e197c2018-01-02 16:03:03 -0800198 for (const auto& producer : mAllMetricProducers) {
199 if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) {
Yi Jin5ee07872018-03-05 18:18:27 -0800200 uint64_t token =
Yangster-mac94e197c2018-01-02 16:03:03 -0800201 protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_METRICS);
Yangster-mace68f3a52018-04-04 00:01:43 -0700202 producer->onDumpReport(dumpTimeStampNs, include_current_partial_bucket, protoOutput);
Yangster-mac94e197c2018-01-02 16:03:03 -0800203 protoOutput->end(token);
204 }
Yao Chen729093d2017-10-16 10:33:26 -0700205 }
David Chenfaa1af52018-03-30 15:14:04 -0700206 for (const auto& annotation : mAnnotations) {
207 uint64_t token = protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED |
208 FIELD_ID_ANNOTATIONS);
209 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_ANNOTATIONS_INT64,
210 (long long)annotation.first);
211 protoOutput->write(FIELD_TYPE_INT32 | FIELD_ID_ANNOTATIONS_INT32, annotation.second);
212 protoOutput->end(token);
213 }
Yangster-mac330af582018-02-08 15:24:38 -0800214 mLastReportTimeNs = dumpTimeStampNs;
Yangster-mac3fa5d7f2018-03-10 21:50:27 -0800215 mLastReportWallClockNs = getWallClockNs();
Yao Chen729093d2017-10-16 10:33:26 -0700216 VLOG("=========================Metric Reports End==========================");
Yao Chen729093d2017-10-16 10:33:26 -0700217}
218
Yao Chen44cf27c2017-09-14 22:32:50 -0700219// Consume the stats log if it's interesting to this metric.
Joe Onoratoc4dfae52017-10-17 23:38:21 -0700220void MetricsManager::onLogEvent(const LogEvent& event) {
Yao Chencaf339d2017-10-06 16:01:10 -0700221 if (!mConfigValid) {
222 return;
223 }
224
David Chenb639d142018-02-14 17:29:54 -0800225 if (event.GetTagId() == android::util::APP_BREADCRUMB_REPORTED) {
226 // Check that app breadcrumb reported fields are valid.
227 // TODO: Find a way to make these checks easier to maintain.
David Chendaa9f3a2017-12-28 16:52:22 -0800228 status_t err = NO_ERROR;
Bookatzb223c4e2018-02-01 15:35:04 -0800229
230 // Uid is 3rd from last field and must match the caller's uid,
231 // unless that caller is statsd itself (statsd is allowed to spoof uids).
232 long appHookUid = event.GetLong(event.size()-2, &err);
David Chen77ef6712018-02-23 18:23:42 -0800233 if (err != NO_ERROR ) {
234 VLOG("APP_BREADCRUMB_REPORTED had error when parsing the uid");
235 return;
236 }
Bookatzb223c4e2018-02-01 15:35:04 -0800237 int32_t loggerUid = event.GetUid();
David Chen77ef6712018-02-23 18:23:42 -0800238 if (loggerUid != appHookUid && loggerUid != AID_STATSD) {
239 VLOG("APP_BREADCRUMB_REPORTED has invalid uid: claimed %ld but caller is %d",
240 appHookUid, loggerUid);
David Chendaa9f3a2017-12-28 16:52:22 -0800241 return;
242 }
Bookatzb223c4e2018-02-01 15:35:04 -0800243
244 // Label is 2nd from last field and must be from [0, 15].
245 long appHookLabel = event.GetLong(event.size()-1, &err);
David Chen77ef6712018-02-23 18:23:42 -0800246 if (err != NO_ERROR ) {
247 VLOG("APP_BREADCRUMB_REPORTED had error when parsing the label field");
248 return;
249 } else if (appHookLabel < 0 || appHookLabel > 15) {
250 VLOG("APP_BREADCRUMB_REPORTED does not have valid label %ld", appHookLabel);
Bookatzb223c4e2018-02-01 15:35:04 -0800251 return;
252 }
253
David Chendaa9f3a2017-12-28 16:52:22 -0800254 // The state must be from 0,3. This part of code must be manually updated.
Bookatzb223c4e2018-02-01 15:35:04 -0800255 long appHookState = event.GetLong(event.size(), &err);
David Chen77ef6712018-02-23 18:23:42 -0800256 if (err != NO_ERROR ) {
257 VLOG("APP_BREADCRUMB_REPORTED had error when parsing the state field");
258 return;
259 } else if (appHookState < 0 || appHookState > 3) {
260 VLOG("APP_BREADCRUMB_REPORTED does not have valid state %ld", appHookState);
David Chendaa9f3a2017-12-28 16:52:22 -0800261 return;
262 }
Tej Singhbb8554a2018-01-26 11:59:14 -0800263 } else if (event.GetTagId() == android::util::DAVEY_OCCURRED) {
264 // Daveys can be logged from any app since they are logged in libs/hwui/JankTracker.cpp.
265 // Check that the davey duration is reasonable. Max length check is for privacy.
266 status_t err = NO_ERROR;
David Chen77ef6712018-02-23 18:23:42 -0800267
268 // Uid is the first field provided.
269 long jankUid = event.GetLong(1, &err);
270 if (err != NO_ERROR ) {
271 VLOG("Davey occurred had error when parsing the uid");
272 return;
273 }
274 int32_t loggerUid = event.GetUid();
275 if (loggerUid != jankUid && loggerUid != AID_STATSD) {
276 VLOG("DAVEY_OCCURRED has invalid uid: claimed %ld but caller is %d", jankUid,
277 loggerUid);
278 return;
279 }
280
Tej Singhbb8554a2018-01-26 11:59:14 -0800281 long duration = event.GetLong(event.size(), &err);
David Chen77ef6712018-02-23 18:23:42 -0800282 if (err != NO_ERROR ) {
283 VLOG("Davey occurred had error when parsing the duration");
284 return;
285 } else if (duration > 100000) {
Tej Singhbb8554a2018-01-26 11:59:14 -0800286 VLOG("Davey duration is unreasonably long: %ld", duration);
287 return;
288 }
289 } else {
290 std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex);
291 if (mAllowedLogSources.find(event.GetUid()) == mAllowedLogSources.end()) {
292 VLOG("log source %d not on the whitelist", event.GetUid());
293 return;
294 }
Yao Chend10f7b12017-12-18 12:53:50 -0800295 }
296
Joe Onoratoc4dfae52017-10-17 23:38:21 -0700297 int tagId = event.GetTagId();
Yangster-macb142cc82018-03-30 15:22:08 -0700298 int64_t eventTime = event.GetElapsedTimestampNs();
Yao Chen44cf27c2017-09-14 22:32:50 -0700299 if (mTagIds.find(tagId) == mTagIds.end()) {
300 // not interesting...
301 return;
302 }
Yao Chen44cf27c2017-09-14 22:32:50 -0700303
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800304 vector<MatchingState> matcherCache(mAllAtomMatchers.size(), MatchingState::kNotComputed);
Yao Chencaf339d2017-10-06 16:01:10 -0700305
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800306 for (auto& matcher : mAllAtomMatchers) {
307 matcher->onLogEvent(event, mAllAtomMatchers, matcherCache);
Yao Chen44cf27c2017-09-14 22:32:50 -0700308 }
309
Yao Chencaf339d2017-10-06 16:01:10 -0700310 // A bitmap to see which ConditionTracker needs to be re-evaluated.
311 vector<bool> conditionToBeEvaluated(mAllConditionTrackers.size(), false);
312
313 for (const auto& pair : mTrackerToConditionMap) {
314 if (matcherCache[pair.first] == MatchingState::kMatched) {
315 const auto& conditionList = pair.second;
316 for (const int conditionIndex : conditionList) {
317 conditionToBeEvaluated[conditionIndex] = true;
318 }
319 }
320 }
321
322 vector<ConditionState> conditionCache(mAllConditionTrackers.size(),
323 ConditionState::kNotEvaluated);
324 // A bitmap to track if a condition has changed value.
325 vector<bool> changedCache(mAllConditionTrackers.size(), false);
326 for (size_t i = 0; i < mAllConditionTrackers.size(); i++) {
327 if (conditionToBeEvaluated[i] == false) {
328 continue;
329 }
Yao Chencaf339d2017-10-06 16:01:10 -0700330 sp<ConditionTracker>& condition = mAllConditionTrackers[i];
331 condition->evaluateCondition(event, matcherCache, mAllConditionTrackers, conditionCache,
Yao Chen967b2052017-11-07 16:36:43 -0800332 changedCache);
Yao Chen729093d2017-10-16 10:33:26 -0700333 }
334
335 for (size_t i = 0; i < mAllConditionTrackers.size(); i++) {
Yao Chen967b2052017-11-07 16:36:43 -0800336 if (changedCache[i] == false) {
Yao Chen729093d2017-10-16 10:33:26 -0700337 continue;
338 }
339 auto pair = mConditionToMetricMap.find(i);
340 if (pair != mConditionToMetricMap.end()) {
341 auto& metricList = pair->second;
342 for (auto metricIndex : metricList) {
343 // metric cares about non sliced condition, and it's changed.
344 // Push the new condition to it directly.
Yao Chen967b2052017-11-07 16:36:43 -0800345 if (!mAllMetricProducers[metricIndex]->isConditionSliced()) {
Yao Chen5154a372017-10-30 22:57:06 -0700346 mAllMetricProducers[metricIndex]->onConditionChanged(conditionCache[i],
347 eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700348 // metric cares about sliced conditions, and it may have changed. Send
349 // notification, and the metric can query the sliced conditions that are
350 // interesting to it.
Yangsterf2bee6f2017-11-29 12:01:05 -0800351 } else {
Yao Chen427d3722018-03-22 15:21:52 -0700352 mAllMetricProducers[metricIndex]->onSlicedConditionMayChange(conditionCache[i],
353 eventTime);
Yao Chen44cf27c2017-09-14 22:32:50 -0700354 }
Yao Chencaf339d2017-10-06 16:01:10 -0700355 }
356 }
357 }
358
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800359 // For matched AtomMatchers, tell relevant metrics that a matched event has come.
360 for (size_t i = 0; i < mAllAtomMatchers.size(); i++) {
Yao Chencaf339d2017-10-06 16:01:10 -0700361 if (matcherCache[i] == MatchingState::kMatched) {
Yao Chenb3561512017-11-21 18:07:17 -0800362 StatsdStats::getInstance().noteMatcherMatched(mConfigKey,
Yangster-mac94e197c2018-01-02 16:03:03 -0800363 mAllAtomMatchers[i]->getId());
Yao Chencaf339d2017-10-06 16:01:10 -0700364 auto pair = mTrackerToMetricMap.find(i);
365 if (pair != mTrackerToMetricMap.end()) {
366 auto& metricList = pair->second;
367 for (const int metricIndex : metricList) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700368 // pushed metrics are never scheduled pulls
Chenjie Yua7259ab2017-12-10 08:31:05 -0800369 mAllMetricProducers[metricIndex]->onMatchedLogEvent(i, event);
Yao Chencaf339d2017-10-06 16:01:10 -0700370 }
Yao Chen44cf27c2017-09-14 22:32:50 -0700371 }
372 }
373 }
374}
375
Yangster-mac932ecec2018-02-01 10:23:52 -0800376void MetricsManager::onAnomalyAlarmFired(
Yangster-macb142cc82018-03-30 15:22:08 -0700377 const int64_t& timestampNs,
Yangster-mac932ecec2018-02-01 10:23:52 -0800378 unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>>& alarmSet) {
Yangster-mace2cd6d52017-11-09 20:38:30 -0800379 for (const auto& itr : mAllAnomalyTrackers) {
Yangster-mac932ecec2018-02-01 10:23:52 -0800380 itr->informAlarmsFired(timestampNs, alarmSet);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800381 }
382}
383
Yangster-mac932ecec2018-02-01 10:23:52 -0800384void MetricsManager::onPeriodicAlarmFired(
Yangster-macb142cc82018-03-30 15:22:08 -0700385 const int64_t& timestampNs,
Yangster-mac932ecec2018-02-01 10:23:52 -0800386 unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>>& alarmSet) {
387 for (const auto& itr : mAllPeriodicAlarmTrackers) {
388 itr->informAlarmsFired(timestampNs, alarmSet);
Yangster-mace2cd6d52017-11-09 20:38:30 -0800389 }
390}
391
yro69007c82017-10-26 20:42:57 -0700392// Returns the total byte size of all metrics managed by a single config source.
393size_t MetricsManager::byteSize() {
394 size_t totalSize = 0;
395 for (auto metricProducer : mAllMetricProducers) {
396 totalSize += metricProducer->byteSize();
397 }
398 return totalSize;
399}
400
Yao Chen44cf27c2017-09-14 22:32:50 -0700401} // namespace statsd
402} // namespace os
403} // namespace android