Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 1 | /* |
| 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 Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 16 | #define DEBUG true // STOPSHIP if true |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 17 | #include "Log.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 18 | #include "MetricsManager.h" |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 19 | #include "statslog.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 20 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 21 | #include "CountMetricProducer.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 22 | #include "condition/CombinationConditionTracker.h" |
| 23 | #include "condition/SimpleConditionTracker.h" |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 24 | #include "guardrail/StatsdStats.h" |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 25 | #include "matchers/CombinationLogMatchingTracker.h" |
| 26 | #include "matchers/SimpleLogMatchingTracker.h" |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 27 | #include "metrics_manager_util.h" |
| 28 | #include "stats_util.h" |
Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 29 | #include "stats_log_util.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 30 | |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 31 | #include <log/logprint.h> |
Bookatz | 6f19790 | 2018-02-05 12:30:14 -0800 | [diff] [blame] | 32 | #include <private/android_filesystem_config.h> |
David Chen | 1604957 | 2018-02-01 18:27:51 -0800 | [diff] [blame] | 33 | #include <utils/SystemClock.h> |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 34 | |
| 35 | using android::util::FIELD_COUNT_REPEATED; |
| 36 | using android::util::FIELD_TYPE_MESSAGE; |
| 37 | using android::util::ProtoOutputStream; |
| 38 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 39 | using std::make_unique; |
| 40 | using std::set; |
| 41 | using std::string; |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 42 | using std::unordered_map; |
| 43 | using std::vector; |
| 44 | |
| 45 | namespace android { |
| 46 | namespace os { |
| 47 | namespace statsd { |
| 48 | |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 49 | const int FIELD_ID_METRICS = 1; |
| 50 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 51 | MetricsManager::MetricsManager(const ConfigKey& key, const StatsdConfig& config, |
| 52 | const long timeBaseSec, sp<UidMap> uidMap) |
Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 53 | : mConfigKey(key), mUidMap(uidMap), mLastReportTimeNs(timeBaseSec * NS_PER_SEC) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 54 | mConfigValid = |
Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 55 | initStatsdConfig(key, config, *uidMap, timeBaseSec, mTagIds, mAllAtomMatchers, |
| 56 | mAllConditionTrackers, |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 57 | mAllMetricProducers, mAllAnomalyTrackers, mConditionToMetricMap, |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 58 | mTrackerToMetricMap, mTrackerToConditionMap, mNoReportMetricIds); |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 59 | |
Yao Chen | 147ce60 | 2017-12-22 14:35:34 -0800 | [diff] [blame] | 60 | if (config.allowed_log_source_size() == 0) { |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 61 | // TODO(b/70794411): uncomment the following line and remove the hard coded log source |
| 62 | // after all configs have the log source added. |
| 63 | // mConfigValid = false; |
| 64 | // ALOGE("Log source white list is empty! This config won't get any data."); |
| 65 | |
Bookatz | 6f19790 | 2018-02-05 12:30:14 -0800 | [diff] [blame] | 66 | mAllowedUid.push_back(AID_ROOT); |
| 67 | mAllowedUid.push_back(AID_STATSD); |
| 68 | mAllowedUid.push_back(AID_SYSTEM); |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 69 | mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end()); |
| 70 | } else { |
Yao Chen | 147ce60 | 2017-12-22 14:35:34 -0800 | [diff] [blame] | 71 | for (const auto& source : config.allowed_log_source()) { |
| 72 | auto it = UidMap::sAidToUidMapping.find(source); |
| 73 | if (it != UidMap::sAidToUidMapping.end()) { |
| 74 | mAllowedUid.push_back(it->second); |
| 75 | } else { |
| 76 | mAllowedPkg.push_back(source); |
| 77 | } |
| 78 | } |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 79 | |
| 80 | if (mAllowedUid.size() + mAllowedPkg.size() > StatsdStats::kMaxLogSourceCount) { |
| 81 | ALOGE("Too many log sources. This is likely to be an error in the config."); |
| 82 | mConfigValid = false; |
| 83 | } else { |
| 84 | initLogSourceWhiteList(); |
| 85 | } |
| 86 | } |
| 87 | |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 88 | // Guardrail. Reject the config if it's too big. |
| 89 | if (mAllMetricProducers.size() > StatsdStats::kMaxMetricCountPerConfig || |
| 90 | mAllConditionTrackers.size() > StatsdStats::kMaxConditionCountPerConfig || |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 91 | mAllAtomMatchers.size() > StatsdStats::kMaxMatcherCountPerConfig) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 92 | ALOGE("This config is too big! Reject!"); |
| 93 | mConfigValid = false; |
| 94 | } |
Yao Chen | f09569f | 2017-12-13 17:00:51 -0800 | [diff] [blame] | 95 | |
| 96 | // TODO: add alert size. |
| 97 | // no matter whether this config is valid, log it in the stats. |
| 98 | StatsdStats::getInstance().noteConfigReceived(key, mAllMetricProducers.size(), |
| 99 | mAllConditionTrackers.size(), |
| 100 | mAllAtomMatchers.size(), 0, mConfigValid); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | MetricsManager::~MetricsManager() { |
Bookatz | d3606c7 | 2017-10-19 10:13:49 -0700 | [diff] [blame] | 104 | VLOG("~MetricsManager()"); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 107 | void MetricsManager::initLogSourceWhiteList() { |
| 108 | std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex); |
| 109 | mAllowedLogSources.clear(); |
| 110 | mAllowedLogSources.insert(mAllowedUid.begin(), mAllowedUid.end()); |
| 111 | |
| 112 | for (const auto& pkg : mAllowedPkg) { |
| 113 | auto uids = mUidMap->getAppUid(pkg); |
| 114 | mAllowedLogSources.insert(uids.begin(), uids.end()); |
| 115 | } |
| 116 | if (DEBUG) { |
| 117 | for (const auto& uid : mAllowedLogSources) { |
| 118 | VLOG("Allowed uid %d", uid); |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 123 | bool MetricsManager::isConfigValid() const { |
| 124 | return mConfigValid; |
| 125 | } |
| 126 | |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 127 | void MetricsManager::notifyAppUpgrade(const uint64_t& eventTimeNs, const string& apk, const int uid, |
| 128 | const int64_t version) { |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 129 | // check if we care this package |
| 130 | if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) { |
| 131 | return; |
| 132 | } |
| 133 | // We will re-initialize the whole list because we don't want to keep the multi mapping of |
| 134 | // UID<->pkg inside MetricsManager to reduce the memory usage. |
| 135 | initLogSourceWhiteList(); |
| 136 | } |
| 137 | |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 138 | void MetricsManager::notifyAppRemoved(const uint64_t& eventTimeNs, const string& apk, |
| 139 | const int uid) { |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 140 | // check if we care this package |
| 141 | if (std::find(mAllowedPkg.begin(), mAllowedPkg.end(), apk) == mAllowedPkg.end()) { |
| 142 | return; |
| 143 | } |
| 144 | // We will re-initialize the whole list because we don't want to keep the multi mapping of |
| 145 | // UID<->pkg inside MetricsManager to reduce the memory usage. |
| 146 | initLogSourceWhiteList(); |
| 147 | } |
| 148 | |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 149 | void MetricsManager::onUidMapReceived(const uint64_t& eventTimeNs) { |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 150 | if (mAllowedPkg.size() == 0) { |
| 151 | return; |
| 152 | } |
| 153 | initLogSourceWhiteList(); |
| 154 | } |
| 155 | |
Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 156 | void MetricsManager::dumpStates(FILE* out, bool verbose) { |
| 157 | fprintf(out, "ConfigKey %s, allowed source:", mConfigKey.ToString().c_str()); |
| 158 | { |
| 159 | std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex); |
| 160 | for (const auto& source : mAllowedLogSources) { |
| 161 | fprintf(out, "%d ", source); |
| 162 | } |
| 163 | } |
| 164 | fprintf(out, "\n"); |
| 165 | for (const auto& producer : mAllMetricProducers) { |
| 166 | producer->dumpStates(out, verbose); |
| 167 | } |
| 168 | } |
| 169 | |
Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 170 | void MetricsManager::onDumpReport(const uint64_t dumpTimeStampNs, ProtoOutputStream* protoOutput) { |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 171 | VLOG("=========================Metric Reports Start=========================="); |
| 172 | // one StatsLogReport per MetricProduer |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 173 | for (const auto& producer : mAllMetricProducers) { |
| 174 | if (mNoReportMetricIds.find(producer->getMetricId()) == mNoReportMetricIds.end()) { |
| 175 | long long token = |
| 176 | protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_METRICS); |
| 177 | producer->onDumpReport(dumpTimeStampNs, protoOutput); |
| 178 | protoOutput->end(token); |
| 179 | } |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 180 | } |
Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 181 | mLastReportTimeNs = dumpTimeStampNs; |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 182 | VLOG("=========================Metric Reports End=========================="); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 185 | // Consume the stats log if it's interesting to this metric. |
Joe Onorato | c4dfae5 | 2017-10-17 23:38:21 -0700 | [diff] [blame] | 186 | void MetricsManager::onLogEvent(const LogEvent& event) { |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 187 | if (!mConfigValid) { |
| 188 | return; |
| 189 | } |
| 190 | |
David Chen | 0b5c90c | 2018-01-25 16:51:49 -0800 | [diff] [blame] | 191 | if (event.GetTagId() == android::util::APP_BREADCRUMB_REPORTED) { // Check that app hook fields are valid. |
David Chen | daa9f3a | 2017-12-28 16:52:22 -0800 | [diff] [blame] | 192 | // TODO: Find a way to make these checks easier to maintain if the app hooks get changed. |
David Chen | daa9f3a | 2017-12-28 16:52:22 -0800 | [diff] [blame] | 193 | status_t err = NO_ERROR; |
Bookatz | b223c4e | 2018-02-01 15:35:04 -0800 | [diff] [blame] | 194 | |
| 195 | // Uid is 3rd from last field and must match the caller's uid, |
| 196 | // unless that caller is statsd itself (statsd is allowed to spoof uids). |
| 197 | long appHookUid = event.GetLong(event.size()-2, &err); |
| 198 | int32_t loggerUid = event.GetUid(); |
Bookatz | 6f19790 | 2018-02-05 12:30:14 -0800 | [diff] [blame] | 199 | if (err != NO_ERROR || (loggerUid != appHookUid && loggerUid != AID_STATSD)) { |
Bookatz | b223c4e | 2018-02-01 15:35:04 -0800 | [diff] [blame] | 200 | VLOG("AppHook has invalid uid: claimed %ld but caller is %d", appHookUid, loggerUid); |
David Chen | daa9f3a | 2017-12-28 16:52:22 -0800 | [diff] [blame] | 201 | return; |
| 202 | } |
Bookatz | b223c4e | 2018-02-01 15:35:04 -0800 | [diff] [blame] | 203 | |
| 204 | // Label is 2nd from last field and must be from [0, 15]. |
| 205 | long appHookLabel = event.GetLong(event.size()-1, &err); |
| 206 | if (err != NO_ERROR || appHookLabel < 0 || appHookLabel > 15) { |
| 207 | VLOG("AppHook does not have valid label %ld", appHookLabel); |
| 208 | return; |
| 209 | } |
| 210 | |
David Chen | daa9f3a | 2017-12-28 16:52:22 -0800 | [diff] [blame] | 211 | // The state must be from 0,3. This part of code must be manually updated. |
Bookatz | b223c4e | 2018-02-01 15:35:04 -0800 | [diff] [blame] | 212 | long appHookState = event.GetLong(event.size(), &err); |
| 213 | if (err != NO_ERROR || appHookState < 0 || appHookState > 3) { |
| 214 | VLOG("AppHook does not have valid state %ld", appHookState); |
David Chen | daa9f3a | 2017-12-28 16:52:22 -0800 | [diff] [blame] | 215 | return; |
| 216 | } |
Tej Singh | bb8554a | 2018-01-26 11:59:14 -0800 | [diff] [blame] | 217 | } else if (event.GetTagId() == android::util::DAVEY_OCCURRED) { |
| 218 | // Daveys can be logged from any app since they are logged in libs/hwui/JankTracker.cpp. |
| 219 | // Check that the davey duration is reasonable. Max length check is for privacy. |
| 220 | status_t err = NO_ERROR; |
| 221 | long duration = event.GetLong(event.size(), &err); |
| 222 | if (err != NO_ERROR || duration > 100000) { |
| 223 | VLOG("Davey duration is unreasonably long: %ld", duration); |
| 224 | return; |
| 225 | } |
| 226 | } else { |
| 227 | std::lock_guard<std::mutex> lock(mAllowedLogSourcesMutex); |
| 228 | if (mAllowedLogSources.find(event.GetUid()) == mAllowedLogSources.end()) { |
| 229 | VLOG("log source %d not on the whitelist", event.GetUid()); |
| 230 | return; |
| 231 | } |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 232 | } |
| 233 | |
Joe Onorato | c4dfae5 | 2017-10-17 23:38:21 -0700 | [diff] [blame] | 234 | int tagId = event.GetTagId(); |
Yangster-mac | 330af58 | 2018-02-08 15:24:38 -0800 | [diff] [blame] | 235 | uint64_t eventTime = event.GetElapsedTimestampNs(); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 236 | if (mTagIds.find(tagId) == mTagIds.end()) { |
| 237 | // not interesting... |
| 238 | return; |
| 239 | } |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 240 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 241 | vector<MatchingState> matcherCache(mAllAtomMatchers.size(), MatchingState::kNotComputed); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 242 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 243 | for (auto& matcher : mAllAtomMatchers) { |
| 244 | matcher->onLogEvent(event, mAllAtomMatchers, matcherCache); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 247 | // A bitmap to see which ConditionTracker needs to be re-evaluated. |
| 248 | vector<bool> conditionToBeEvaluated(mAllConditionTrackers.size(), false); |
| 249 | |
| 250 | for (const auto& pair : mTrackerToConditionMap) { |
| 251 | if (matcherCache[pair.first] == MatchingState::kMatched) { |
| 252 | const auto& conditionList = pair.second; |
| 253 | for (const int conditionIndex : conditionList) { |
| 254 | conditionToBeEvaluated[conditionIndex] = true; |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | vector<ConditionState> conditionCache(mAllConditionTrackers.size(), |
| 260 | ConditionState::kNotEvaluated); |
| 261 | // A bitmap to track if a condition has changed value. |
| 262 | vector<bool> changedCache(mAllConditionTrackers.size(), false); |
| 263 | for (size_t i = 0; i < mAllConditionTrackers.size(); i++) { |
| 264 | if (conditionToBeEvaluated[i] == false) { |
| 265 | continue; |
| 266 | } |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 267 | sp<ConditionTracker>& condition = mAllConditionTrackers[i]; |
| 268 | condition->evaluateCondition(event, matcherCache, mAllConditionTrackers, conditionCache, |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 269 | changedCache); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | for (size_t i = 0; i < mAllConditionTrackers.size(); i++) { |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 273 | if (changedCache[i] == false) { |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 274 | continue; |
| 275 | } |
| 276 | auto pair = mConditionToMetricMap.find(i); |
| 277 | if (pair != mConditionToMetricMap.end()) { |
| 278 | auto& metricList = pair->second; |
| 279 | for (auto metricIndex : metricList) { |
| 280 | // metric cares about non sliced condition, and it's changed. |
| 281 | // Push the new condition to it directly. |
Yao Chen | 967b205 | 2017-11-07 16:36:43 -0800 | [diff] [blame] | 282 | if (!mAllMetricProducers[metricIndex]->isConditionSliced()) { |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 283 | mAllMetricProducers[metricIndex]->onConditionChanged(conditionCache[i], |
| 284 | eventTime); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 285 | // metric cares about sliced conditions, and it may have changed. Send |
| 286 | // notification, and the metric can query the sliced conditions that are |
| 287 | // interesting to it. |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 288 | } else { |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 289 | mAllMetricProducers[metricIndex]->onSlicedConditionMayChange(eventTime); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 290 | } |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | } |
| 294 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 295 | // For matched AtomMatchers, tell relevant metrics that a matched event has come. |
| 296 | for (size_t i = 0; i < mAllAtomMatchers.size(); i++) { |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 297 | if (matcherCache[i] == MatchingState::kMatched) { |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 298 | StatsdStats::getInstance().noteMatcherMatched(mConfigKey, |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 299 | mAllAtomMatchers[i]->getId()); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 300 | auto pair = mTrackerToMetricMap.find(i); |
| 301 | if (pair != mTrackerToMetricMap.end()) { |
| 302 | auto& metricList = pair->second; |
| 303 | for (const int metricIndex : metricList) { |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 304 | // pushed metrics are never scheduled pulls |
Chenjie Yu | a7259ab | 2017-12-10 08:31:05 -0800 | [diff] [blame] | 305 | mAllMetricProducers[metricIndex]->onMatchedLogEvent(i, event); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 306 | } |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 307 | } |
| 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 312 | void MetricsManager::onAnomalyAlarmFired(const uint64_t timestampNs, |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 313 | unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>>& anomalySet) { |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 314 | for (const auto& itr : mAllAnomalyTrackers) { |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 315 | itr->informAlarmsFired(timestampNs, anomalySet); |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 316 | } |
| 317 | } |
| 318 | |
| 319 | void MetricsManager::setAnomalyMonitor(const sp<AnomalyMonitor>& anomalyMonitor) { |
| 320 | for (auto& itr : mAllAnomalyTrackers) { |
| 321 | itr->setAnomalyMonitor(anomalyMonitor); |
| 322 | } |
| 323 | } |
| 324 | |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 325 | // Returns the total byte size of all metrics managed by a single config source. |
| 326 | size_t MetricsManager::byteSize() { |
| 327 | size_t totalSize = 0; |
| 328 | for (auto metricProducer : mAllMetricProducers) { |
| 329 | totalSize += metricProducer->byteSize(); |
| 330 | } |
| 331 | return totalSize; |
| 332 | } |
| 333 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 334 | } // namespace statsd |
| 335 | } // namespace os |
| 336 | } // namespace android |