blob: a0374c0ba67c307022c611482676cb4ed320ac41 [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
yro2b0f8862017-11-06 14:27:31 -080096 startNewProtoOutputStream(mStartTimeNs);
97
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
yro2b0f8862017-11-06 14:27:31 -0800106void DurationMetricProducer::startNewProtoOutputStream(long long startTime) {
107 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(
Yao Chen6a8c7992017-11-29 20:02:07 +0000114 const HashableDimensionKey& eventKey, vector<DurationBucket>& bucket) {
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
Yao Chen5154a372017-10-30 22:57:06 -0700132void DurationMetricProducer::onSlicedConditionMayChange(const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800133 VLOG("Metric %s onSlicedConditionMayChange", mMetric.name().c_str());
Yao Chen09294ef2017-11-25 19:54:01 -0800134 flushIfNeeded(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
Yao Chen5154a372017-10-30 22:57:06 -0700141void DurationMetricProducer::onConditionChanged(const bool conditionMet, const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800142 VLOG("Metric %s onConditionChanged", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700143 mCondition = conditionMet;
Yao Chen09294ef2017-11-25 19:54:01 -0800144 flushIfNeeded(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700145 // TODO: need to populate the condition change time from the event which triggers the condition
146 // change, instead of using current time.
147 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700148 pair.second->onConditionChanged(conditionMet, eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700149 }
150}
151
Yao Chen6a8c7992017-11-29 20:02:07 +0000152std::unique_ptr<std::vector<uint8_t>> DurationMetricProducer::onDumpReport() {
153 long long endTime = time(nullptr) * NS_PER_SEC;
154
155 // Dump current bucket if it's stale.
156 // If current bucket is still on-going, don't force dump current bucket.
157 // In finish(), We can force dump current bucket.
158 flushIfNeeded(endTime);
159 VLOG("metric %s dump report now...", mMetric.name().c_str());
160
Yao Chen729093d2017-10-16 10:33:26 -0700161 for (const auto& pair : mPastBuckets) {
162 const HashableDimensionKey& hashableKey = pair.first;
yro2b0f8862017-11-06 14:27:31 -0800163 VLOG(" dimension key %s", hashableKey.c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700164 auto it = mDimensionKeyMap.find(hashableKey);
165 if (it == mDimensionKeyMap.end()) {
166 ALOGW("Dimension key %s not found?!?! skip...", hashableKey.c_str());
167 continue;
168 }
Yao Chen1ff4f432017-11-16 17:01:40 -0800169
170 // If there is no duration bucket info for this key, don't include it in the report.
171 // For example, duration started, but condition is never turned to true.
172 // TODO: Only add the key to the map when we add duration buckets info for it.
173 if (pair.second.size() == 0) {
174 continue;
175 }
176
yrob0378b02017-11-09 20:36:25 -0800177 long long wrapperToken =
178 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800179
180 // First fill dimension (KeyValuePairs).
181 for (const auto& kv : it->second) {
yrob0378b02017-11-09 20:36:25 -0800182 long long dimensionToken =
183 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DIMENSION);
yro2b0f8862017-11-06 14:27:31 -0800184 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_KEY, kv.key());
185 if (kv.has_value_str()) {
Yao Chen1ff4f432017-11-16 17:01:40 -0800186 mProto->write(FIELD_TYPE_STRING | FIELD_ID_VALUE_STR, kv.value_str());
yro2b0f8862017-11-06 14:27:31 -0800187 } else if (kv.has_value_int()) {
188 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE_INT, kv.value_int());
189 } else if (kv.has_value_bool()) {
190 mProto->write(FIELD_TYPE_BOOL | FIELD_ID_VALUE_BOOL, kv.value_bool());
191 } else if (kv.has_value_float()) {
192 mProto->write(FIELD_TYPE_FLOAT | FIELD_ID_VALUE_FLOAT, kv.value_float());
193 }
194 mProto->end(dimensionToken);
195 }
196
197 // Then fill bucket_info (DurationBucketInfo).
198 for (const auto& bucket : pair.second) {
yrob0378b02017-11-09 20:36:25 -0800199 long long bucketInfoToken =
200 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
yro2b0f8862017-11-06 14:27:31 -0800201 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
202 (long long)bucket.mBucketStartNs);
203 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
204 (long long)bucket.mBucketEndNs);
205 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
206 mProto->end(bucketInfoToken);
207 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
208 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
209 }
210
211 mProto->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700212 }
yro2b0f8862017-11-06 14:27:31 -0800213
214 mProto->end(mProtoToken);
215 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS,
216 (long long)mCurrentBucketStartTimeNs);
yro17adac92017-11-08 23:16:29 -0800217 std::unique_ptr<std::vector<uint8_t>> buffer = serializeProto();
yro2b0f8862017-11-06 14:27:31 -0800218 startNewProtoOutputStream(endTime);
Yao Chen30b6a202017-11-18 14:14:38 -0800219 // TODO: Properly clear the old buckets.
yro17adac92017-11-08 23:16:29 -0800220 return buffer;
yro2b0f8862017-11-06 14:27:31 -0800221}
Yao Chen729093d2017-10-16 10:33:26 -0700222
Yao Chen5154a372017-10-30 22:57:06 -0700223void DurationMetricProducer::flushIfNeeded(uint64_t eventTime) {
Yao Chen729093d2017-10-16 10:33:26 -0700224 if (mCurrentBucketStartTimeNs + mBucketSizeNs > eventTime) {
225 return;
226 }
Yao Chen5154a372017-10-30 22:57:06 -0700227 VLOG("flushing...........");
Yao Chend41c4222017-11-15 19:26:14 -0800228 for (auto it = mCurrentSlicedDuration.begin(); it != mCurrentSlicedDuration.end();) {
Yao Chen5154a372017-10-30 22:57:06 -0700229 if (it->second->flushIfNeeded(eventTime)) {
230 VLOG("erase bucket for key %s", it->first.c_str());
Yao Chend41c4222017-11-15 19:26:14 -0800231 it = mCurrentSlicedDuration.erase(it);
232 } else {
233 ++it;
Yao Chen729093d2017-10-16 10:33:26 -0700234 }
235 }
Yao Chen5154a372017-10-30 22:57:06 -0700236
237 int numBucketsForward = (eventTime - mCurrentBucketStartTimeNs) / mBucketSizeNs;
238 mCurrentBucketStartTimeNs += numBucketsForward * mBucketSizeNs;
Yangster-mace2cd6d52017-11-09 20:38:30 -0800239 mCurrentBucketNum += numBucketsForward;
Yao Chen5154a372017-10-30 22:57:06 -0700240}
241
Yao Chenb3561512017-11-21 18:07:17 -0800242bool DurationMetricProducer::hitGuardRail(const HashableDimensionKey& newKey) {
243 // the key is not new, we are good.
244 if (mCurrentSlicedDuration.find(newKey) != mCurrentSlicedDuration.end()) {
245 return false;
246 }
247 // 1. Report the tuple count if the tuple count > soft limit
248 if (mCurrentSlicedDuration.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) {
249 size_t newTupleCount = mCurrentSlicedDuration.size() + 1;
250 StatsdStats::getInstance().noteMetricDimensionSize(mConfigKey, mMetric.name(),
251 newTupleCount);
252 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
253 if (newTupleCount > StatsdStats::kDimensionKeySizeHardLimit) {
254 ALOGE("DurationMetric %s dropping data for dimension key %s", mMetric.name().c_str(),
255 newKey.c_str());
256 return true;
257 }
258 }
259 return false;
260}
261
Yao Chen5154a372017-10-30 22:57:06 -0700262void DurationMetricProducer::onMatchedLogEventInternal(
263 const size_t matcherIndex, const HashableDimensionKey& eventKey,
264 const map<string, HashableDimensionKey>& conditionKeys, bool condition,
Chenjie Yub3dda412017-10-24 13:41:59 -0700265 const LogEvent& event, bool scheduledPull) {
Yao Chen5154a372017-10-30 22:57:06 -0700266 flushIfNeeded(event.GetTimestampNs());
267
Yao Chen6a8c7992017-11-29 20:02:07 +0000268 if (matcherIndex == mStopAllIndex) {
269 for (auto& pair : mCurrentSlicedDuration) {
270 pair.second->noteStopAll(event.GetTimestampNs());
271 }
272 return;
273 }
274
275 HashableDimensionKey atomKey = getHashableKey(getDimensionKey(event, mInternalDimension));
276
277 if (mCurrentSlicedDuration.find(eventKey) == mCurrentSlicedDuration.end()) {
278 if (hitGuardRail(eventKey)) {
Yao Chenb3561512017-11-21 18:07:17 -0800279 return;
280 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000281 mCurrentSlicedDuration[eventKey] = createDurationTracker(eventKey, mPastBuckets[eventKey]);
282 }
Yao Chen5154a372017-10-30 22:57:06 -0700283
Yao Chen6a8c7992017-11-29 20:02:07 +0000284 auto it = mCurrentSlicedDuration.find(eventKey);
Yao Chen5154a372017-10-30 22:57:06 -0700285
Yao Chen6a8c7992017-11-29 20:02:07 +0000286 if (matcherIndex == mStartIndex) {
287 it->second->noteStart(atomKey, condition, event.GetTimestampNs(), conditionKeys);
288 } else if (matcherIndex == mStopIndex) {
289 it->second->noteStop(atomKey, event.GetTimestampNs(), false);
Yao Chen5154a372017-10-30 22:57:06 -0700290 }
Yao Chen729093d2017-10-16 10:33:26 -0700291}
292
Yangster7c334a12017-11-22 14:24:24 -0800293size_t DurationMetricProducer::byteSize() const {
294 size_t totalSize = 0;
295 for (const auto& pair : mPastBuckets) {
296 totalSize += pair.second.size() * kBucketSize;
297 }
298 return totalSize;
yro69007c82017-10-26 20:42:57 -0700299}
300
Yao Chen729093d2017-10-16 10:33:26 -0700301} // namespace statsd
302} // namespace os
303} // namespace android