blob: ed4d7e4ffc9c4699fa29be6e2ae5a734f9d00525 [file] [log] [blame]
Chenjie Yub3dda412017-10-24 13:41:59 -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 // STOPSHIP if true
Chenjie Yub3dda412017-10-24 13:41:59 -070018#include "Log.h"
19
20#include "ValueMetricProducer.h"
Chenjie Yuc5875052018-03-09 10:13:11 -080021#include "../guardrail/StatsdStats.h"
22#include "../stats_log_util.h"
Chenjie Yub3dda412017-10-24 13:41:59 -070023
24#include <cutils/log.h>
25#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;
Chenjie Yub3dda412017-10-24 13:41:59 -070036using std::list;
Chenjie Yu6736c892017-11-09 10:50:09 -080037using std::make_pair;
Chenjie Yub3dda412017-10-24 13:41:59 -070038using std::make_shared;
Yao Chen93fe3a32017-11-02 13:52:59 -070039using std::map;
Chenjie Yub3dda412017-10-24 13:41:59 -070040using std::shared_ptr;
41using std::unique_ptr;
Yao Chen93fe3a32017-11-02 13:52:59 -070042using std::unordered_map;
Chenjie Yub3dda412017-10-24 13:41:59 -070043
44namespace android {
45namespace os {
46namespace statsd {
47
yro2b0f8862017-11-06 14:27:31 -080048// for StatsLogReport
Yangster-mac94e197c2018-01-02 16:03:03 -080049const int FIELD_ID_ID = 1;
yro2b0f8862017-11-06 14:27:31 -080050const int FIELD_ID_VALUE_METRICS = 7;
51// for ValueMetricDataWrapper
52const int FIELD_ID_DATA = 1;
53// for ValueMetricData
Yangster-mac468ff042018-01-17 12:26:34 -080054const int FIELD_ID_DIMENSION_IN_WHAT = 1;
55const int FIELD_ID_DIMENSION_IN_CONDITION = 2;
56const int FIELD_ID_BUCKET_INFO = 3;
yro2b0f8862017-11-06 14:27:31 -080057// for ValueBucketInfo
58const int FIELD_ID_START_BUCKET_NANOS = 1;
59const int FIELD_ID_END_BUCKET_NANOS = 2;
60const int FIELD_ID_VALUE = 3;
61
Chenjie Yub3dda412017-10-24 13:41:59 -070062// ValueMetric has a minimum bucket size of 10min so that we don't pull too frequently
Yao Chenb3561512017-11-21 18:07:17 -080063ValueMetricProducer::ValueMetricProducer(const ConfigKey& key, const ValueMetric& metric,
64 const int conditionIndex,
Yao Chen93fe3a32017-11-02 13:52:59 -070065 const sp<ConditionWizard>& wizard, const int pullTagId,
Chenjie Yu6736c892017-11-09 10:50:09 -080066 const uint64_t startTimeNs,
67 shared_ptr<StatsPullerManager> statsPullerManager)
Yangster-mac94e197c2018-01-02 16:03:03 -080068 : MetricProducer(metric.id(), key, startTimeNs, conditionIndex, wizard),
Yao Chenf09569f2017-12-13 17:00:51 -080069 mValueField(metric.value_field()),
Chenjie Yu6736c892017-11-09 10:50:09 -080070 mStatsPullerManager(statsPullerManager),
Chenjie Yuc5875052018-03-09 10:13:11 -080071 mPullTagId(pullTagId),
72 mDimensionSoftLimit(StatsdStats::kAtomDimensionKeySizeLimitMap.find(pullTagId) !=
73 StatsdStats::kAtomDimensionKeySizeLimitMap.end()
74 ? StatsdStats::kAtomDimensionKeySizeLimitMap.at(pullTagId).first
75 : StatsdStats::kDimensionKeySizeSoftLimit),
76 mDimensionHardLimit(StatsdStats::kAtomDimensionKeySizeLimitMap.find(pullTagId) !=
77 StatsdStats::kAtomDimensionKeySizeLimitMap.end()
78 ? StatsdStats::kAtomDimensionKeySizeLimitMap.at(pullTagId).second
79 : StatsdStats::kDimensionKeySizeHardLimit) {
Yao Chen93fe3a32017-11-02 13:52:59 -070080 // TODO: valuemetric for pushed events may need unlimited bucket length
Yangster-macb8144812018-01-04 10:56:23 -080081 int64_t bucketSizeMills = 0;
82 if (metric.has_bucket()) {
yro59cc24d2018-02-13 20:17:32 -080083 bucketSizeMills = TimeUnitToBucketSizeInMillisGuardrailed(key.GetUid(), metric.bucket());
Chenjie Yu6736c892017-11-09 10:50:09 -080084 } else {
Yangster-macb8144812018-01-04 10:56:23 -080085 bucketSizeMills = TimeUnitToBucketSizeInMillis(ONE_HOUR);
Chenjie Yu6736c892017-11-09 10:50:09 -080086 }
Chenjie Yub3dda412017-10-24 13:41:59 -070087
Yangster-macb8144812018-01-04 10:56:23 -080088 mBucketSizeNs = bucketSizeMills * 1000000;
Yao Chen8a8d16c2018-02-08 14:50:40 -080089 if (metric.has_dimensions_in_what()) {
90 translateFieldMatcher(metric.dimensions_in_what(), &mDimensionsInWhat);
Yangster13fb7e42018-03-07 17:30:49 -080091 mContainANYPositionInDimensionsInWhat = HasPositionANY(metric.dimensions_in_what());
Yao Chen8a8d16c2018-02-08 14:50:40 -080092 }
93
94 if (metric.has_dimensions_in_condition()) {
95 translateFieldMatcher(metric.dimensions_in_condition(), &mDimensionsInCondition);
96 }
Chenjie Yub3dda412017-10-24 13:41:59 -070097
Yao Chen93fe3a32017-11-02 13:52:59 -070098 if (metric.links().size() > 0) {
Yao Chen8a8d16c2018-02-08 14:50:40 -080099 for (const auto& link : metric.links()) {
100 Metric2Condition mc;
101 mc.conditionId = link.condition();
102 translateFieldMatcher(link.fields_in_what(), &mc.metricFields);
103 translateFieldMatcher(link.fields_in_condition(), &mc.conditionFields);
104 mMetric2ConditionLinks.push_back(mc);
105 }
Yao Chen93fe3a32017-11-02 13:52:59 -0700106 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800107
108 if (mValueField.child_size()) {
109 mField = mValueField.child(0).field();
110 }
111 mConditionSliced = (metric.links().size() > 0) || (mDimensionsInCondition.size() > 0);
Chenjie Yub3dda412017-10-24 13:41:59 -0700112
Yao Chen93fe3a32017-11-02 13:52:59 -0700113 if (!metric.has_condition() && mPullTagId != -1) {
Chenjie Yu6736c892017-11-09 10:50:09 -0800114 VLOG("Setting up periodic pulling for %d", mPullTagId);
Yangster-macb8144812018-01-04 10:56:23 -0800115 mStatsPullerManager->RegisterReceiver(mPullTagId, this, bucketSizeMills);
Yao Chen93fe3a32017-11-02 13:52:59 -0700116 }
Yangster-mac94e197c2018-01-02 16:03:03 -0800117 VLOG("value metric %lld created. bucket size %lld start_time: %lld",
118 (long long)metric.id(), (long long)mBucketSizeNs, (long long)mStartTimeNs);
Chenjie Yub3dda412017-10-24 13:41:59 -0700119}
120
Chenjie Yu6736c892017-11-09 10:50:09 -0800121// for testing
Yao Chenb3561512017-11-21 18:07:17 -0800122ValueMetricProducer::ValueMetricProducer(const ConfigKey& key, const ValueMetric& metric,
123 const int conditionIndex,
Chenjie Yu6736c892017-11-09 10:50:09 -0800124 const sp<ConditionWizard>& wizard, const int pullTagId,
125 const uint64_t startTimeNs)
Yao Chenb3561512017-11-21 18:07:17 -0800126 : ValueMetricProducer(key, metric, conditionIndex, wizard, pullTagId, startTimeNs,
Chenjie Yu6736c892017-11-09 10:50:09 -0800127 make_shared<StatsPullerManager>()) {
128}
129
Chenjie Yub3dda412017-10-24 13:41:59 -0700130ValueMetricProducer::~ValueMetricProducer() {
Yao Chen93fe3a32017-11-02 13:52:59 -0700131 VLOG("~ValueMetricProducer() called");
Chenjie Yu6736c892017-11-09 10:50:09 -0800132 if (mPullTagId != -1) {
133 mStatsPullerManager->UnRegisterReceiver(mPullTagId, this);
134 }
Chenjie Yub3dda412017-10-24 13:41:59 -0700135}
136
Yangsterf2bee6f2017-11-29 12:01:05 -0800137void ValueMetricProducer::onSlicedConditionMayChangeLocked(const uint64_t eventTime) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800138 VLOG("Metric %lld onSlicedConditionMayChange", (long long)mMetricId);
Chenjie Yub3dda412017-10-24 13:41:59 -0700139}
140
Yao Chen06dba5d2018-01-26 13:38:16 -0800141void ValueMetricProducer::dropDataLocked(const uint64_t dropTimeNs) {
142 flushIfNeededLocked(dropTimeNs);
143 mPastBuckets.clear();
144}
145
Yao Chen288c6002017-12-12 13:43:18 -0800146void ValueMetricProducer::onDumpReportLocked(const uint64_t dumpTimeNs,
147 ProtoOutputStream* protoOutput) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800148 VLOG("metric %lld dump report now...", (long long)mMetricId);
Yao Chen288c6002017-12-12 13:43:18 -0800149 flushIfNeededLocked(dumpTimeNs);
Yangster-mac635b4b32018-01-23 20:17:35 -0800150 if (mPastBuckets.empty()) {
151 return;
152 }
Yangster-mac94e197c2018-01-02 16:03:03 -0800153 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)mMetricId);
Yi Jin5ee07872018-03-05 18:18:27 -0800154 uint64_t protoToken = protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_ID_VALUE_METRICS);
Yao Chen6a8c7992017-11-29 20:02:07 +0000155
Yao Chen93fe3a32017-11-02 13:52:59 -0700156 for (const auto& pair : mPastBuckets) {
Yangster-mac93694462018-01-22 20:49:31 -0800157 const MetricDimensionKey& dimensionKey = pair.first;
Yangster13fb7e42018-03-07 17:30:49 -0800158 VLOG(" dimension key %s", dimensionKey.toString().c_str());
Yi Jin5ee07872018-03-05 18:18:27 -0800159 uint64_t wrapperToken =
Yao Chen288c6002017-12-12 13:43:18 -0800160 protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
Chenjie Yub3dda412017-10-24 13:41:59 -0700161
Yangster-mac20877162017-12-22 17:19:39 -0800162 // First fill dimension.
Yi Jin5ee07872018-03-05 18:18:27 -0800163 uint64_t dimensionToken = protoOutput->start(
Yangster-mac468ff042018-01-17 12:26:34 -0800164 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_WHAT);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800165 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -0800166 protoOutput->end(dimensionToken);
Yangster-mac93694462018-01-22 20:49:31 -0800167 if (dimensionKey.hasDimensionKeyInCondition()) {
Yi Jin5ee07872018-03-05 18:18:27 -0800168 uint64_t dimensionInConditionToken = protoOutput->start(
Yangster-mac93694462018-01-22 20:49:31 -0800169 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_CONDITION);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800170 writeDimensionToProto(dimensionKey.getDimensionKeyInCondition(), protoOutput);
Yangster-mac93694462018-01-22 20:49:31 -0800171 protoOutput->end(dimensionInConditionToken);
172 }
yro2b0f8862017-11-06 14:27:31 -0800173
174 // Then fill bucket_info (ValueBucketInfo).
175 for (const auto& bucket : pair.second) {
Yi Jin5ee07872018-03-05 18:18:27 -0800176 uint64_t bucketInfoToken = protoOutput->start(
Yao Chen288c6002017-12-12 13:43:18 -0800177 FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
178 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
179 (long long)bucket.mBucketStartNs);
180 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
181 (long long)bucket.mBucketEndNs);
182 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE, (long long)bucket.mValue);
183 protoOutput->end(bucketInfoToken);
yro2b0f8862017-11-06 14:27:31 -0800184 VLOG("\t bucket [%lld - %lld] count: %lld", (long long)bucket.mBucketStartNs,
185 (long long)bucket.mBucketEndNs, (long long)bucket.mValue);
186 }
Yao Chen288c6002017-12-12 13:43:18 -0800187 protoOutput->end(wrapperToken);
Chenjie Yub3dda412017-10-24 13:41:59 -0700188 }
Yao Chen288c6002017-12-12 13:43:18 -0800189 protoOutput->end(protoToken);
yro2b0f8862017-11-06 14:27:31 -0800190
Yangster-mac94e197c2018-01-02 16:03:03 -0800191 VLOG("metric %lld dump report now...", (long long)mMetricId);
Yao Chen6a8c7992017-11-29 20:02:07 +0000192 mPastBuckets.clear();
yro2b0f8862017-11-06 14:27:31 -0800193 // TODO: Clear mDimensionKeyMap once the report is dumped.
Chenjie Yub3dda412017-10-24 13:41:59 -0700194}
195
Yangsterf2bee6f2017-11-29 12:01:05 -0800196void ValueMetricProducer::onConditionChangedLocked(const bool condition, const uint64_t eventTime) {
Yao Chen6a8c7992017-11-29 20:02:07 +0000197 mCondition = condition;
Chenjie Yub3dda412017-10-24 13:41:59 -0700198
Yao Chen2794da22017-12-13 16:01:55 -0800199 if (eventTime < mCurrentBucketStartTimeNs) {
Chenjie Yua7259ab2017-12-10 08:31:05 -0800200 VLOG("Skip event due to late arrival: %lld vs %lld", (long long)eventTime,
201 (long long)mCurrentBucketStartTimeNs);
Yao Chen2794da22017-12-13 16:01:55 -0800202 return;
203 }
204
Chenjie Yua7259ab2017-12-10 08:31:05 -0800205 flushIfNeededLocked(eventTime);
206
Yao Chen6a8c7992017-11-29 20:02:07 +0000207 if (mPullTagId != -1) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700208 if (mCondition == true) {
Yao Chenf09569f2017-12-13 17:00:51 -0800209 mStatsPullerManager->RegisterReceiver(mPullTagId, this, mBucketSizeNs / 1000 / 1000);
Chenjie Yu6736c892017-11-09 10:50:09 -0800210 } else if (mCondition == false) {
211 mStatsPullerManager->UnRegisterReceiver(mPullTagId, this);
Chenjie Yub3dda412017-10-24 13:41:59 -0700212 }
Yangster8de69392017-11-27 13:48:29 -0800213
Yao Chen6a8c7992017-11-29 20:02:07 +0000214 vector<shared_ptr<LogEvent>> allData;
215 if (mStatsPullerManager->Pull(mPullTagId, &allData)) {
216 if (allData.size() == 0) {
217 return;
218 }
219 for (const auto& data : allData) {
Chenjie Yua7259ab2017-12-10 08:31:05 -0800220 onMatchedLogEventLocked(0, *data);
Yao Chen6a8c7992017-11-29 20:02:07 +0000221 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000222 }
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700223 return;
Chenjie Yub3dda412017-10-24 13:41:59 -0700224 }
Chenjie Yub3dda412017-10-24 13:41:59 -0700225}
226
227void ValueMetricProducer::onDataPulled(const std::vector<std::shared_ptr<LogEvent>>& allData) {
Yangsterf2bee6f2017-11-29 12:01:05 -0800228 std::lock_guard<std::mutex> lock(mMutex);
229
Yao Chenf09569f2017-12-13 17:00:51 -0800230 if (mCondition == true || mConditionTrackerIndex < 0) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700231 if (allData.size() == 0) {
232 return;
233 }
Chenjie Yua7259ab2017-12-10 08:31:05 -0800234 // For scheduled pulled data, the effective event time is snap to the nearest
235 // bucket boundary to make bucket finalize.
Yangster-mac330af582018-02-08 15:24:38 -0800236 uint64_t realEventTime = allData.at(0)->GetElapsedTimestampNs();
Yangster-maca7fb12d2018-01-03 17:17:20 -0800237 uint64_t eventTime = mStartTimeNs +
Yangster-mac330af582018-02-08 15:24:38 -0800238 ((realEventTime - mStartTimeNs) / mBucketSizeNs) * mBucketSizeNs;
Chenjie Yua7259ab2017-12-10 08:31:05 -0800239
240 mCondition = false;
Chenjie Yub3dda412017-10-24 13:41:59 -0700241 for (const auto& data : allData) {
Yangster-mac330af582018-02-08 15:24:38 -0800242 data->setElapsedTimestampNs(eventTime - 1);
Chenjie Yua7259ab2017-12-10 08:31:05 -0800243 onMatchedLogEventLocked(0, *data);
Chenjie Yub3dda412017-10-24 13:41:59 -0700244 }
Chenjie Yua7259ab2017-12-10 08:31:05 -0800245
246 mCondition = true;
247 for (const auto& data : allData) {
Yangster-mac330af582018-02-08 15:24:38 -0800248 data->setElapsedTimestampNs(eventTime);
Chenjie Yua7259ab2017-12-10 08:31:05 -0800249 onMatchedLogEventLocked(0, *data);
250 }
Chenjie Yub3dda412017-10-24 13:41:59 -0700251 }
252}
253
Yangster-maca78d0082018-03-12 12:02:56 -0700254void ValueMetricProducer::dumpStatesLocked(FILE* out, bool verbose) const {
255 if (mCurrentSlicedBucket.size() == 0) {
256 return;
257 }
258
259 fprintf(out, "ValueMetric %lld dimension size %lu\n", (long long)mMetricId,
260 (unsigned long)mCurrentSlicedBucket.size());
261 if (verbose) {
262 for (const auto& it : mCurrentSlicedBucket) {
263 fprintf(out, "\t(what)%s\t(condition)%s (value)%lld\n",
264 it.first.getDimensionKeyInWhat().toString().c_str(),
265 it.first.getDimensionKeyInCondition().toString().c_str(),
266 (unsigned long long)it.second.sum);
267 }
268 }
269}
270
Yangster-mac93694462018-01-22 20:49:31 -0800271bool ValueMetricProducer::hitGuardRailLocked(const MetricDimensionKey& newKey) {
Yao Chenb3561512017-11-21 18:07:17 -0800272 // ===========GuardRail==============
273 // 1. Report the tuple count if the tuple count > soft limit
274 if (mCurrentSlicedBucket.find(newKey) != mCurrentSlicedBucket.end()) {
275 return false;
276 }
Chenjie Yuc5875052018-03-09 10:13:11 -0800277 if (mCurrentSlicedBucket.size() > mDimensionSoftLimit - 1) {
Yao Chenb3561512017-11-21 18:07:17 -0800278 size_t newTupleCount = mCurrentSlicedBucket.size() + 1;
Yangster-mac94e197c2018-01-02 16:03:03 -0800279 StatsdStats::getInstance().noteMetricDimensionSize(mConfigKey, mMetricId, newTupleCount);
Yao Chenb3561512017-11-21 18:07:17 -0800280 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
Chenjie Yuc5875052018-03-09 10:13:11 -0800281 if (newTupleCount > mDimensionHardLimit) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800282 ALOGE("ValueMetric %lld dropping data for dimension key %s",
Yangster13fb7e42018-03-07 17:30:49 -0800283 (long long)mMetricId, newKey.toString().c_str());
Yao Chenb3561512017-11-21 18:07:17 -0800284 return true;
285 }
286 }
287
288 return false;
289}
290
Yangsterf2bee6f2017-11-29 12:01:05 -0800291void ValueMetricProducer::onMatchedLogEventInternalLocked(
Yangster-mac93694462018-01-22 20:49:31 -0800292 const size_t matcherIndex, const MetricDimensionKey& eventKey,
Yangster-mac20877162017-12-22 17:19:39 -0800293 const ConditionKey& conditionKey, bool condition,
Chenjie Yua7259ab2017-12-10 08:31:05 -0800294 const LogEvent& event) {
Yangster-mac330af582018-02-08 15:24:38 -0800295 uint64_t eventTimeNs = event.GetElapsedTimestampNs();
Yao Chen6a8c7992017-11-29 20:02:07 +0000296 if (eventTimeNs < mCurrentBucketStartTimeNs) {
297 VLOG("Skip event due to late arrival: %lld vs %lld", (long long)eventTimeNs,
298 (long long)mCurrentBucketStartTimeNs);
299 return;
300 }
301
Chenjie Yua7259ab2017-12-10 08:31:05 -0800302 flushIfNeededLocked(eventTimeNs);
303
Yangsterf2bee6f2017-11-29 12:01:05 -0800304 if (hitGuardRailLocked(eventKey)) {
Yangster8de69392017-11-27 13:48:29 -0800305 return;
306 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000307 Interval& interval = mCurrentSlicedBucket[eventKey];
308
Yao Chen8a8d16c2018-02-08 14:50:40 -0800309 int error = 0;
310 const long value = event.GetLong(mField, &error);
311 if (error < 0) {
Yangster-maca7fb12d2018-01-03 17:17:20 -0800312 return;
313 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000314
Chenjie Yua7259ab2017-12-10 08:31:05 -0800315 if (mPullTagId != -1) { // for pulled events
316 if (mCondition == true) {
317 interval.start = value;
318 interval.startUpdated = true;
Yao Chen6a8c7992017-11-29 20:02:07 +0000319 } else {
Chenjie Yu0ed268b2018-01-10 09:37:10 -0800320 // Generally we expect value to be monotonically increasing.
321 // If not, there was a reset event. We take the absolute value as
322 // diff in this case.
Chenjie Yua7259ab2017-12-10 08:31:05 -0800323 if (interval.startUpdated) {
Chenjie Yu0ed268b2018-01-10 09:37:10 -0800324 if (value > interval.start) {
325 interval.sum += (value - interval.start);
326 } else {
327 interval.sum += value;
328 }
Chenjie Yua7259ab2017-12-10 08:31:05 -0800329 interval.startUpdated = false;
Yao Chen6a8c7992017-11-29 20:02:07 +0000330 } else {
Chenjie Yua7259ab2017-12-10 08:31:05 -0800331 VLOG("No start for matching end %ld", value);
332 interval.tainted += 1;
Yao Chen6a8c7992017-11-29 20:02:07 +0000333 }
334 }
Chenjie Yua7259ab2017-12-10 08:31:05 -0800335 } else { // for pushed events
336 interval.sum += value;
Yangster8de69392017-11-27 13:48:29 -0800337 }
Bookatzde1b55622017-12-14 18:38:27 -0800338
David Chen27785a82018-01-19 17:06:45 -0800339 long wholeBucketVal = interval.sum;
340 auto prev = mCurrentFullBucket.find(eventKey);
341 if (prev != mCurrentFullBucket.end()) {
342 wholeBucketVal += prev->second;
343 }
Bookatzde1b55622017-12-14 18:38:27 -0800344 for (auto& tracker : mAnomalyTrackers) {
David Chen27785a82018-01-19 17:06:45 -0800345 tracker->detectAndDeclareAnomaly(eventTimeNs, mCurrentBucketNum, eventKey, wholeBucketVal);
Bookatzde1b55622017-12-14 18:38:27 -0800346 }
Yangster8de69392017-11-27 13:48:29 -0800347}
348
Yangsterf2bee6f2017-11-29 12:01:05 -0800349void ValueMetricProducer::flushIfNeededLocked(const uint64_t& eventTimeNs) {
David Chen27785a82018-01-19 17:06:45 -0800350 uint64_t currentBucketEndTimeNs = getCurrentBucketEndTimeNs();
351
352 if (currentBucketEndTimeNs > eventTimeNs) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700353 VLOG("eventTime is %lld, less than next bucket start time %lld", (long long)eventTimeNs,
David Chen27785a82018-01-19 17:06:45 -0800354 (long long)(currentBucketEndTimeNs));
Chenjie Yub3dda412017-10-24 13:41:59 -0700355 return;
356 }
David Chen27785a82018-01-19 17:06:45 -0800357
358 flushCurrentBucketLocked(eventTimeNs);
359
360 int64_t numBucketsForward = 1 + (eventTimeNs - currentBucketEndTimeNs) / mBucketSizeNs;
361 mCurrentBucketStartTimeNs = currentBucketEndTimeNs + (numBucketsForward - 1) * mBucketSizeNs;
362 mCurrentBucketNum += numBucketsForward;
363
364 if (numBucketsForward > 1) {
365 VLOG("Skipping forward %lld buckets", (long long)numBucketsForward);
366 }
367 VLOG("metric %lld: new bucket start time: %lld", (long long)mMetricId,
368 (long long)mCurrentBucketStartTimeNs);
369}
370
371void ValueMetricProducer::flushCurrentBucketLocked(const uint64_t& eventTimeNs) {
Chenjie Yub3dda412017-10-24 13:41:59 -0700372 VLOG("finalizing bucket for %ld, dumping %d slices", (long)mCurrentBucketStartTimeNs,
373 (int)mCurrentSlicedBucket.size());
David Chen27785a82018-01-19 17:06:45 -0800374 uint64_t fullBucketEndTimeNs = getCurrentBucketEndTimeNs();
375
yro2b0f8862017-11-06 14:27:31 -0800376 ValueBucket info;
377 info.mBucketStartNs = mCurrentBucketStartTimeNs;
David Chen27785a82018-01-19 17:06:45 -0800378 if (eventTimeNs < fullBucketEndTimeNs) {
379 info.mBucketEndNs = eventTimeNs;
380 } else {
381 info.mBucketEndNs = fullBucketEndTimeNs;
382 }
Chenjie Yub3dda412017-10-24 13:41:59 -0700383
Chenjie Yu6736c892017-11-09 10:50:09 -0800384 int tainted = 0;
Chenjie Yub3dda412017-10-24 13:41:59 -0700385 for (const auto& slice : mCurrentSlicedBucket) {
Chenjie Yu6736c892017-11-09 10:50:09 -0800386 tainted += slice.second.tainted;
Chenjie Yua7259ab2017-12-10 08:31:05 -0800387 info.mValue = slice.second.sum;
Yao Chen93fe3a32017-11-02 13:52:59 -0700388 // it will auto create new vector of ValuebucketInfo if the key is not found.
389 auto& bucketList = mPastBuckets[slice.first];
390 bucketList.push_back(info);
Chenjie Yub3dda412017-10-24 13:41:59 -0700391 }
Chenjie Yua7259ab2017-12-10 08:31:05 -0800392 VLOG("%d tainted pairs in the bucket", tainted);
Chenjie Yub3dda412017-10-24 13:41:59 -0700393
David Chen27785a82018-01-19 17:06:45 -0800394 if (eventTimeNs > fullBucketEndTimeNs) { // If full bucket, send to anomaly tracker.
395 // Accumulate partial buckets with current value and then send to anomaly tracker.
396 if (mCurrentFullBucket.size() > 0) {
397 for (const auto& slice : mCurrentSlicedBucket) {
398 mCurrentFullBucket[slice.first] += slice.second.sum;
399 }
400 for (const auto& slice : mCurrentFullBucket) {
401 for (auto& tracker : mAnomalyTrackers) {
402 if (tracker != nullptr) {
403 tracker->addPastBucket(slice.first, slice.second, mCurrentBucketNum);
404 }
405 }
406 }
407 mCurrentFullBucket.clear();
408 } else {
409 // Skip aggregating the partial buckets since there's no previous partial bucket.
410 for (const auto& slice : mCurrentSlicedBucket) {
411 for (auto& tracker : mAnomalyTrackers) {
412 if (tracker != nullptr) {
413 tracker->addPastBucket(slice.first, slice.second.sum, mCurrentBucketNum);
414 }
415 }
416 }
417 }
418 } else {
419 // Accumulate partial bucket.
420 for (const auto& slice : mCurrentSlicedBucket) {
421 mCurrentFullBucket[slice.first] += slice.second.sum;
422 }
423 }
424
Chenjie Yub3dda412017-10-24 13:41:59 -0700425 // Reset counters
Chenjie Yua7259ab2017-12-10 08:31:05 -0800426 mCurrentSlicedBucket.clear();
Chenjie Yub3dda412017-10-24 13:41:59 -0700427}
428
Yangsterf2bee6f2017-11-29 12:01:05 -0800429size_t ValueMetricProducer::byteSizeLocked() const {
Yangster-mace2cd6d52017-11-09 20:38:30 -0800430 size_t totalSize = 0;
431 for (const auto& pair : mPastBuckets) {
432 totalSize += pair.second.size() * kBucketSize;
433 }
434 return totalSize;
yro2b0f8862017-11-06 14:27:31 -0800435}
436
Chenjie Yub3dda412017-10-24 13:41:59 -0700437} // namespace statsd
438} // namespace os
Yao Chen93fe3a32017-11-02 13:52:59 -0700439} // namespace android