blob: 2b30f44d345af82d1844eaa071189a052dd09dce [file] [log] [blame]
Yao Chen44cf27c2017-09-14 22:32:50 -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
Joe Onorato9fc9edf2017-10-15 20:08:52 -070017#pragma once
Yao Chen44cf27c2017-09-14 22:32:50 -070018
Yangster-mace2cd6d52017-11-09 20:38:30 -080019#include "anomaly/AnomalyMonitor.h"
20#include "anomaly/AnomalyTracker.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070021#include "condition/ConditionTracker.h"
Yao Chenb3561512017-11-21 18:07:17 -080022#include "config/ConfigKey.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070023#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
Joe Onoratoc4dfae52017-10-17 23:38:21 -070024#include "logd/LogEvent.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070025#include "matchers/LogMatchingTracker.h"
26#include "metrics/MetricProducer.h"
Yao Chend10f7b12017-12-18 12:53:50 -080027#include "packages/UidMap.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070028
Yao Chen44cf27c2017-09-14 22:32:50 -070029#include <unordered_map>
Yao Chen44cf27c2017-09-14 22:32:50 -070030
31namespace android {
32namespace os {
33namespace statsd {
34
35// A MetricsManager is responsible for managing metrics from one single config source.
Yao Chend10f7b12017-12-18 12:53:50 -080036class MetricsManager : public PackageInfoListener {
Yao Chen44cf27c2017-09-14 22:32:50 -070037public:
Yao Chend10f7b12017-12-18 12:53:50 -080038 MetricsManager(const ConfigKey& configKey, const StatsdConfig& config, const long timeBaseSec,
39 sp<UidMap> uidMap);
Yao Chen44cf27c2017-09-14 22:32:50 -070040
David Chend9269e22017-12-05 13:43:51 -080041 virtual ~MetricsManager();
Yao Chen44cf27c2017-09-14 22:32:50 -070042
Yao Chencaf339d2017-10-06 16:01:10 -070043 // Return whether the configuration is valid.
44 bool isConfigValid() const;
45
Joe Onoratoc4dfae52017-10-17 23:38:21 -070046 void onLogEvent(const LogEvent& event);
Yao Chen44cf27c2017-09-14 22:32:50 -070047
Yangster-mac20877162017-12-22 17:19:39 -080048 void onAnomalyAlarmFired(
49 const uint64_t timestampNs,
50 unordered_set<sp<const AnomalyAlarm>, SpHash<AnomalyAlarm>>& anomalySet);
Yangster-mace2cd6d52017-11-09 20:38:30 -080051
52 void setAnomalyMonitor(const sp<AnomalyMonitor>& anomalyMonitor);
53
David Chen27785a82018-01-19 17:06:45 -080054 void notifyAppUpgrade(const uint64_t& eventTimeNs, const string& apk, const int uid,
55 const int64_t version) override;
Yao Chend10f7b12017-12-18 12:53:50 -080056
David Chen27785a82018-01-19 17:06:45 -080057 void notifyAppRemoved(const uint64_t& eventTimeNs, const string& apk, const int uid) override;
Yao Chend10f7b12017-12-18 12:53:50 -080058
David Chen27785a82018-01-19 17:06:45 -080059 void onUidMapReceived(const uint64_t& eventTimeNs) override;
Yao Chend10f7b12017-12-18 12:53:50 -080060
Yao Chen147ce602017-12-22 14:35:34 -080061 bool shouldAddUidMapListener() const {
62 return !mAllowedPkg.empty();
63 }
64
Yao Chen884c8c12018-01-26 10:36:25 -080065 void dumpStates(FILE* out, bool verbose);
66
David Chen16049572018-02-01 18:27:51 -080067 // Returns the elapsed realtime when this metric manager last reported metrics.
68 uint64_t getLastReportTimeNs() {
69 return mLastReportTimeNs;
70 };
71
Yao Chen729093d2017-10-16 10:33:26 -070072 // Config source owner can call onDumpReport() to get all the metrics collected.
Yao Chen288c6002017-12-12 13:43:18 -080073 virtual void onDumpReport(android::util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080074 virtual void onDumpReport(const uint64_t& dumpTimeStampNs, ConfigMetricsReport* report);
Yao Chen729093d2017-10-16 10:33:26 -070075
David Chen1d7b0cd2017-11-15 14:20:04 -080076 // Computes the total byte size of all metrics managed by a single config source.
77 // Does not change the state.
David Chend9269e22017-12-05 13:43:51 -080078 virtual size_t byteSize();
Yao Chen44cf27c2017-09-14 22:32:50 -070079private:
Yao Chenb3561512017-11-21 18:07:17 -080080 const ConfigKey mConfigKey;
81
Yao Chend10f7b12017-12-18 12:53:50 -080082 sp<UidMap> mUidMap;
83
84 bool mConfigValid = false;
85
David Chen16049572018-02-01 18:27:51 -080086 uint64_t mLastReportTimeNs;
87
Yao Chend10f7b12017-12-18 12:53:50 -080088 // The uid log sources from StatsdConfig.
89 std::vector<int32_t> mAllowedUid;
90
91 // The pkg log sources from StatsdConfig.
92 std::vector<std::string> mAllowedPkg;
93
94 // The combined uid sources (after translating pkg name to uid).
95 // Logs from uids that are not in the list will be ignored to avoid spamming.
96 std::set<int32_t> mAllowedLogSources;
97
98 // To guard access to mAllowedLogSources
99 mutable std::mutex mAllowedLogSourcesMutex;
100
Yao Chen44cf27c2017-09-14 22:32:50 -0700101 // All event tags that are interesting to my metrics.
102 std::set<int> mTagIds;
103
Yao Chencaf339d2017-10-06 16:01:10 -0700104 // We only store the sp of LogMatchingTracker, MetricProducer, and ConditionTracker in
Bookatzd3606c72017-10-19 10:13:49 -0700105 // MetricsManager. There are relationships between them, and the relationships are denoted by
106 // index instead of pointers. The reasons for this are: (1) the relationship between them are
107 // complicated, so storing index instead of pointers reduces the risk that A holds B's sp, and B
108 // holds A's sp. (2) When we evaluate matcher results, or condition results, we can quickly get
109 // the related results from a cache using the index.
Yao Chen44cf27c2017-09-14 22:32:50 -0700110
Stefan Lafonb8c9aa82017-12-03 14:27:25 -0800111 // Hold all the atom matchers from the config.
112 std::vector<sp<LogMatchingTracker>> mAllAtomMatchers;
Yao Chen44cf27c2017-09-14 22:32:50 -0700113
Yao Chencaf339d2017-10-06 16:01:10 -0700114 // Hold all the conditions from the config.
115 std::vector<sp<ConditionTracker>> mAllConditionTrackers;
116
117 // Hold all metrics from the config.
118 std::vector<sp<MetricProducer>> mAllMetricProducers;
119
Yangster-mace2cd6d52017-11-09 20:38:30 -0800120 // Hold all alert trackers.
121 std::vector<sp<AnomalyTracker>> mAllAnomalyTrackers;
122
Yao Chencaf339d2017-10-06 16:01:10 -0700123 // To make the log processing more efficient, we want to do as much filtering as possible
124 // before we go into individual trackers and conditions to match.
125
126 // 1st filter: check if the event tag id is in mTagIds.
127 // 2nd filter: if it is, we parse the event because there is at least one member is interested.
128 // then pass to all LogMatchingTrackers (itself also filter events by ids).
129 // 3nd filter: for LogMatchingTrackers that matched this event, we pass this event to the
130 // ConditionTrackers and MetricProducers that use this matcher.
131 // 4th filter: for ConditionTrackers that changed value due to this event, we pass
132 // new conditions to metrics that use this condition.
133
134 // The following map is initialized from the statsd_config.
135
136 // maps from the index of the LogMatchingTracker to index of MetricProducer.
137 std::unordered_map<int, std::vector<int>> mTrackerToMetricMap;
138
139 // maps from LogMatchingTracker to ConditionTracker
140 std::unordered_map<int, std::vector<int>> mTrackerToConditionMap;
141
142 // maps from ConditionTracker to MetricProducer
143 std::unordered_map<int, std::vector<int>> mConditionToMetricMap;
144
Yao Chend10f7b12017-12-18 12:53:50 -0800145 void initLogSourceWhiteList();
Yangster-mac20877162017-12-22 17:19:39 -0800146
Yangster-mac94e197c2018-01-02 16:03:03 -0800147 // The metrics that don't need to be uploaded or even reported.
148 std::set<int64_t> mNoReportMetricIds;
149
Yangster-mac20877162017-12-22 17:19:39 -0800150 FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensions);
151 FRIEND_TEST(MetricConditionLinkE2eTest, TestMultiplePredicatesAndLinks);
Yangster-macb5bc7412018-01-06 23:17:45 -0800152 FRIEND_TEST(AttributionE2eTest, TestAttributionMatchAndSlice);
Yangster-mac87718e22018-01-11 16:16:26 -0800153 FRIEND_TEST(GaugeMetricE2eTest, TestMultipleFieldsForPushedEvent);
Yangster-mac93694462018-01-22 20:49:31 -0800154 FRIEND_TEST(DimensionInConditionE2eTest, TestCountMetricNoLink);
155 FRIEND_TEST(DimensionInConditionE2eTest, TestCountMetricWithLink);
156 FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetricNoLink);
157 FRIEND_TEST(DimensionInConditionE2eTest, TestDurationMetricWithLink);
Yao Chen44cf27c2017-09-14 22:32:50 -0700158};
159
160} // namespace statsd
161} // namespace os
162} // namespace android