1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/ukm/ukm_recorder_impl.h"
#include <memory>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include "base/component_export.h"
#include "base/containers/contains.h"
#include "base/containers/span.h"
#include "base/feature_list.h"
#include "base/logging.h"
#include "base/metrics/crc32.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/field_trial_params.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "base/metrics/metrics_hashes.h"
#include "base/rand_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/time/time.h"
#include "base/trace_event/typed_macros.h"
#include "components/ukm/scheme_constants.h"
#include "components/ukm/ukm_recorder_observer.h"
#include "components/variations/variations_associated_data.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_decode.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "services/metrics/public/cpp/ukm_recorder_impl_utils.h"
#include "services/metrics/public/cpp/ukm_source.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "services/metrics/public/mojom/ukm_interface.mojom.h"
#include "third_party/metrics_proto/ukm/entry.pb.h"
#include "third_party/metrics_proto/ukm/report.pb.h"
#include "third_party/metrics_proto/ukm/source.pb.h"
#include "third_party/metrics_proto/ukm/web_features.pb.h"
#include "ukm_consent_state.h"
#include "ukm_recorder_impl.h"
#include "url/gurl.h"
namespace ukm {
BASE_FEATURE(kUkmSamplingRateFeature,
"UkmSamplingRate",
base::FEATURE_DISABLED_BY_DEFAULT);
namespace {
// Allowlisted source ids are sent. Non-allowlisted source ids are sent if the
// url matches that of an allow-listed source.
bool IsAllowlistedSourceId(SourceId source_id) {
SourceIdType type = GetSourceIdType(source_id);
switch (type) {
case ukm::SourceIdObj::Type::NAVIGATION_ID:
case ukm::SourceIdObj::Type::APP_ID:
case ukm::SourceIdObj::Type::HISTORY_ID:
case ukm::SourceIdObj::Type::WEBAPK_ID:
case ukm::SourceIdObj::Type::PAYMENT_APP_ID:
case ukm::SourceIdObj::Type::NO_URL_ID:
case ukm::SourceIdObj::Type::REDIRECT_ID:
case ukm::SourceIdObj::Type::WEB_IDENTITY_ID:
case ukm::SourceIdObj::Type::CHROMEOS_WEBSITE_ID:
case ukm::SourceIdObj::Type::NOTIFICATION_ID:
case ukm::SourceIdObj::Type::EXTENSION_ID:
case ukm::SourceIdObj::Type::CDM_ID: {
return true;
}
case ukm::SourceIdObj::Type::DEFAULT:
case ukm::SourceIdObj::Type::DEPRECATED_DESKTOP_WEB_APP_ID:
case ukm::SourceIdObj::Type::WORKER_ID:
return false;
}
}
// Returns whether |url| has one of the schemes supported for logging to UKM.
// URLs with other schemes will not be logged.
bool HasSupportedScheme(const GURL& url) {
return url.SchemeIsHTTPOrHTTPS() || url.SchemeIs(url::kAboutScheme) ||
url.SchemeIs(kChromeUIScheme) || url.SchemeIs(kExtensionScheme) ||
url.SchemeIs(kAppScheme);
}
void RecordDroppedSource(DroppedDataReason reason) {
UMA_HISTOGRAM_ENUMERATION(
"UKM.Sources.Dropped", static_cast<int>(reason),
static_cast<int>(DroppedDataReason::NUM_DROPPED_DATA_REASONS));
}
void RecordDroppedSource(bool already_recorded_another_reason,
DroppedDataReason reason) {
if (!already_recorded_another_reason)
RecordDroppedSource(reason);
}
void StoreEntryProto(const mojom::UkmEntry& in, Entry* out) {
DCHECK(!out->has_source_id());
DCHECK(!out->has_event_hash());
out->set_source_id(in.source_id);
out->set_event_hash(in.event_hash);
for (const auto& metric : in.metrics) {
Entry::Metric* proto_metric = out->add_metrics();
proto_metric->set_metric_hash(metric.first);
proto_metric->set_value(metric.second);
}
}
void StoreWebDXFeaturesProto(SourceId source_id,
const BitSet& in,
HighLevelWebFeatures* out) {
out->set_source_id(source_id);
out->set_bit_vector(in.Serialize());
// The encoding version should be changed if the underlying enum is changed
// (e.g. renumbered).
constexpr uint32_t kWebDXFeaturesEncodingVersion = 0;
out->set_encoding_version(kWebDXFeaturesEncodingVersion);
}
GURL SanitizeURL(const GURL& url) {
GURL::Replacements remove_params;
remove_params.ClearUsername();
remove_params.ClearPassword();
// chrome:// and about: URLs params are never used for navigation, only to
// prepopulate data on the page, so don't include their params.
if (url.SchemeIs(url::kAboutScheme) || url.SchemeIs("chrome")) {
remove_params.ClearQuery();
}
if (url.SchemeIs(kExtensionScheme)) {
remove_params.ClearPath();
remove_params.ClearQuery();
remove_params.ClearRef();
}
return url.ReplaceComponents(remove_params);
}
void AppendAllowlistedUrls(
const std::map<SourceId, std::unique_ptr<UkmSource>>& sources,
std::unordered_set<std::string>* urls) {
for (const auto& kv : sources) {
if (IsAllowlistedSourceId(kv.first)) {
urls->insert(kv.second->url().spec());
// Some non-navigation sources only record origin as a URL.
// Add the origin from the navigation source to match those too.
urls->insert(kv.second->url().DeprecatedGetOriginAsURL().spec());
}
}
}
// Returns true if the event corresponding to |event_hash| has a comprehensive
// decode map that includes all valid metrics.
bool HasComprehensiveDecodeMap(int64_t event_hash) {
// All events other than "Identifiability" conforms to its decode map.
// TODO(asanka): It is technically an abstraction violation for
// //components/ukm to know this fact.
return event_hash != builders::Identifiability::kEntryNameHash;
}
bool HasUnknownMetrics(const builders::DecodeMap& decode_map,
const mojom::UkmEntry& entry) {
const auto it = decode_map.find(entry.event_hash);
if (it == decode_map.end())
return true;
if (!HasComprehensiveDecodeMap(entry.event_hash))
return false;
const auto& metric_map = it->second.metric_map;
for (const auto& metric : entry.metrics) {
if (metric_map.count(metric.first) == 0)
return true;
}
return false;
}
std::string WebDXFeaturesToStringForDebug(const std::set<int32_t>& features) {
std::string features_string;
for (const auto& feature : features) {
if (!features_string.empty()) {
features_string += ",";
}
features_string += base::NumberToString(feature);
}
return features_string;
}
} // namespace
UkmRecorderImpl::UkmRecorderImpl()
: sampling_seed_(static_cast<uint32_t>(base::RandUint64())) {
max_kept_sources_ =
static_cast<size_t>(base::GetFieldTrialParamByFeatureAsInt(
kUkmFeature, "MaxKeptSources", max_kept_sources_));
}
UkmRecorderImpl::~UkmRecorderImpl() = default;
UkmRecorderImpl::Recordings::Recordings() = default;
UkmRecorderImpl::Recordings& UkmRecorderImpl::Recordings::operator=(
Recordings&&) = default;
UkmRecorderImpl::Recordings::~Recordings() = default;
void UkmRecorderImpl::Recordings::Reset() {
*this = Recordings();
}
void UkmRecorderImpl::Recordings::SourceCounts::Reset() {
*this = SourceCounts();
}
void UkmRecorderImpl::UpdateRecording(ukm::UkmConsentState state) {
DVLOG(DebuggingLogLevel::Rare)
<< "UpdateRecording [state_bit_mask=" << state.ToEnumBitmask() << "]";
recording_state_ = state;
EnableRecording();
}
void UkmRecorderImpl::EnableRecording() {
recording_enabled_ = true;
OnRecorderParametersChanged();
}
void UkmRecorderImpl::DisableRecording() {
DVLOG(DebuggingLogLevel::Rare) << "DisableRecording";
if (recording_enabled())
recording_is_continuous_ = false;
recording_enabled_ = false;
OnRecorderParametersChanged();
}
void UkmRecorderImpl::SetSamplingForTesting(int rate) {
sampling_forced_for_testing_ = true;
default_sampling_rate_ = rate;
event_sampling_rates_.clear();
}
void UkmRecorderImpl::SetWebDXFeaturesSamplingForTesting(int rate) {
sampling_forced_for_testing_ = true;
webdx_features_sampling_ = rate;
}
bool UkmRecorderImpl::ShouldDropEntryForTesting(mojom::UkmEntry* entry) {
return ShouldDropEntry(entry);
}
bool UkmRecorderImpl::IsSamplingConfigured() const {
return sampling_forced_for_testing_ ||
base::FeatureList::IsEnabled(kUkmSamplingRateFeature);
}
void UkmRecorderImpl::Purge() {
DVLOG(DebuggingLogLevel::Rare) << "Purge";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
recordings_.Reset();
recording_is_continuous_ = false;
NotifyAllObservers(&UkmRecorderObserver::OnPurge);
}
void UkmRecorderImpl::PurgeRecordingsWithUrlScheme(
const std::string& url_scheme) {
DVLOG(DebuggingLogLevel::Rare)
<< "PurgeRecordingsWithUrlScheme [scheme=" << url_scheme << "]";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Discard all sources that have a URL with the given URL scheme as well as
// all the entries associated with these sources.
std::unordered_set<SourceId> relevant_source_ids;
for (const auto& kv : recordings_.sources) {
if (kv.second->url().SchemeIs(url_scheme)) {
relevant_source_ids.insert(kv.first);
}
}
PurgeDataBySourceIds(relevant_source_ids);
recording_is_continuous_ = false;
NotifyAllObservers(&UkmRecorderObserver::OnPurgeRecordingsWithUrlScheme,
url_scheme);
}
void UkmRecorderImpl::PurgeRecordingsWithSourceIdType(
ukm::SourceIdType source_id_type) {
DVLOG(DebuggingLogLevel::Rare) << "PurgeRecordingsWithSourceIdType [type="
<< static_cast<int>(source_id_type) << "]";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::unordered_set<SourceId> relevant_source_ids;
for (const auto& kv : recordings_.sources) {
if (GetSourceIdType(kv.first) == source_id_type) {
relevant_source_ids.insert(kv.first);
}
}
PurgeDataBySourceIds(relevant_source_ids);
recording_is_continuous_ = false;
}
void UkmRecorderImpl::PurgeRecordingsWithMsbbSources() {
DVLOG(DebuggingLogLevel::Rare) << "PurgeRecordingsWithMsbbSources";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::unordered_set<SourceId> relevant_source_ids;
for (const auto& kv : recordings_.sources) {
if (GetConsentType(GetSourceIdType(kv.first)) == MSBB) {
relevant_source_ids.insert(kv.first);
}
}
PurgeDataBySourceIds(relevant_source_ids);
recording_is_continuous_ = false;
}
void UkmRecorderImpl::PurgeDataBySourceIds(
const std::unordered_set<SourceId>& source_ids) {
for (const auto source_id : source_ids) {
recordings_.sources.erase(source_id);
}
std::vector<mojom::UkmEntryPtr>& events = recordings_.entries;
std::erase_if(events, [&](const auto& event) {
return source_ids.count(event->source_id);
});
std::map<SourceId, BitSet>& webdx_features = recordings_.webdx_features;
std::erase_if(webdx_features, [&](const auto& features) {
return source_ids.count(features.first);
});
}
void UkmRecorderImpl::MarkSourceForDeletion(SourceId source_id) {
DVLOG(DebuggingLogLevel::Frequent)
<< "MarkSourceForDeletion [source_id=" << source_id << "]";
if (source_id == kInvalidSourceId)
return;
recordings_.obsolete_source_ids.insert(source_id);
}
void UkmRecorderImpl::SetIsWebstoreExtensionCallback(
const IsWebstoreExtensionCallback& callback) {
is_webstore_extension_callback_ = callback;
}
void UkmRecorderImpl::SetEntryFilter(
std::unique_ptr<UkmEntryFilter> entry_filter) {
DCHECK(!entry_filter_ || !entry_filter);
entry_filter_ = std::move(entry_filter);
}
void UkmRecorderImpl::AddUkmRecorderObserver(
const base::flat_set<uint64_t>& event_hashes,
UkmRecorderObserver* observer) {
DCHECK(observer);
{
base::AutoLock auto_lock(lock_);
if (!observers_.contains(event_hashes)) {
observers_.insert(
{event_hashes, base::MakeRefCounted<UkmRecorderObserverList>()});
}
observers_[event_hashes]->AddObserver(observer);
}
// Update the UkmRecorderParameters to capture a UKM event which is being
// observed by any UkmRecorderObserver in |observers_|.
OnRecorderParametersChanged();
}
void UkmRecorderImpl::RemoveUkmRecorderObserver(UkmRecorderObserver* observer) {
{
base::AutoLock auto_lock(lock_);
for (auto it = observers_.begin(); it != observers_.end();) {
if (it->second->RemoveObserver(observer) ==
UkmRecorderObserverList::RemoveObserverResult::kWasOrBecameEmpty) {
it = observers_.erase(it);
} else {
++it;
}
}
}
OnRecorderParametersChanged();
}
void UkmRecorderImpl::OnUkmAllowedStateChanged(UkmConsentState state) {
NotifyAllObservers(&UkmRecorderObserver::OnUkmAllowedStateChanged, state);
}
void UkmRecorderImpl::StoreWebDXFeaturesDownsamplingParameter(Report* report) {
Report::DownsamplingRate* rate = report->add_downsampling_rates();
// TODO(crbug.com/381251064): Consider populating all the other applied
// downsampling rates too.
rate->set_event_hash(base::HashMetricName(kWebFeatureSamplingKeyword));
rate->set_standard_rate(webdx_features_sampling_);
}
void UkmRecorderImpl::StoreRecordingsInReport(Report* report) {
DVLOG(DebuggingLogLevel::Rare) << "StoreRecordingsInReport starts";
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Set of source ids seen by entries in recordings_.
std::set<SourceId> source_ids_seen;
for (const auto& entry : recordings_.entries) {
Entry* proto_entry = report->add_entries();
StoreEntryProto(*entry, proto_entry);
source_ids_seen.insert(entry->source_id);
}
for (const auto& [source_id, features_set] : recordings_.webdx_features) {
HighLevelWebFeatures* features = report->add_web_features();
StoreWebDXFeaturesProto(source_id, features_set, features);
source_ids_seen.insert(source_id);
}
// Number of sources excluded from this report because no entries referred to
// them.
const int num_sources_unsent =
recordings_.sources.size() - source_ids_seen.size();
// Construct set of allowlisted URLs by merging those carried over from the
// previous report cycle and those from sources recorded in this cycle.
std::unordered_set<std::string> url_allowlist;
recordings_.carryover_urls_allowlist.swap(url_allowlist);
AppendAllowlistedUrls(recordings_.sources, &url_allowlist);
// Number of sources discarded due to not matching a navigation URL.
int num_sources_unmatched = 0;
std::unordered_map<SourceIdType, int> serialized_source_type_counts;
for (const auto& kv : recordings_.sources) {
MaybeMarkForDeletion(kv.first);
// If the source id is not allowlisted, don't send it unless it has
// associated entries and the URL matches that of an allowlisted source.
if (!IsAllowlistedSourceId(kv.first)) {
// UkmSource should not keep initial_url for non-navigation source IDs.
DCHECK_EQ(1u, kv.second->urls().size());
if (!url_allowlist.count(kv.second->url().spec())) {
RecordDroppedSource(DroppedDataReason::NOT_MATCHED);
MarkSourceForDeletion(kv.first);
num_sources_unmatched++;
continue;
}
// Omit entryless sources from the report.
if (!base::Contains(source_ids_seen, kv.first)) {
continue;
}
// Non-allowlisted Source types will not be kept after entries are
// logged.
// We experimented with this in early 2023 and we found keeping sources
// longer didn't decrease the percentage of sources with null url. See
// crbug/1358334.
MarkSourceForDeletion(kv.first);
}
// Minimal validations before serializing into a proto message.
// See crbug/1274876.
DCHECK_NE(kv.second->id(), ukm::kInvalidSourceId);
DCHECK_NE(kv.second->urls().size(), 0u);
Source* proto_source = report->add_sources();
kv.second->PopulateProto(proto_source);
serialized_source_type_counts[GetSourceIdType(kv.first)]++;
}
for (const auto& event_and_aggregate : recordings_.event_aggregations) {
Aggregate* proto_aggregate = report->add_aggregates();
proto_aggregate->set_event_hash(event_and_aggregate.first);
const EventAggregate& event_aggregate = event_and_aggregate.second;
event_aggregate.FillProto(proto_aggregate);
}
int num_serialized_sources = 0;
for (const auto& source_type_and_count : serialized_source_type_counts) {
num_serialized_sources += source_type_and_count.second;
}
int num_serialized_entries = recordings_.entries.size();
UMA_HISTOGRAM_COUNTS_1000("UKM.Sources.SerializedCount2",
num_serialized_sources);
UMA_HISTOGRAM_COUNTS_100000("UKM.Entries.SerializedCount2",
num_serialized_entries);
UMA_HISTOGRAM_COUNTS_1000("UKM.WebDXFeatureSets.SerializedCount",
recordings_.webdx_features.size());
UMA_HISTOGRAM_COUNTS_1000("UKM.Sources.UnsentSourcesCount",
num_sources_unsent);
UMA_HISTOGRAM_COUNTS_1000("UKM.Sources.UnmatchedSourcesCount",
num_sources_unmatched);
UMA_HISTOGRAM_COUNTS_1000(
"UKM.Sources.SerializedCount2.Default",
serialized_source_type_counts[SourceIdType::DEFAULT]);
UMA_HISTOGRAM_COUNTS_1000(
"UKM.Sources.SerializedCount2.Navigation",
serialized_source_type_counts[SourceIdType::NAVIGATION_ID]);
UMA_HISTOGRAM_COUNTS_1000(
"UKM.Sources.SerializedCount2.App",
serialized_source_type_counts[SourceIdType::APP_ID]);
// We record a UMA metric specifically for the number of serialized events
// with the FCP metric. This is for data quality verification.
const uint64_t pageload_hash =
base::HashMetricName(ukm::builders::PageLoad::kEntryName);
const uint64_t fcp_hash = base::HashMetricName(
ukm::builders::PageLoad::
kPaintTiming_NavigationToFirstContentfulPaintName);
int num_recorded_fcp = 0;
for (const auto& entry : recordings_.entries) {
if (entry->event_hash == pageload_hash) {
if (entry->metrics.find(fcp_hash) != entry->metrics.end()) {
num_recorded_fcp++;
}
}
}
UMA_HISTOGRAM_COUNTS_100000("UKM.Entries.SerializedCountFCP",
num_recorded_fcp);
// For each matching id in obsolete_source_ids, remove the Source from
// recordings_.sources. The remaining sources form the deferred sources for
// the next report.
for (const SourceId& source_id : recordings_.obsolete_source_ids) {
recordings_.sources.erase(source_id);
}
recordings_.obsolete_source_ids.clear();
// Populate SourceCounts field on the report then clear the recordings.
Report::SourceCounts* source_counts_proto = report->mutable_source_counts();
source_counts_proto->set_observed(recordings_.source_counts.observed);
source_counts_proto->set_navigation_sources(
recordings_.source_counts.navigation_sources);
source_counts_proto->set_unmatched_sources(num_sources_unmatched);
source_counts_proto->set_carryover_sources(
recordings_.source_counts.carryover_sources);
recordings_.source_counts.Reset();
recordings_.entries.clear();
recordings_.webdx_features.clear();
recordings_.event_aggregations.clear();
report->set_is_continuous(recording_is_continuous_);
recording_is_continuous_ = true;
int pruned_sources_age_sec = PruneData(source_ids_seen);
// Record how old the newest truncated source is.
source_counts_proto->set_pruned_sources_age_seconds(pruned_sources_age_sec);
// Set deferred sources count after pruning.
source_counts_proto->set_deferred_sources(recordings_.sources.size());
// Same value as the deferred source count, for setting the carryover count
// in the next reporting cycle.
recordings_.source_counts.carryover_sources = recordings_.sources.size();
// We already matched these deferred sources against the URL allowlist.
// Re-allowlist them for the next report.
for (const auto& kv : recordings_.sources) {
recordings_.carryover_urls_allowlist.insert(kv.second->url().spec());
}
UMA_HISTOGRAM_COUNTS_1000("UKM.Sources.KeptSourcesCount",
recordings_.sources.size());
// Record number of sources after pruning that were carried over due to not
// having any events in this reporting cycle.
int num_sources_entryless = 0;
for (const auto& kv : recordings_.sources) {
if (!base::Contains(source_ids_seen, kv.first)) {
num_sources_entryless++;
}
}
source_counts_proto->set_entryless_sources(num_sources_entryless);
// Notify observers that a report was generated.
if (entry_filter_) {
entry_filter_->OnStoreRecordingsInReport();
}
DVLOG(DebuggingLogLevel::Rare)
<< "StoreRecordingsInReport done [num_serialized_entries="
<< num_serialized_entries << "]";
StoreWebDXFeaturesDownsamplingParameter(report);
DVLOG(DebuggingLogLevel::Rare) << "# of downsampling parameters stored: "
<< report->downsampling_rates().size();
}
int UkmRecorderImpl::PruneData(std::set<SourceId>& source_ids_seen) {
// Modify the set source_ids_seen by removing sources that aren't in
// recordings_. We do this here as there is a few places for
// recordings_.sources to be modified. The resulting set will be currently
// existing sources that were seen in this report.
auto it = source_ids_seen.begin();
while (it != source_ids_seen.end()) {
if (!base::Contains(recordings_.sources, *it)) {
it = source_ids_seen.erase(it);
} else {
it++;
}
}
std::set<SourceId> all_sources;
for (const auto& kv : recordings_.sources) {
all_sources.insert(kv.first);
}
int pruned_sources_age_sec = PruneOldSources(max_kept_sources_, all_sources);
return pruned_sources_age_sec;
}
bool UkmRecorderImpl::ShouldDropEntry(mojom::UkmEntry* entry) {
if (!recording_enabled()) {
RecordDroppedEntry(entry->event_hash,
DroppedDataReason::RECORDING_DISABLED);
return true;
}
const auto required_consent =
GetConsentType(GetSourceIdType(entry->source_id));
if (!recording_enabled(required_consent)) {
if (required_consent == UkmConsentType::MSBB) {
RecordDroppedEntry(entry->event_hash,
DroppedDataReason::MSBB_CONSENT_DISABLED);
} else {
RecordDroppedEntry(entry->event_hash,
DroppedDataReason::APPS_CONSENT_DISABLED);
}
return true;
}
if (!ApplyEntryFilter(entry)) {
RecordDroppedEntry(entry->event_hash,
DroppedDataReason::REJECTED_BY_FILTER);
return true;
}
return false;
}
bool UkmRecorderImpl::ApplyEntryFilter(mojom::UkmEntry* entry) {
base::flat_set<uint64_t> dropped_metric_hashes;
if (!entry_filter_)
return true;
bool keep_entry = entry_filter_->FilterEntry(entry, &dropped_metric_hashes);
for (auto metric : dropped_metric_hashes) {
recordings_.event_aggregations[entry->event_hash]
.metrics[metric]
.dropped_due_to_filter++;
}
if (!keep_entry) {
recordings_.event_aggregations[entry->event_hash].dropped_due_to_filter++;
return false;
}
return true;
}
int UkmRecorderImpl::PruneOldSources(size_t max_kept_sources,
const std::set<SourceId>& pruning_set) {
long num_prune_required = recordings_.sources.size() - max_kept_sources;
// In either case here, nothing to be done.
if (num_prune_required <= 0 || pruning_set.size() == 0)
return 0;
// We can prune everything, so let's do that directly.
if (static_cast<unsigned long>(num_prune_required) >= pruning_set.size()) {
base::TimeTicks pruned_sources_age = base::TimeTicks();
for (const auto& source_id : pruning_set) {
auto creation_time = recordings_.sources[source_id]->creation_time();
if (creation_time > pruned_sources_age)
pruned_sources_age = creation_time;
recordings_.sources.erase(source_id);
}
base::TimeDelta age_delta = base::TimeTicks::Now() - pruned_sources_age;
// Technically the age we return here isn't quite right, this is the age of
// the newest element of the pruned set, while we actually want the age of
// the last one kept. However it's very unlikely to make a difference in
// practice as if all are pruned here, it is very likely we'll need to prune
// from the seen set next. Since it would be logically quite a bit more
// complex to get this exactly right, it's ok for this to be very slightly
// off in an edge case just to keep complexity down.
return age_delta.InSeconds();
}
// In this case we cannot prune everything, so we will select only the oldest
// sources to prune.
// Build a list of timestamp->source pairs for all source we consider for
// pruning.
std::vector<std::pair<base::TimeTicks, SourceId>> timestamp_source_id_pairs;
for (const auto& source_id : pruning_set) {
auto creation_time = recordings_.sources[source_id]->creation_time();
timestamp_source_id_pairs.emplace_back(
std::make_pair(creation_time, source_id));
}
// Partially sort so that the last |num_prune_required| elements are the
// newest.
std::nth_element(timestamp_source_id_pairs.begin(),
timestamp_source_id_pairs.end() - num_prune_required,
timestamp_source_id_pairs.end());
// Actually prune |num_prune_required| sources.
for (int i = 0; i < num_prune_required; i++) {
auto source_id = timestamp_source_id_pairs[i].second;
recordings_.sources.erase(source_id);
}
base::TimeDelta pruned_sources_age =
base::TimeTicks::Now() -
(timestamp_source_id_pairs.end() - (num_prune_required + 1))->first;
return pruned_sources_age.InSeconds();
}
void UkmRecorderImpl::UpdateSourceURL(SourceId source_id,
const GURL& unsanitized_url) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(GetSourceIdType(source_id) != SourceIdType::NO_URL_ID);
if (base::Contains(recordings_.sources, source_id))
return;
const GURL sanitized_url = SanitizeURL(unsanitized_url);
// If UKM recording is disabled due to |recording_enabled|,
// still notify observers as they might be interested in it.
NotifyAllObservers(&UkmRecorderObserver::OnUpdateSourceURL, source_id,
std::vector<GURL>{sanitized_url});
if (!ShouldRecordUrl(source_id, sanitized_url)) {
DVLOG(DebuggingLogLevel::Frequent)
<< "URL not recorded: [source_id=" << source_id
<< " sanitized_url=" << sanitized_url << "]";
return;
}
RecordSource(std::make_unique<UkmSource>(source_id, sanitized_url));
}
void UkmRecorderImpl::UpdateAppURL(SourceId source_id,
const GURL& url,
const AppType app_type) {
if (app_type != AppType::kPWA && !recording_enabled(ukm::EXTENSIONS)) {
RecordDroppedSource(DroppedDataReason::EXTENSION_URLS_DISABLED);
// If UKM recording is disabled due to |recording_enabled|,
// still notify observers as they might be interested in it.
NotifyAllObservers(&UkmRecorderObserver::OnUpdateSourceURL, source_id,
std::vector<GURL>{SanitizeURL(url)});
return;
}
UpdateSourceURL(source_id, url);
}
void UkmRecorderImpl::RecordNavigation(
SourceId source_id,
const UkmSource::NavigationData& unsanitized_navigation_data) {
DCHECK(GetSourceIdType(source_id) == SourceIdType::NAVIGATION_ID);
DCHECK(!base::Contains(recordings_.sources, source_id));
// TODO(csharrison): Consider changing this behavior so the Source isn't even
// recorded at all if the final URL in |unsanitized_navigation_data| should
// not be recorded.
std::vector<GURL> urls;
// Observers should be notified of the source URLs even if UKM logs do not
// record the URL.
std::vector<GURL> observation_urls;
for (const GURL& url : unsanitized_navigation_data.urls) {
const GURL sanitized_url = SanitizeURL(url);
observation_urls.push_back(sanitized_url);
if (ShouldRecordUrl(source_id, sanitized_url)) {
urls.push_back(std::move(sanitized_url));
}
}
// If UKM recording is disabled due to |recording_enabled|,
// still notify observers as they might be interested in it.
NotifyAllObservers(&UkmRecorderObserver::OnUpdateSourceURL, source_id,
observation_urls);
// None of the URLs passed the ShouldRecordUrl check, so do not create a new
// Source for them.
if (urls.empty())
return;
UkmSource::NavigationData sanitized_navigation_data =
unsanitized_navigation_data.CopyWithSanitizedUrls(urls);
RecordSource(
std::make_unique<UkmSource>(source_id, sanitized_navigation_data));
}
// static:
UkmConsentType UkmRecorderImpl::GetConsentType(SourceIdType type) {
switch (type) {
case SourceIdType::APP_ID:
return UkmConsentType::APPS;
case SourceIdType::DEFAULT:
case SourceIdType::NAVIGATION_ID:
case SourceIdType::HISTORY_ID:
case SourceIdType::WEBAPK_ID:
case SourceIdType::PAYMENT_APP_ID:
case SourceIdType::DEPRECATED_DESKTOP_WEB_APP_ID:
case SourceIdType::WORKER_ID:
case SourceIdType::NO_URL_ID:
case SourceIdType::REDIRECT_ID:
case SourceIdType::WEB_IDENTITY_ID:
case SourceIdType::CHROMEOS_WEBSITE_ID:
case SourceIdType::EXTENSION_ID:
case SourceIdType::NOTIFICATION_ID:
case SourceIdType::CDM_ID:
return UkmConsentType::MSBB;
}
return UkmConsentType::MSBB;
}
UkmRecorderImpl::EventAggregate::EventAggregate() = default;
UkmRecorderImpl::EventAggregate::~EventAggregate() = default;
void UkmRecorderImpl::EventAggregate::FillProto(
Aggregate* proto_aggregate) const {
proto_aggregate->set_source_id(0); // Across all sources.
proto_aggregate->set_total_count(total_count);
proto_aggregate->set_dropped_due_to_limits(dropped_due_to_limits);
proto_aggregate->set_dropped_due_to_sampling(dropped_due_to_sampling);
proto_aggregate->set_dropped_due_to_filter(dropped_due_to_filter);
proto_aggregate->set_dropped_due_to_unconfigured(dropped_due_to_unconfigured);
for (const auto& metric_and_aggregate : metrics) {
const MetricAggregate& aggregate = metric_and_aggregate.second;
Aggregate::Metric* proto_metric = proto_aggregate->add_metrics();
proto_metric->set_metric_hash(metric_and_aggregate.first);
proto_metric->set_value_sum(aggregate.value_sum);
proto_metric->set_value_square_sum(aggregate.value_square_sum);
if (aggregate.total_count != total_count) {
proto_metric->set_total_count(aggregate.total_count);
}
if (aggregate.dropped_due_to_limits != dropped_due_to_limits) {
proto_metric->set_dropped_due_to_limits(aggregate.dropped_due_to_limits);
}
if (aggregate.dropped_due_to_sampling != dropped_due_to_sampling) {
proto_metric->set_dropped_due_to_sampling(
aggregate.dropped_due_to_sampling);
}
if (aggregate.dropped_due_to_filter != dropped_due_to_filter) {
proto_metric->set_dropped_due_to_filter(aggregate.dropped_due_to_filter);
}
if (aggregate.dropped_due_to_unconfigured != dropped_due_to_unconfigured) {
proto_metric->set_dropped_due_to_unconfigured(
aggregate.dropped_due_to_unconfigured);
}
}
}
void UkmRecorderImpl::MaybeMarkForDeletion(SourceId source_id) {
SourceIdType type = GetSourceIdType(source_id);
switch (type) {
case ukm::SourceIdObj::Type::HISTORY_ID:
case ukm::SourceIdObj::Type::WEBAPK_ID:
case ukm::SourceIdObj::Type::PAYMENT_APP_ID:
case ukm::SourceIdObj::Type::NO_URL_ID:
case ukm::SourceIdObj::Type::WEB_IDENTITY_ID:
case ukm::SourceIdObj::Type::CHROMEOS_WEBSITE_ID:
case ukm::SourceIdObj::Type::EXTENSION_ID:
case ukm::SourceIdObj::Type::NOTIFICATION_ID:
case ukm::SourceIdObj::Type::CDM_ID: {
// Don't keep sources of these types after current report because their
// entries are logged only at source creation time.
MarkSourceForDeletion(source_id);
break;
}
case ukm::SourceIdObj::Type::DEFAULT:
case ukm::SourceIdObj::Type::APP_ID:
case ukm::SourceIdObj::Type::DEPRECATED_DESKTOP_WEB_APP_ID:
case ukm::SourceIdObj::Type::NAVIGATION_ID:
case ukm::SourceIdObj::Type::WORKER_ID:
case ukm::SourceIdObj::Type::REDIRECT_ID:
break;
}
}
// Extension URLs need to be specifically enabled and the extension synced.
bool UkmRecorderImpl::ShouldDropExtensionUrl(
const GURL& sanitized_extension_url,
bool has_recorded_reason) const {
DCHECK_EQ(sanitized_extension_url.GetWithEmptyPath(),
sanitized_extension_url);
// If the URL scheme is not extension scheme, drop the record with
// `EXTENSION_URL_INVALID`.
if (!sanitized_extension_url.SchemeIs(kExtensionScheme)) {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::EXTENSION_URL_INVALID);
return true;
}
// If the recording is not enabled for extensions, drop the record with
// `EXTENSION_URLS_DISABLED`.
if (!recording_enabled(ukm::EXTENSIONS)) {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::EXTENSION_URLS_DISABLED);
return true;
}
// If the extension is not a webstore extension, drop the record with
// `EXTENSION_NOT_SYNCED`.
if (!is_webstore_extension_callback_ ||
!is_webstore_extension_callback_.Run(
sanitized_extension_url.host_piece())) {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::EXTENSION_NOT_SYNCED);
return true;
}
return false;
}
bool UkmRecorderImpl::ShouldRecordUrl(SourceId source_id,
const GURL& sanitized_url) const {
bool has_recorded_reason = false;
if (!recording_enabled()) {
RecordDroppedSource(DroppedDataReason::RECORDING_DISABLED);
return false;
}
const auto required_consent = GetConsentType(GetSourceIdType(source_id));
if (!recording_enabled(required_consent)) {
if (required_consent == UkmConsentType::MSBB) {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::MSBB_CONSENT_DISABLED);
} else {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::APPS_CONSENT_DISABLED);
}
return false;
}
if (recordings_.sources.size() >= max_sources_) {
RecordDroppedSource(has_recorded_reason, DroppedDataReason::MAX_HIT);
return false;
}
if (sanitized_url.is_empty()) {
RecordDroppedSource(has_recorded_reason, DroppedDataReason::EMPTY_URL);
return false;
}
if (!HasSupportedScheme(sanitized_url)) {
RecordDroppedSource(has_recorded_reason,
DroppedDataReason::UNSUPPORTED_URL_SCHEME);
DVLOG(DebuggingLogLevel::Medium)
<< "Dropped Unsupported UKM URL:" << source_id << ":"
<< sanitized_url.spec();
return false;
}
if (GetSourceIdType(source_id) == SourceIdType::EXTENSION_ID) {
if (ShouldDropExtensionUrl(sanitized_url, has_recorded_reason)) {
return false;
}
}
// Ideally, this check should be covered by the above block for
// `EXTENSION_ID` type. For backward compatibility we still keep it here so
// the UKMs recorded without `EXTENSION_ID` type are also properly checked.
// TODO(crbug.com/40248219): clean up all the UKM metrics with
// extension URL to use the dedicated source ID type, and remove this check.
if (sanitized_url.SchemeIs(kExtensionScheme)) {
if (ShouldDropExtensionUrl(sanitized_url, has_recorded_reason)) {
return false;
}
}
return true;
}
void UkmRecorderImpl::RecordSource(std::unique_ptr<UkmSource> source) {
SourceId source_id = source->id();
if (!recording_enabled()) {
DVLOG(DebuggingLogLevel::Frequent)
<< "RecordSource skipped due to disabled recording.";
return;
}
const auto required_consent = GetConsentType(GetSourceIdType(source_id));
if (!recording_enabled(required_consent)) {
DVLOG(DebuggingLogLevel::Frequent)
<< "RecordSource skipped due to missing UkmConsentType="
<< required_consent << "]";
return;
}
DVLOG(DebuggingLogLevel::Medium) << "RecordSource [source_id=" << source_id
<< " url=" << source->url() << "]";
if (GetSourceIdType(source_id) == SourceIdType::NAVIGATION_ID)
recordings_.source_counts.navigation_sources++;
recordings_.source_counts.observed++;
recordings_.sources.emplace(source_id, std::move(source));
}
void UkmRecorderImpl::AddEntry(mojom::UkmEntryPtr entry) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!HasUnknownMetrics(decode_map_, *entry));
NotifyObserversWithNewEntry(*entry);
if (ShouldDropEntry(entry.get()))
return;
EventAggregate& event_aggregate =
recordings_.event_aggregations[entry->event_hash];
event_aggregate.total_count++;
for (const auto& metric : entry->metrics) {
MetricAggregate& aggregate = event_aggregate.metrics[metric.first];
double value = metric.second;
aggregate.total_count++;
aggregate.value_sum += value;
aggregate.value_square_sum += value * value;
}
if (!IsSamplingConfigured()) {
RecordDroppedEntry(entry->event_hash,
DroppedDataReason::SAMPLING_UNCONFIGURED);
event_aggregate.dropped_due_to_unconfigured++;
for (auto& metric : entry->metrics)
event_aggregate.metrics[metric.first].dropped_due_to_unconfigured++;
return;
}
if (default_sampling_rate_ < 0) {
LoadExperimentSamplingInfo();
}
bool sampled_in = IsSampledIn(entry->source_id, entry->event_hash);
if (!sampled_in) {
RecordDroppedEntry(entry->event_hash, DroppedDataReason::SAMPLED_OUT);
event_aggregate.dropped_due_to_sampling++;
for (auto& metric : entry->metrics)
event_aggregate.metrics[metric.first].dropped_due_to_sampling++;
return;
}
if (recordings_.entries.size() >= max_entries_) {
RecordDroppedEntry(entry->event_hash, DroppedDataReason::MAX_HIT);
event_aggregate.dropped_due_to_limits++;
for (auto& metric : entry->metrics)
event_aggregate.metrics[metric.first].dropped_due_to_limits++;
return;
}
// Log a corresponding entry to UMA so we get a per-event breakdown of UKM
// entry counts.
// Truncate the unsigned 64-bit hash to 31 bits, to
// make it a suitable histogram sample.
UMA_HISTOGRAM_SPARSE("UKM.Entries.Recorded.ByEntryHash",
entry->event_hash & 0x7fffffff);
// Translate to human-readable event name for console logging.
// A DCHECK above ensures that this does not result in a nullptr dereference.
DVLOG(DebuggingLogLevel::Medium)
<< "AddEntry recorded: [source_id=" << entry->source_id
<< " event_hash=" << entry->event_hash
<< " event_name=" << decode_map_.find(entry->event_hash)->second.name
<< "]";
recordings_.entries.push_back(std::move(entry));
}
void UkmRecorderImpl::RecordWebDXFeatures(SourceId source_id,
const std::set<int32_t>& features,
size_t max_feature_value) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Sanity check that we don't have an unreasonably large max feature
// value. This isn't expected to grow much past 2000 for a long time.
DCHECK_LT(max_feature_value, 3000u);
if (!recording_enabled()) {
RecordDroppedWebDXFeaturesSet(DroppedDataReason::RECORDING_DISABLED);
return;
}
const auto required_consent = GetConsentType(GetSourceIdType(source_id));
if (!recording_enabled(required_consent)) {
if (required_consent == UkmConsentType::MSBB) {
RecordDroppedWebDXFeaturesSet(DroppedDataReason::MSBB_CONSENT_DISABLED);
} else if (required_consent == UkmConsentType::APPS) {
RecordDroppedWebDXFeaturesSet(DroppedDataReason::APPS_CONSENT_DISABLED);
}
return;
}
if (!IsSamplingConfigured()) {
RecordDroppedWebDXFeaturesSet(DroppedDataReason::SAMPLING_UNCONFIGURED);
return;
}
if (default_sampling_rate_ < 0) {
LoadExperimentSamplingInfo();
}
// Note: the `event_id` passed is 0. The actual number doesn't really matter,
// what matters is that we either record all features or no features at all
// for a given source.
if (!IsSampledIn(source_id, /*event_id=*/0, webdx_features_sampling_)) {
RecordDroppedWebDXFeaturesSet(DroppedDataReason::SAMPLED_OUT);
return;
}
// Create a bitset for `source_id` if there is not already one. The size of
// the bitset is max_feature_value + 1 since 0 is included.
auto result = recordings_.webdx_features.try_emplace(
source_id,
/*set_size=*/max_feature_value + 1);
BitSet& features_set = result.first->second;
CHECK_EQ(features_set.set_size(), max_feature_value + 1);
for (const auto& feature : features) {
features_set.Add(feature);
}
DVLOG(DebuggingLogLevel::Medium)
<< "RecordWebDXFeatures: [source_id=" << source_id << " features={"
<< WebDXFeaturesToStringForDebug(features) << "}]";
}
void UkmRecorderImpl::LoadExperimentSamplingInfo() {
// This should be called only if a sampling rate hasn't been loaded.
DVLOG(DebuggingLogLevel::Rare) << "LoadExperimentSamplingInfo";
DCHECK_LT(default_sampling_rate_, 0);
// Default rate must be >= 0 to indicate that load is complete.
default_sampling_rate_ = 1;
// If we don't have the feature, no parameters to load.
if (!base::FeatureList::IsEnabled(kUkmSamplingRateFeature)) {
DVLOG(DebuggingLogLevel::Rare)
<< "Missing feature kUkmSamplingRateFeature. Events will be "
"dropped.";
return;
}
// Check the parameters for sampling controls.
std::map<std::string, std::string> params;
if (base::GetFieldTrialParamsByFeature(kUkmSamplingRateFeature, ¶ms)) {
LoadExperimentSamplingParams(params);
}
}
void UkmRecorderImpl::LoadExperimentSamplingParams(
const std::map<std::string, std::string>& params) {
for (const auto& kv : params) {
const std::string& event_name = kv.first;
const std::string& event_param = kv.second;
if (event_name.empty()) {
continue;
}
int sampling_rate = -1;
// Special string value used in the experiment configs for the default
// global configuration.
if (event_name == "_default_sampling") {
// Sampling rates must be non-negative integers.
if (base::StringToInt(event_param, &sampling_rate) &&
sampling_rate >= 0) {
default_sampling_rate_ = sampling_rate;
}
continue;
}
// Special string value used in the experiment configs for webdx features
// sampling.
if (event_name == kWebFeatureSamplingKeyword) {
// Sampling rates must be non-negative integers.
if (base::StringToInt(event_param, &sampling_rate) &&
sampling_rate >= 0) {
webdx_features_sampling_ = sampling_rate;
}
continue;
}
// Anything else is an event name.
auto event_hash = base::HashMetricName(event_name);
// TODO(b/298075109#comment9): decouple numerical parameters and event
// groupings.
if (base::StringToInt(event_param, &sampling_rate)) {
// If the parameter parses as a non-negative integer N, it's the sampling
// rate meaning that the event should be sampled 1-in-N.
if (sampling_rate >= 0) {
event_sampling_rates_[event_hash] = sampling_rate;
}
} else {
// If the parameter of an event E is a string, then it's the
// name of some other event F. This means that event E should be sampled
// at the same rate, and sampled in and out together with event F at the
// page load level.
event_sampling_master_[event_hash] = base::HashMetricName(event_param);
}
}
}
bool UkmRecorderImpl::IsSampledIn(int64_t source_id, uint64_t event_id) {
// Determine the sampling rate. It's one of:
// - the default
// - an explicit sampling rate
// - a group sampling rate
int sampling_rate = default_sampling_rate_;
uint64_t sampling_hash = event_id;
auto master_found = event_sampling_master_.find(sampling_hash);
if (master_found != event_sampling_master_.end()) {
sampling_hash = master_found->second;
}
auto rate_found = event_sampling_rates_.find(sampling_hash);
if (rate_found != event_sampling_rates_.end()) {
sampling_rate = rate_found->second;
}
return IsSampledIn(source_id, sampling_hash, sampling_rate);
}
bool UkmRecorderImpl::IsSampledIn(int64_t source_id,
uint64_t event_id,
int sampling_rate) {
// A sampling rate of 0 is "never"; everything else is 1-in-N but calculated
// deterministically based on a seed, the source-id, and the event-id. Skip
// the calculation, though, if N==1 because it will always be true. A negative
// rate means "unset"; treat it like "never".
if (sampling_rate <= 0)
return false;
if (sampling_rate == 1)
return true;
// Mutate the "sampling seed" number in a predictable manner based on the
// source and event IDs. This makes the result of this function be always
// the same for the same input parameters (since the seed is fixed during
// construction of this object) which is important for proper sampling
// behavior. CRC32 is fast and statistically random enough for these
// purposes.
uint32_t sampled_num = sampling_seed_;
sampled_num = base::Crc32(sampled_num, base::byte_span_from_ref(source_id));
sampled_num = base::Crc32(sampled_num, base::byte_span_from_ref(event_id));
return sampled_num % sampling_rate == 0;
}
void UkmRecorderImpl::InitDecodeMap() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
decode_map_ = builders::CreateDecodeMap();
}
void UkmRecorderImpl::NotifyObserversWithNewEntry(
const mojom::UkmEntry& entry) {
TRACE_EVENT("toplevel", "UkmRecorderImpl::NotifyObserversWithNewEntry");
base::AutoLock auto_lock(lock_);
for (const auto& observer : observers_) {
if (observer.first.contains(entry.event_hash)) {
TRACE_EVENT(
"toplevel",
"UkmRecorderImpl::NotifyObserversWithNewEntry NotifyObserver");
mojom::UkmEntryPtr cloned = entry.Clone();
observer.second->Notify(FROM_HERE, &UkmRecorderObserver::OnEntryAdded,
base::Passed(&cloned));
}
}
}
template <typename Method, typename... Params>
void UkmRecorderImpl::NotifyAllObservers(Method m, const Params&... params) {
base::AutoLock auto_lock(lock_);
for (const auto& observer : observers_) {
observer.second->Notify(FROM_HERE, m, params...);
}
}
std::set<uint64_t> UkmRecorderImpl::GetObservedEventHashes() {
base::AutoLock lock(lock_);
std::set<uint64_t> hashes;
for (const auto& observer : observers_) {
hashes.insert(observer.first.begin(), observer.first.end());
}
return hashes;
}
} // namespace ukm
|