blob: 66e8c6103ae86c018b8708bc0ec4d658a7a40248 [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
17#define DEBUG true
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"
23
Yao Chen729093d2017-10-16 10:33:26 -070024#include <limits.h>
25#include <stdlib.h>
26
yrob0378b02017-11-09 20:36:25 -080027using android::util::FIELD_COUNT_REPEATED;
yro2b0f8862017-11-06 14:27:31 -080028using android::util::FIELD_TYPE_BOOL;
29using android::util::FIELD_TYPE_FLOAT;
30using android::util::FIELD_TYPE_INT32;
31using android::util::FIELD_TYPE_INT64;
32using android::util::FIELD_TYPE_MESSAGE;
Yangster-macd1815dc2017-11-13 21:43:15 -080033using android::util::FIELD_TYPE_STRING;
yro2b0f8862017-11-06 14:27:31 -080034using android::util::ProtoOutputStream;
Yao Chen729093d2017-10-16 10:33:26 -070035using std::string;
36using std::unordered_map;
37using std::vector;
38
39namespace android {
40namespace os {
41namespace statsd {
42
yro2b0f8862017-11-06 14:27:31 -080043// for StatsLogReport
Yangster-macd1815dc2017-11-13 21:43:15 -080044const int FIELD_ID_NAME = 1;
yro2b0f8862017-11-06 14:27:31 -080045const int FIELD_ID_START_REPORT_NANOS = 2;
46const int FIELD_ID_END_REPORT_NANOS = 3;
47const int FIELD_ID_DURATION_METRICS = 6;
48// for DurationMetricDataWrapper
49const int FIELD_ID_DATA = 1;
50// for DurationMetricData
51const int FIELD_ID_DIMENSION = 1;
52const int FIELD_ID_BUCKET_INFO = 2;
53// for KeyValuePair
54const int FIELD_ID_KEY = 1;
55const int FIELD_ID_VALUE_STR = 2;
56const int FIELD_ID_VALUE_INT = 3;
57const int FIELD_ID_VALUE_BOOL = 4;
58const int FIELD_ID_VALUE_FLOAT = 5;
59// for DurationBucketInfo
60const int FIELD_ID_START_BUCKET_NANOS = 1;
61const int FIELD_ID_END_BUCKET_NANOS = 2;
62const int FIELD_ID_DURATION = 3;
63
Yao Chenb3561512017-11-21 18:07:17 -080064DurationMetricProducer::DurationMetricProducer(const ConfigKey& key, const DurationMetric& metric,
Yao Chen729093d2017-10-16 10:33:26 -070065 const int conditionIndex, const size_t startIndex,
66 const size_t stopIndex, const size_t stopAllIndex,
Yao Chen0ea19902017-11-15 15:44:45 -080067 const bool nesting,
Yao Chen5154a372017-10-30 22:57:06 -070068 const sp<ConditionWizard>& wizard,
Yao Chen93fe3a32017-11-02 13:52:59 -070069 const vector<KeyMatcher>& internalDimension,
70 const uint64_t startTimeNs)
Yao Chenb3561512017-11-21 18:07:17 -080071 : MetricProducer(key, startTimeNs, conditionIndex, wizard),
Yao Chen729093d2017-10-16 10:33:26 -070072 mMetric(metric),
73 mStartIndex(startIndex),
74 mStopIndex(stopIndex),
Yao Chen5154a372017-10-30 22:57:06 -070075 mStopAllIndex(stopAllIndex),
Yao Chen0ea19902017-11-15 15:44:45 -080076 mNested(nesting),
Yao Chen5154a372017-10-30 22:57:06 -070077 mInternalDimension(internalDimension) {
Yao Chen729093d2017-10-16 10:33:26 -070078 // TODO: The following boiler plate code appears in all MetricProducers, but we can't abstract
79 // them in the base class, because the proto generated CountMetric, and DurationMetric are
80 // not related. Maybe we should add a template in the future??
81 if (metric.has_bucket() && metric.bucket().has_bucket_size_millis()) {
82 mBucketSizeNs = metric.bucket().bucket_size_millis() * 1000000;
83 } else {
84 mBucketSizeNs = LLONG_MAX;
85 }
86
87 // TODO: use UidMap if uid->pkg_name is required
88 mDimension.insert(mDimension.begin(), metric.dimension().begin(), metric.dimension().end());
89
90 if (metric.links().size() > 0) {
91 mConditionLinks.insert(mConditionLinks.begin(), metric.links().begin(),
92 metric.links().end());
93 mConditionSliced = true;
94 }
95
Yangsterf2bee6f2017-11-29 12:01:05 -080096 startNewProtoOutputStreamLocked(mStartTimeNs);
yro2b0f8862017-11-06 14:27:31 -080097
Yangster-macd1815dc2017-11-13 21:43:15 -080098 VLOG("metric %s created. bucket size %lld start_time: %lld", metric.name().c_str(),
Yao Chen729093d2017-10-16 10:33:26 -070099 (long long)mBucketSizeNs, (long long)mStartTimeNs);
100}
101
102DurationMetricProducer::~DurationMetricProducer() {
103 VLOG("~DurationMetric() called");
104}
105
Yangsterf2bee6f2017-11-29 12:01:05 -0800106void DurationMetricProducer::startNewProtoOutputStreamLocked(long long startTime) {
yro2b0f8862017-11-06 14:27:31 -0800107 mProto = std::make_unique<ProtoOutputStream>();
Yangster-macd1815dc2017-11-13 21:43:15 -0800108 mProto->write(FIELD_TYPE_STRING | FIELD_ID_NAME, mMetric.name());
yro2b0f8862017-11-06 14:27:31 -0800109 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_REPORT_NANOS, startTime);
110 mProtoToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_DURATION_METRICS);
111}
112
Yao Chen5154a372017-10-30 22:57:06 -0700113unique_ptr<DurationTracker> DurationMetricProducer::createDurationTracker(
Yangsterf2bee6f2017-11-29 12:01:05 -0800114 const HashableDimensionKey& eventKey, vector<DurationBucket>& bucket) const {
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800115 switch (mMetric.aggregation_type()) {
116 case DurationMetric_AggregationType_SUM:
Yao Chenb3561512017-11-21 18:07:17 -0800117 return make_unique<OringDurationTracker>(
118 mConfigKey, mMetric.name(), eventKey, mWizard, mConditionTrackerIndex, mNested,
119 mCurrentBucketStartTimeNs, mBucketSizeNs, mAnomalyTrackers, bucket);
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800120 case DurationMetric_AggregationType_MAX_SPARSE:
Yao Chenb3561512017-11-21 18:07:17 -0800121 return make_unique<MaxDurationTracker>(
122 mConfigKey, mMetric.name(), eventKey, mWizard, mConditionTrackerIndex, mNested,
123 mCurrentBucketStartTimeNs, mBucketSizeNs, mAnomalyTrackers, bucket);
Yao Chen5154a372017-10-30 22:57:06 -0700124 }
125}
126
Yao Chen729093d2017-10-16 10:33:26 -0700127void DurationMetricProducer::finish() {
128 // TODO: write the StatsLogReport to dropbox using
129 // DropboxWriter.
130}
131
Yangsterf2bee6f2017-11-29 12:01:05 -0800132void DurationMetricProducer::onSlicedConditionMayChangeLocked(const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800133 VLOG("Metric %s onSlicedConditionMayChange", mMetric.name().c_str());
Yangsterf2bee6f2017-11-29 12:01:05 -0800134 flushIfNeededLocked(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700135 // Now for each of the on-going event, check if the condition has changed for them.
136 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700137 pair.second->onSlicedConditionMayChange(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700138 }
139}
140
Yangsterf2bee6f2017-11-29 12:01:05 -0800141void DurationMetricProducer::onConditionChangedLocked(const bool conditionMet,
142 const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800143 VLOG("Metric %s onConditionChanged", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700144 mCondition = conditionMet;
Yangsterf2bee6f2017-11-29 12:01:05 -0800145 flushIfNeededLocked(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700146 // TODO: need to populate the condition change time from the event which triggers the condition
147 // change, instead of using current time.
148 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700149 pair.second->onConditionChanged(conditionMet, eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700150 }
151}
152
Yangsterf2bee6f2017-11-29 12:01:05 -0800153std::unique_ptr<std::vector<uint8_t>> DurationMetricProducer::onDumpReportLocked() {
Yao Chen6a8c7992017-11-29 20:02:07 +0000154 long long endTime = time(nullptr) * NS_PER_SEC;
155
156 // Dump current bucket if it's stale.
157 // If current bucket is still on-going, don't force dump current bucket.
158 // In finish(), We can force dump current bucket.
Yangsterf2bee6f2017-11-29 12:01:05 -0800159 flushIfNeededLocked(endTime);
Yao Chen6a8c7992017-11-29 20:02:07 +0000160 VLOG("metric %s dump report now...", mMetric.name().c_str());
161
Yao Chen729093d2017-10-16 10:33:26 -0700162 for (const auto& pair : mPastBuckets) {
163 const HashableDimensionKey& hashableKey = pair.first;
yro2b0f8862017-11-06 14:27:31 -0800164 VLOG(" dimension key %s", hashableKey.c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700165 auto it = mDimensionKeyMap.find(hashableKey);
166 if (it == mDimensionKeyMap.end()) {
167 ALOGW("Dimension key %s not found?!?! skip...", hashableKey.c_str());
168 continue;
169 }
Yao Chen1ff4f432017-11-16 17:01:40 -0800170
171 // If there is no duration bucket info for this key, don't include it in the report.
172 // For example, duration started, but condition is never turned to true.
173 // TODO: Only add the key to the map when we add duration buckets info for it.
174 if (pair.second.size() == 0) {
175 continue;
176 }
177
yrob0378b02017-11-09 20:36:25 -0800178 long long wrapperToken =
179 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800180
181 // First fill dimension (KeyValuePairs).
182 for (const auto& kv : it->second) {
yrob0378b02017-11-09 20:36:25 -0800183 long long dimensionToken =
184 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DIMENSION);
yro2b0f8862017-11-06 14:27:31 -0800185 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_KEY, kv.key());
186 if (kv.has_value_str()) {
Yao Chen1ff4f432017-11-16 17:01:40 -0800187 mProto->write(FIELD_TYPE_STRING | FIELD_ID_VALUE_STR, kv.value_str());
yro2b0f8862017-11-06 14:27:31 -0800188 } else if (kv.has_value_int()) {
189 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE_INT, kv.value_int());
190 } else if (kv.has_value_bool()) {
191 mProto->write(FIELD_TYPE_BOOL | FIELD_ID_VALUE_BOOL, kv.value_bool());
192 } else if (kv.has_value_float()) {
193 mProto->write(FIELD_TYPE_FLOAT | FIELD_ID_VALUE_FLOAT, kv.value_float());
194 }
195 mProto->end(dimensionToken);
196 }
197
198 // Then fill bucket_info (DurationBucketInfo).
199 for (const auto& bucket : pair.second) {
yrob0378b02017-11-09 20:36:25 -0800200 long long bucketInfoToken =
201 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
yro2b0f8862017-11-06 14:27:31 -0800202 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
203 (long long)bucket.mBucketStartNs);
204 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
205 (long long)bucket.mBucketEndNs);
206 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
207 mProto->end(bucketInfoToken);
208 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
209 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
210 }
211
212 mProto->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700213 }
yro2b0f8862017-11-06 14:27:31 -0800214
215 mProto->end(mProtoToken);
216 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS,
217 (long long)mCurrentBucketStartTimeNs);
Yangsterf2bee6f2017-11-29 12:01:05 -0800218 std::unique_ptr<std::vector<uint8_t>> buffer = serializeProtoLocked();
219 startNewProtoOutputStreamLocked(endTime);
Yao Chen30b6a202017-11-18 14:14:38 -0800220 // TODO: Properly clear the old buckets.
yro17adac92017-11-08 23:16:29 -0800221 return buffer;
yro2b0f8862017-11-06 14:27:31 -0800222}
Yao Chen729093d2017-10-16 10:33:26 -0700223
Yangsterf2bee6f2017-11-29 12:01:05 -0800224void DurationMetricProducer::flushIfNeededLocked(const uint64_t& eventTime) {
Yao Chen729093d2017-10-16 10:33:26 -0700225 if (mCurrentBucketStartTimeNs + mBucketSizeNs > eventTime) {
226 return;
227 }
Yao Chen5154a372017-10-30 22:57:06 -0700228 VLOG("flushing...........");
Yao Chend41c4222017-11-15 19:26:14 -0800229 for (auto it = mCurrentSlicedDuration.begin(); it != mCurrentSlicedDuration.end();) {
Yao Chen5154a372017-10-30 22:57:06 -0700230 if (it->second->flushIfNeeded(eventTime)) {
231 VLOG("erase bucket for key %s", it->first.c_str());
Yao Chend41c4222017-11-15 19:26:14 -0800232 it = mCurrentSlicedDuration.erase(it);
233 } else {
234 ++it;
Yao Chen729093d2017-10-16 10:33:26 -0700235 }
236 }
Yao Chen5154a372017-10-30 22:57:06 -0700237
238 int numBucketsForward = (eventTime - mCurrentBucketStartTimeNs) / mBucketSizeNs;
239 mCurrentBucketStartTimeNs += numBucketsForward * mBucketSizeNs;
Yangster-mace2cd6d52017-11-09 20:38:30 -0800240 mCurrentBucketNum += numBucketsForward;
Yao Chen5154a372017-10-30 22:57:06 -0700241}
242
Yangsterf2bee6f2017-11-29 12:01:05 -0800243bool DurationMetricProducer::hitGuardRailLocked(const HashableDimensionKey& newKey) {
Yao Chenb3561512017-11-21 18:07:17 -0800244 // the key is not new, we are good.
245 if (mCurrentSlicedDuration.find(newKey) != mCurrentSlicedDuration.end()) {
246 return false;
247 }
248 // 1. Report the tuple count if the tuple count > soft limit
249 if (mCurrentSlicedDuration.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) {
250 size_t newTupleCount = mCurrentSlicedDuration.size() + 1;
251 StatsdStats::getInstance().noteMetricDimensionSize(mConfigKey, mMetric.name(),
252 newTupleCount);
253 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
254 if (newTupleCount > StatsdStats::kDimensionKeySizeHardLimit) {
255 ALOGE("DurationMetric %s dropping data for dimension key %s", mMetric.name().c_str(),
256 newKey.c_str());
257 return true;
258 }
259 }
260 return false;
261}
262
Yangsterf2bee6f2017-11-29 12:01:05 -0800263void DurationMetricProducer::onMatchedLogEventInternalLocked(
Yao Chen5154a372017-10-30 22:57:06 -0700264 const size_t matcherIndex, const HashableDimensionKey& eventKey,
265 const map<string, HashableDimensionKey>& conditionKeys, bool condition,
Chenjie Yub3dda412017-10-24 13:41:59 -0700266 const LogEvent& event, bool scheduledPull) {
Yangsterf2bee6f2017-11-29 12:01:05 -0800267 flushIfNeededLocked(event.GetTimestampNs());
Yao Chen5154a372017-10-30 22:57:06 -0700268
Yao Chen6a8c7992017-11-29 20:02:07 +0000269 if (matcherIndex == mStopAllIndex) {
270 for (auto& pair : mCurrentSlicedDuration) {
271 pair.second->noteStopAll(event.GetTimestampNs());
272 }
273 return;
274 }
275
276 HashableDimensionKey atomKey = getHashableKey(getDimensionKey(event, mInternalDimension));
277
278 if (mCurrentSlicedDuration.find(eventKey) == mCurrentSlicedDuration.end()) {
Yangsterf2bee6f2017-11-29 12:01:05 -0800279 if (hitGuardRailLocked(eventKey)) {
Yao Chenb3561512017-11-21 18:07:17 -0800280 return;
281 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000282 mCurrentSlicedDuration[eventKey] = createDurationTracker(eventKey, mPastBuckets[eventKey]);
283 }
Yao Chen5154a372017-10-30 22:57:06 -0700284
Yao Chen6a8c7992017-11-29 20:02:07 +0000285 auto it = mCurrentSlicedDuration.find(eventKey);
Yao Chen5154a372017-10-30 22:57:06 -0700286
Yao Chen6a8c7992017-11-29 20:02:07 +0000287 if (matcherIndex == mStartIndex) {
288 it->second->noteStart(atomKey, condition, event.GetTimestampNs(), conditionKeys);
289 } else if (matcherIndex == mStopIndex) {
290 it->second->noteStop(atomKey, event.GetTimestampNs(), false);
Yao Chen5154a372017-10-30 22:57:06 -0700291 }
Yao Chen729093d2017-10-16 10:33:26 -0700292}
293
Yangsterf2bee6f2017-11-29 12:01:05 -0800294size_t DurationMetricProducer::byteSizeLocked() const {
Yangster7c334a12017-11-22 14:24:24 -0800295 size_t totalSize = 0;
296 for (const auto& pair : mPastBuckets) {
297 totalSize += pair.second.size() * kBucketSize;
298 }
299 return totalSize;
yro69007c82017-10-26 20:42:57 -0700300}
301
Yao Chen729093d2017-10-16 10:33:26 -0700302} // namespace statsd
303} // namespace os
304} // namespace android