blob: 29a892dff93532ceb004d1f56a905ebed715cfba [file] [log] [blame]
Yao Chen729093d2017-10-16 10:33:26 -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 */
16
Yao Chen3c0b95c2017-12-16 14:34:20 -080017#define DEBUG false
Yao Chen5154a372017-10-30 22:57:06 -070018
Yao Chen729093d2017-10-16 10:33:26 -070019#include "Log.h"
Yao Chen5154a372017-10-30 22:57:06 -070020#include "DurationMetricProducer.h"
Yao Chenb3561512017-11-21 18:07:17 -080021#include "guardrail/StatsdStats.h"
Yao Chen729093d2017-10-16 10:33:26 -070022#include "stats_util.h"
Yangster-mac20877162017-12-22 17:19:39 -080023#include "stats_log_util.h"
Yao Chen729093d2017-10-16 10:33:26 -070024
Yao Chen729093d2017-10-16 10:33:26 -070025#include <limits.h>
26#include <stdlib.h>
27
yrob0378b02017-11-09 20:36:25 -080028using android::util::FIELD_COUNT_REPEATED;
yro2b0f8862017-11-06 14:27:31 -080029using android::util::FIELD_TYPE_BOOL;
30using android::util::FIELD_TYPE_FLOAT;
31using android::util::FIELD_TYPE_INT32;
32using android::util::FIELD_TYPE_INT64;
33using android::util::FIELD_TYPE_MESSAGE;
Yangster-macd1815dc2017-11-13 21:43:15 -080034using android::util::FIELD_TYPE_STRING;
yro2b0f8862017-11-06 14:27:31 -080035using android::util::ProtoOutputStream;
Yao Chen729093d2017-10-16 10:33:26 -070036using std::string;
37using std::unordered_map;
38using std::vector;
39
40namespace android {
41namespace os {
42namespace statsd {
43
yro2b0f8862017-11-06 14:27:31 -080044// for StatsLogReport
Yangster-mac94e197c2018-01-02 16:03:03 -080045const int FIELD_ID_ID = 1;
yro2b0f8862017-11-06 14:27:31 -080046const int FIELD_ID_DURATION_METRICS = 6;
47// for DurationMetricDataWrapper
48const int FIELD_ID_DATA = 1;
49// for DurationMetricData
Yangster-mac468ff042018-01-17 12:26:34 -080050const int FIELD_ID_DIMENSION_IN_WHAT = 1;
51const int FIELD_ID_DIMENSION_IN_CONDITION = 2;
52const int FIELD_ID_BUCKET_INFO = 3;
yro2b0f8862017-11-06 14:27:31 -080053// for DurationBucketInfo
Yangster-mac330af582018-02-08 15:24:38 -080054const int FIELD_ID_START_BUCKET_ELAPSED_NANOS = 1;
55const int FIELD_ID_END_BUCKET_ELAPSED_NANOS = 2;
yro2b0f8862017-11-06 14:27:31 -080056const int FIELD_ID_DURATION = 3;
57
Yao Chenb3561512017-11-21 18:07:17 -080058DurationMetricProducer::DurationMetricProducer(const ConfigKey& key, const DurationMetric& metric,
Yao Chen729093d2017-10-16 10:33:26 -070059 const int conditionIndex, const size_t startIndex,
60 const size_t stopIndex, const size_t stopAllIndex,
Yao Chen0ea19902017-11-15 15:44:45 -080061 const bool nesting,
Yao Chen5154a372017-10-30 22:57:06 -070062 const sp<ConditionWizard>& wizard,
Yangster-mac20877162017-12-22 17:19:39 -080063 const FieldMatcher& internalDimensions,
Yao Chen93fe3a32017-11-02 13:52:59 -070064 const uint64_t startTimeNs)
Yangster-mac94e197c2018-01-02 16:03:03 -080065 : MetricProducer(metric.id(), key, startTimeNs, conditionIndex, wizard),
Yao Chenf09569f2017-12-13 17:00:51 -080066 mAggregationType(metric.aggregation_type()),
Yao Chen729093d2017-10-16 10:33:26 -070067 mStartIndex(startIndex),
68 mStopIndex(stopIndex),
Yao Chen5154a372017-10-30 22:57:06 -070069 mStopAllIndex(stopAllIndex),
Yao Chen8a8d16c2018-02-08 14:50:40 -080070 mNested(nesting) {
Yao Chen729093d2017-10-16 10:33:26 -070071 // TODO: The following boiler plate code appears in all MetricProducers, but we can't abstract
72 // them in the base class, because the proto generated CountMetric, and DurationMetric are
73 // not related. Maybe we should add a template in the future??
Yangster-macb8144812018-01-04 10:56:23 -080074 if (metric.has_bucket()) {
yro59cc24d2018-02-13 20:17:32 -080075 mBucketSizeNs =
76 TimeUnitToBucketSizeInMillisGuardrailed(key.GetUid(), metric.bucket()) * 1000000;
Yao Chen729093d2017-10-16 10:33:26 -070077 } else {
78 mBucketSizeNs = LLONG_MAX;
79 }
80
Yao Chen8a8d16c2018-02-08 14:50:40 -080081 if (metric.has_dimensions_in_what()) {
82 translateFieldMatcher(metric.dimensions_in_what(), &mDimensionsInWhat);
83 }
84
85 if (internalDimensions.has_field()) {
86 translateFieldMatcher(internalDimensions, &mInternalDimensions);
87 }
88
89 if (metric.has_dimensions_in_condition()) {
90 translateFieldMatcher(metric.dimensions_in_condition(), &mDimensionsInCondition);
91 }
Yao Chen729093d2017-10-16 10:33:26 -070092
93 if (metric.links().size() > 0) {
Yao Chen8a8d16c2018-02-08 14:50:40 -080094 for (const auto& link : metric.links()) {
95 Metric2Condition mc;
96 mc.conditionId = link.condition();
97 translateFieldMatcher(link.fields_in_what(), &mc.metricFields);
98 translateFieldMatcher(link.fields_in_condition(), &mc.conditionFields);
99 mMetric2ConditionLinks.push_back(mc);
100 }
Yao Chen729093d2017-10-16 10:33:26 -0700101 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800102 mConditionSliced = (metric.links().size() > 0) || (mDimensionsInCondition.size() > 0);
Yao Chen729093d2017-10-16 10:33:26 -0700103
Yangster-mac53928882018-02-25 23:02:56 -0800104 if (mDimensionsInWhat.size() == mInternalDimensions.size()) {
105 bool mUseWhatDimensionAsInternalDimension = true;
106 for (size_t i = 0; mUseWhatDimensionAsInternalDimension &&
107 i < mDimensionsInWhat.size(); ++i) {
108 if (mDimensionsInWhat[i] != mInternalDimensions[i]) {
109 mUseWhatDimensionAsInternalDimension = false;
110 }
111 }
112 } else {
113 mUseWhatDimensionAsInternalDimension = false;
114 }
115
Yangster-mac94e197c2018-01-02 16:03:03 -0800116 VLOG("metric %lld created. bucket size %lld start_time: %lld", (long long)metric.id(),
Yao Chen729093d2017-10-16 10:33:26 -0700117 (long long)mBucketSizeNs, (long long)mStartTimeNs);
118}
119
120DurationMetricProducer::~DurationMetricProducer() {
121 VLOG("~DurationMetric() called");
122}
123
Yangster-mac932ecec2018-02-01 10:23:52 -0800124sp<AnomalyTracker> DurationMetricProducer::addAnomalyTracker(
125 const Alert &alert, const sp<AlarmMonitor>& anomalyAlarmMonitor) {
Bookatz857aaa52017-12-19 15:29:06 -0800126 std::lock_guard<std::mutex> lock(mMutex);
Yangster-mac932ecec2018-02-01 10:23:52 -0800127 sp<DurationAnomalyTracker> anomalyTracker =
128 new DurationAnomalyTracker(alert, mConfigKey, anomalyAlarmMonitor);
Bookatz857aaa52017-12-19 15:29:06 -0800129 if (anomalyTracker != nullptr) {
130 mAnomalyTrackers.push_back(anomalyTracker);
131 }
132 return anomalyTracker;
Bookatz450099d2017-11-30 17:09:30 -0800133}
134
Yao Chen5154a372017-10-30 22:57:06 -0700135unique_ptr<DurationTracker> DurationMetricProducer::createDurationTracker(
Yangster-mac93694462018-01-22 20:49:31 -0800136 const MetricDimensionKey& eventKey) const {
Yao Chenf09569f2017-12-13 17:00:51 -0800137 switch (mAggregationType) {
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800138 case DurationMetric_AggregationType_SUM:
Yao Chenb3561512017-11-21 18:07:17 -0800139 return make_unique<OringDurationTracker>(
Yangster-mac93694462018-01-22 20:49:31 -0800140 mConfigKey, mMetricId, eventKey, mWizard, mConditionTrackerIndex,
David Chen27785a82018-01-19 17:06:45 -0800141 mDimensionsInCondition, mNested, mCurrentBucketStartTimeNs, mCurrentBucketNum,
142 mStartTimeNs, mBucketSizeNs, mConditionSliced, mAnomalyTrackers);
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800143 case DurationMetric_AggregationType_MAX_SPARSE:
Yao Chenb3561512017-11-21 18:07:17 -0800144 return make_unique<MaxDurationTracker>(
Yangster-mac93694462018-01-22 20:49:31 -0800145 mConfigKey, mMetricId, eventKey, mWizard, mConditionTrackerIndex,
David Chen27785a82018-01-19 17:06:45 -0800146 mDimensionsInCondition, mNested, mCurrentBucketStartTimeNs, mCurrentBucketNum,
147 mStartTimeNs, mBucketSizeNs, mConditionSliced, mAnomalyTrackers);
Yao Chen5154a372017-10-30 22:57:06 -0700148 }
149}
150
Yangsterf2bee6f2017-11-29 12:01:05 -0800151void DurationMetricProducer::onSlicedConditionMayChangeLocked(const uint64_t eventTime) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800152 VLOG("Metric %lld onSlicedConditionMayChange", (long long)mMetricId);
Yangsterf2bee6f2017-11-29 12:01:05 -0800153 flushIfNeededLocked(eventTime);
Yangster-mac93694462018-01-22 20:49:31 -0800154
Yao Chen729093d2017-10-16 10:33:26 -0700155 // Now for each of the on-going event, check if the condition has changed for them.
Yangster-mac53928882018-02-25 23:02:56 -0800156 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
157 for (auto& pair : whatIt.second) {
158 pair.second->onSlicedConditionMayChange(eventTime);
159 }
Yao Chen729093d2017-10-16 10:33:26 -0700160 }
Yangster-mac93694462018-01-22 20:49:31 -0800161
Yangster-mac53928882018-02-25 23:02:56 -0800162 if (mDimensionsInCondition.empty()) {
163 return;
Yangster-mac93694462018-01-22 20:49:31 -0800164 }
Yangster-mac53928882018-02-25 23:02:56 -0800165
166 if (mMetric2ConditionLinks.empty()) {
167 std::unordered_set<HashableDimensionKey> conditionDimensionsKeySet;
168 mWizard->getMetConditionDimension(mConditionTrackerIndex, mDimensionsInCondition,
169 &conditionDimensionsKeySet);
170 for (const auto& whatIt : mCurrentSlicedDurationTrackerMap) {
171 for (const auto& pair : whatIt.second) {
172 conditionDimensionsKeySet.erase(pair.first);
Yangster-mac93694462018-01-22 20:49:31 -0800173 }
Yangster-mac53928882018-02-25 23:02:56 -0800174 }
175 for (const auto& conditionDimension : conditionDimensionsKeySet) {
176 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
177 if (!whatIt.second.empty()) {
178 unique_ptr<DurationTracker> newTracker =
179 whatIt.second.begin()->second->clone(eventTime);
180 newTracker->setEventKey(MetricDimensionKey(whatIt.first, conditionDimension));
181 newTracker->onSlicedConditionMayChange(eventTime);
182 whatIt.second[conditionDimension] = std::move(newTracker);
183 }
184 }
185 }
186 } else {
187 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
188 ConditionKey conditionKey;
189 for (const auto& link : mMetric2ConditionLinks) {
190 getDimensionForCondition(whatIt.first.getValues(), link,
191 &conditionKey[link.conditionId]);
192 }
193 std::unordered_set<HashableDimensionKey> conditionDimensionsKeys;
194 mWizard->query(mConditionTrackerIndex, conditionKey, mDimensionsInCondition,
195 &conditionDimensionsKeys);
196
197 for (const auto& conditionDimension : conditionDimensionsKeys) {
198 if (!whatIt.second.empty() &&
199 whatIt.second.find(conditionDimension) == whatIt.second.end()) {
200 auto newTracker = whatIt.second.begin()->second->clone(eventTime);
201 newTracker->setEventKey(MetricDimensionKey(whatIt.first, conditionDimension));
202 newTracker->onSlicedConditionMayChange(eventTime);
203 whatIt.second[conditionDimension] = std::move(newTracker);
204 }
205 }
Yangster-mac93694462018-01-22 20:49:31 -0800206 }
207 }
Yao Chen729093d2017-10-16 10:33:26 -0700208}
209
Yangsterf2bee6f2017-11-29 12:01:05 -0800210void DurationMetricProducer::onConditionChangedLocked(const bool conditionMet,
211 const uint64_t eventTime) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800212 VLOG("Metric %lld onConditionChanged", (long long)mMetricId);
Yao Chen729093d2017-10-16 10:33:26 -0700213 mCondition = conditionMet;
Yangsterf2bee6f2017-11-29 12:01:05 -0800214 flushIfNeededLocked(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700215 // TODO: need to populate the condition change time from the event which triggers the condition
216 // change, instead of using current time.
Yangster-mac53928882018-02-25 23:02:56 -0800217 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
218 for (auto& pair : whatIt.second) {
219 pair.second->onConditionChanged(conditionMet, eventTime);
220 }
Yao Chen729093d2017-10-16 10:33:26 -0700221 }
222}
223
Yao Chen06dba5d2018-01-26 13:38:16 -0800224void DurationMetricProducer::dropDataLocked(const uint64_t dropTimeNs) {
225 flushIfNeededLocked(dropTimeNs);
226 mPastBuckets.clear();
227}
228
Yao Chen288c6002017-12-12 13:43:18 -0800229void DurationMetricProducer::onDumpReportLocked(const uint64_t dumpTimeNs,
230 ProtoOutputStream* protoOutput) {
231 flushIfNeededLocked(dumpTimeNs);
Yangster-mac635b4b32018-01-23 20:17:35 -0800232 if (mPastBuckets.empty()) {
Yao Chen8a8d16c2018-02-08 14:50:40 -0800233 VLOG(" Duration metric, empty return");
Yangster-mac635b4b32018-01-23 20:17:35 -0800234 return;
235 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000236
Yangster-mac94e197c2018-01-02 16:03:03 -0800237 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)mMetricId);
Yi Jin5ee07872018-03-05 18:18:27 -0800238 uint64_t protoToken = protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_ID_DURATION_METRICS);
Yao Chen288c6002017-12-12 13:43:18 -0800239
Yao Chen8a8d16c2018-02-08 14:50:40 -0800240 VLOG("Duration metric %lld dump report now...", (long long)mMetricId);
Yao Chen6a8c7992017-11-29 20:02:07 +0000241
Yao Chen729093d2017-10-16 10:33:26 -0700242 for (const auto& pair : mPastBuckets) {
Yangster-mac93694462018-01-22 20:49:31 -0800243 const MetricDimensionKey& dimensionKey = pair.first;
244 VLOG(" dimension key %s", dimensionKey.c_str());
Yao Chen1ff4f432017-11-16 17:01:40 -0800245
Yi Jin5ee07872018-03-05 18:18:27 -0800246 uint64_t wrapperToken =
Yao Chen288c6002017-12-12 13:43:18 -0800247 protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800248
Yangster-mac20877162017-12-22 17:19:39 -0800249 // First fill dimension.
Yi Jin5ee07872018-03-05 18:18:27 -0800250 uint64_t dimensionToken = protoOutput->start(
Yangster-mac468ff042018-01-17 12:26:34 -0800251 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_WHAT);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800252 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -0800253 protoOutput->end(dimensionToken);
yro2b0f8862017-11-06 14:27:31 -0800254
Yangster-mac93694462018-01-22 20:49:31 -0800255 if (dimensionKey.hasDimensionKeyInCondition()) {
Yi Jin5ee07872018-03-05 18:18:27 -0800256 uint64_t dimensionInConditionToken = protoOutput->start(
Yangster-mac93694462018-01-22 20:49:31 -0800257 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_CONDITION);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800258 writeDimensionToProto(dimensionKey.getDimensionKeyInCondition(), protoOutput);
Yangster-mac93694462018-01-22 20:49:31 -0800259 protoOutput->end(dimensionInConditionToken);
260 }
261
yro2b0f8862017-11-06 14:27:31 -0800262 // Then fill bucket_info (DurationBucketInfo).
263 for (const auto& bucket : pair.second) {
Yi Jin5ee07872018-03-05 18:18:27 -0800264 uint64_t bucketInfoToken = protoOutput->start(
Yao Chen288c6002017-12-12 13:43:18 -0800265 FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
Yangster-mac330af582018-02-08 15:24:38 -0800266 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_ELAPSED_NANOS,
Yao Chen288c6002017-12-12 13:43:18 -0800267 (long long)bucket.mBucketStartNs);
Yangster-mac330af582018-02-08 15:24:38 -0800268 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_ELAPSED_NANOS,
Yao Chen288c6002017-12-12 13:43:18 -0800269 (long long)bucket.mBucketEndNs);
270 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
271 protoOutput->end(bucketInfoToken);
yro2b0f8862017-11-06 14:27:31 -0800272 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
273 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
274 }
275
Yao Chen288c6002017-12-12 13:43:18 -0800276 protoOutput->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700277 }
yro2b0f8862017-11-06 14:27:31 -0800278
Yao Chen288c6002017-12-12 13:43:18 -0800279 protoOutput->end(protoToken);
Yao Chenf60e0ba2017-11-29 15:06:41 -0800280 mPastBuckets.clear();
yro2b0f8862017-11-06 14:27:31 -0800281}
Yao Chen729093d2017-10-16 10:33:26 -0700282
David Chen27785a82018-01-19 17:06:45 -0800283void DurationMetricProducer::flushIfNeededLocked(const uint64_t& eventTimeNs) {
284 uint64_t currentBucketEndTimeNs = getCurrentBucketEndTimeNs();
285
286 if (currentBucketEndTimeNs > eventTimeNs) {
Yao Chen729093d2017-10-16 10:33:26 -0700287 return;
288 }
Yao Chen5154a372017-10-30 22:57:06 -0700289 VLOG("flushing...........");
Yangster-mac53928882018-02-25 23:02:56 -0800290 for (auto whatIt = mCurrentSlicedDurationTrackerMap.begin();
291 whatIt != mCurrentSlicedDurationTrackerMap.end();) {
292 for (auto it = whatIt->second.begin(); it != whatIt->second.end();) {
293 if (it->second->flushIfNeeded(eventTimeNs, &mPastBuckets)) {
294 VLOG("erase bucket for key %s %s", whatIt->first.c_str(), it->first.c_str());
295 it = whatIt->second.erase(it);
296 } else {
297 ++it;
298 }
299 }
300 if (whatIt->second.empty()) {
301 whatIt = mCurrentSlicedDurationTrackerMap.erase(whatIt);
Yao Chend41c4222017-11-15 19:26:14 -0800302 } else {
Yangster-mac53928882018-02-25 23:02:56 -0800303 whatIt++;
Yao Chen729093d2017-10-16 10:33:26 -0700304 }
305 }
Yao Chen5154a372017-10-30 22:57:06 -0700306
David Chen27785a82018-01-19 17:06:45 -0800307 int numBucketsForward = 1 + (eventTimeNs - currentBucketEndTimeNs) / mBucketSizeNs;
308 mCurrentBucketStartTimeNs = currentBucketEndTimeNs + (numBucketsForward - 1) * mBucketSizeNs;
Yangster-mace2cd6d52017-11-09 20:38:30 -0800309 mCurrentBucketNum += numBucketsForward;
Yao Chen5154a372017-10-30 22:57:06 -0700310}
311
David Chen27785a82018-01-19 17:06:45 -0800312void DurationMetricProducer::flushCurrentBucketLocked(const uint64_t& eventTimeNs) {
Yangster-mac53928882018-02-25 23:02:56 -0800313 for (auto whatIt = mCurrentSlicedDurationTrackerMap.begin();
314 whatIt != mCurrentSlicedDurationTrackerMap.end();) {
315 for (auto it = whatIt->second.begin(); it != whatIt->second.end();) {
316 if (it->second->flushCurrentBucket(eventTimeNs, &mPastBuckets)) {
317 VLOG("erase bucket for key %s %s", whatIt->first.c_str(), it->first.c_str());
318 it = whatIt->second.erase(it);
319 } else {
320 ++it;
321 }
322 }
323 if (whatIt->second.empty()) {
324 whatIt = mCurrentSlicedDurationTrackerMap.erase(whatIt);
David Chen27785a82018-01-19 17:06:45 -0800325 } else {
Yangster-mac53928882018-02-25 23:02:56 -0800326 whatIt++;
David Chen27785a82018-01-19 17:06:45 -0800327 }
328 }
329}
330
Yao Chen884c8c12018-01-26 10:36:25 -0800331void DurationMetricProducer::dumpStatesLocked(FILE* out, bool verbose) const {
Yangster-mac93694462018-01-22 20:49:31 -0800332 if (mCurrentSlicedDurationTrackerMap.size() == 0) {
Yao Chen884c8c12018-01-26 10:36:25 -0800333 return;
334 }
335
336 fprintf(out, "DurationMetric %lld dimension size %lu\n", (long long)mMetricId,
Yangster-mac93694462018-01-22 20:49:31 -0800337 (unsigned long)mCurrentSlicedDurationTrackerMap.size());
Yao Chen884c8c12018-01-26 10:36:25 -0800338 if (verbose) {
Yangster-mac53928882018-02-25 23:02:56 -0800339 for (const auto& whatIt : mCurrentSlicedDurationTrackerMap) {
340 for (const auto& slice : whatIt.second) {
341 fprintf(out, "\t%s\t%s\n", whatIt.first.c_str(), slice.first.c_str());
342 slice.second->dumpStates(out, verbose);
343 }
Yao Chen884c8c12018-01-26 10:36:25 -0800344 }
345 }
346}
347
Yangster-mac93694462018-01-22 20:49:31 -0800348bool DurationMetricProducer::hitGuardRailLocked(const MetricDimensionKey& newKey) {
Yao Chenb3561512017-11-21 18:07:17 -0800349 // 1. Report the tuple count if the tuple count > soft limit
Yangster-mac93694462018-01-22 20:49:31 -0800350 if (mCurrentSlicedDurationTrackerMap.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) {
351 size_t newTupleCount = mCurrentSlicedDurationTrackerMap.size() + 1;
Yangster-mac94e197c2018-01-02 16:03:03 -0800352 StatsdStats::getInstance().noteMetricDimensionSize(mConfigKey, mMetricId, newTupleCount);
Yao Chenb3561512017-11-21 18:07:17 -0800353 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
354 if (newTupleCount > StatsdStats::kDimensionKeySizeHardLimit) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800355 ALOGE("DurationMetric %lld dropping data for dimension key %s",
356 (long long)mMetricId, newKey.c_str());
Yao Chenb3561512017-11-21 18:07:17 -0800357 return true;
358 }
359 }
360 return false;
361}
362
Yangster-mac53928882018-02-25 23:02:56 -0800363void DurationMetricProducer::handleStartEvent(const MetricDimensionKey& eventKey,
364 const ConditionKey& conditionKeys,
365 bool condition, const LogEvent& event) {
366 const auto& whatKey = eventKey.getDimensionKeyInWhat();
367 const auto& condKey = eventKey.getDimensionKeyInCondition();
Yao Chen5154a372017-10-30 22:57:06 -0700368
Yangster-mac53928882018-02-25 23:02:56 -0800369 auto whatIt = mCurrentSlicedDurationTrackerMap.find(whatKey);
370 if (whatIt == mCurrentSlicedDurationTrackerMap.end()) {
Yangsterf2bee6f2017-11-29 12:01:05 -0800371 if (hitGuardRailLocked(eventKey)) {
Yao Chenb3561512017-11-21 18:07:17 -0800372 return;
373 }
Yangster-mac53928882018-02-25 23:02:56 -0800374 mCurrentSlicedDurationTrackerMap[whatKey][condKey] = createDurationTracker(eventKey);
375 } else {
376 if (whatIt->second.find(condKey) == whatIt->second.end()) {
377 if (hitGuardRailLocked(eventKey)) {
378 return;
379 }
380 mCurrentSlicedDurationTrackerMap[whatKey][condKey] = createDurationTracker(eventKey);
381 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000382 }
Yao Chen5154a372017-10-30 22:57:06 -0700383
Yangster-mac53928882018-02-25 23:02:56 -0800384 auto it = mCurrentSlicedDurationTrackerMap.find(whatKey)->second.find(condKey);
385 if (mUseWhatDimensionAsInternalDimension) {
386 it->second->noteStart(whatKey, condition,
387 event.GetElapsedTimestampNs(), conditionKeys);
388 return;
389 }
Yao Chen5154a372017-10-30 22:57:06 -0700390
Yao Chen8a8d16c2018-02-08 14:50:40 -0800391 std::vector<HashableDimensionKey> values;
392 filterValues(mInternalDimensions, event.getValues(), &values);
Yangster-mac20877162017-12-22 17:19:39 -0800393 if (values.empty()) {
Yangster-mac53928882018-02-25 23:02:56 -0800394 it->second->noteStart(DEFAULT_DIMENSION_KEY, condition,
395 event.GetElapsedTimestampNs(), conditionKeys);
Yangster-mac20877162017-12-22 17:19:39 -0800396 } else {
Yao Chen8a8d16c2018-02-08 14:50:40 -0800397 for (const auto& value : values) {
Yangster-mac53928882018-02-25 23:02:56 -0800398 it->second->noteStart(value, condition, event.GetElapsedTimestampNs(), conditionKeys);
Yangster-mac20877162017-12-22 17:19:39 -0800399 }
Yao Chen5154a372017-10-30 22:57:06 -0700400 }
Yangster-mac20877162017-12-22 17:19:39 -0800401
Yao Chen729093d2017-10-16 10:33:26 -0700402}
403
Yangster-mac53928882018-02-25 23:02:56 -0800404void DurationMetricProducer::onMatchedLogEventInternalLocked(
405 const size_t matcherIndex, const MetricDimensionKey& eventKey,
406 const ConditionKey& conditionKeys, bool condition,
407 const LogEvent& event) {
408 ALOGW("Not used in duration tracker.");
409}
410
411void DurationMetricProducer::onMatchedLogEventLocked(const size_t matcherIndex,
412 const LogEvent& event) {
413 uint64_t eventTimeNs = event.GetElapsedTimestampNs();
414 if (eventTimeNs < mStartTimeNs) {
415 return;
416 }
417
418 flushIfNeededLocked(event.GetElapsedTimestampNs());
419
420 // Handles Stopall events.
421 if (matcherIndex == mStopAllIndex) {
422 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
423 for (auto& pair : whatIt.second) {
424 pair.second->noteStopAll(event.GetElapsedTimestampNs());
425 }
426 }
427 return;
428 }
429
430 vector<HashableDimensionKey> dimensionInWhatValues;
431 if (!mDimensionsInWhat.empty()) {
432 filterValues(mDimensionsInWhat, event.getValues(), &dimensionInWhatValues);
433 } else {
434 dimensionInWhatValues.push_back(DEFAULT_DIMENSION_KEY);
435 }
436
437 // Handles Stop events.
438 if (matcherIndex == mStopIndex) {
439 if (mUseWhatDimensionAsInternalDimension) {
440 for (const HashableDimensionKey& whatKey : dimensionInWhatValues) {
441 auto whatIt = mCurrentSlicedDurationTrackerMap.find(whatKey);
442 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
443 for (const auto& condIt : whatIt->second) {
444 condIt.second->noteStop(whatKey, event.GetElapsedTimestampNs(), false);
445 }
446 }
447 }
448 return;
449 }
450
451 std::vector<HashableDimensionKey> internalDimensionKeys;
452 filterValues(mInternalDimensions, event.getValues(), &internalDimensionKeys);
453 if (internalDimensionKeys.empty()) {
454 internalDimensionKeys.push_back(DEFAULT_DIMENSION_KEY);
455 }
456 for (const HashableDimensionKey& whatDimension : dimensionInWhatValues) {
457 auto whatIt = mCurrentSlicedDurationTrackerMap.find(whatDimension);
458 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
459 for (const auto& condIt : whatIt->second) {
460 for (const auto& internalDimensionKey : internalDimensionKeys) {
461 condIt.second->noteStop(
462 internalDimensionKey, event.GetElapsedTimestampNs(), false);
463 }
464 }
465 }
466 }
467 return;
468 }
469
470 bool condition;
471 ConditionKey conditionKey;
472 std::unordered_set<HashableDimensionKey> dimensionKeysInCondition;
473 if (mConditionSliced) {
474 for (const auto& link : mMetric2ConditionLinks) {
475 getDimensionForCondition(event.getValues(), link, &conditionKey[link.conditionId]);
476 }
477
478 auto conditionState =
479 mWizard->query(mConditionTrackerIndex, conditionKey, mDimensionsInCondition,
480 &dimensionKeysInCondition);
481 condition = (conditionState == ConditionState::kTrue);
482 if (mDimensionsInCondition.empty() && condition) {
483 dimensionKeysInCondition.insert(DEFAULT_DIMENSION_KEY);
484 }
485 } else {
486 condition = mCondition;
487 if (condition) {
488 dimensionKeysInCondition.insert(DEFAULT_DIMENSION_KEY);
489 }
490 }
491
492 for (const auto& whatDimension : dimensionInWhatValues) {
493 auto whatIt = mCurrentSlicedDurationTrackerMap.find(whatDimension);
494 // If the what dimension is already there, we should update all the trackers even
495 // the condition is false.
496 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
497 for (const auto& condIt : whatIt->second) {
498 const bool cond = dimensionKeysInCondition.find(condIt.first) !=
499 dimensionKeysInCondition.end();
500 handleStartEvent(MetricDimensionKey(whatDimension, condIt.first),
501 conditionKey, cond, event);
502 }
503 } else {
504 // If it is a new what dimension key, we need to handle the start events for all current
505 // condition dimensions.
506 for (const auto& conditionDimension : dimensionKeysInCondition) {
507 handleStartEvent(MetricDimensionKey(whatDimension, conditionDimension),
508 conditionKey, condition, event);
509 }
510 }
511 if (dimensionKeysInCondition.empty()) {
512 handleStartEvent(MetricDimensionKey(whatDimension, DEFAULT_DIMENSION_KEY),
513 conditionKey, condition, event);
514 }
515 }
516}
517
518
Yangsterf2bee6f2017-11-29 12:01:05 -0800519size_t DurationMetricProducer::byteSizeLocked() const {
Yangster7c334a12017-11-22 14:24:24 -0800520 size_t totalSize = 0;
521 for (const auto& pair : mPastBuckets) {
522 totalSize += pair.second.size() * kBucketSize;
523 }
524 return totalSize;
yro69007c82017-10-26 20:42:57 -0700525}
526
Yao Chen729093d2017-10-16 10:33:26 -0700527} // namespace statsd
528} // namespace os
529} // namespace android