OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/metrics/call_stack_profile_metrics_provider.h" | 5 #include "components/metrics/call_stack_profile_metrics_provider.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
11 #include <cstring> | 11 #include <cstring> |
12 #include <map> | 12 #include <map> |
13 #include <string> | 13 #include <string> |
14 #include <utility> | 14 #include <utility> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/bind.h" | 17 #include "base/bind.h" |
18 #include "base/location.h" | 18 #include "base/location.h" |
19 #include "base/logging.h" | 19 #include "base/logging.h" |
20 #include "base/macros.h" | 20 #include "base/macros.h" |
21 #include "base/memory/singleton.h" | 21 #include "base/memory/singleton.h" |
22 #include "base/metrics/field_trial.h" | 22 #include "base/metrics/field_trial_params.h" |
23 #include "base/metrics/metrics_hashes.h" | 23 #include "base/metrics/metrics_hashes.h" |
24 #include "base/profiler/stack_sampling_profiler.h" | 24 #include "base/profiler/stack_sampling_profiler.h" |
25 #include "base/single_thread_task_runner.h" | 25 #include "base/single_thread_task_runner.h" |
26 #include "base/synchronization/lock.h" | 26 #include "base/synchronization/lock.h" |
27 #include "base/threading/thread_task_runner_handle.h" | 27 #include "base/threading/thread_task_runner_handle.h" |
28 #include "base/time/time.h" | 28 #include "base/time/time.h" |
29 #include "components/metrics/proto/chrome_user_metrics_extension.pb.h" | 29 #include "components/metrics/proto/chrome_user_metrics_extension.pb.h" |
30 | 30 |
31 using base::StackSamplingProfiler; | 31 using base::StackSamplingProfiler; |
32 | 32 |
33 namespace metrics { | 33 namespace metrics { |
34 | 34 |
35 namespace { | 35 namespace { |
36 | 36 |
37 // Interval for periodic (post-startup) sampling, when enabled. | |
38 constexpr base::TimeDelta kPeriodicSamplingInterval = | |
39 base::TimeDelta::FromSeconds(1); | |
40 | |
37 // Provide a mapping from the C++ "enum" definition of various process mile- | 41 // Provide a mapping from the C++ "enum" definition of various process mile- |
38 // stones to the equivalent protobuf "enum" definition. This table-lookup | 42 // stones to the equivalent protobuf "enum" definition. This table-lookup |
39 // conversion allows for the implementation to evolve and still be compatible | 43 // conversion allows for the implementation to evolve and still be compatible |
40 // with the protobuf -- even if there are ever more than 32 defined proto | 44 // with the protobuf -- even if there are ever more than 32 defined proto |
41 // values, though never more than 32 could be in-use in a given C++ version | 45 // values, though never more than 32 could be in-use in a given C++ version |
42 // of the code. | 46 // of the code. |
43 const ProcessPhase | 47 const ProcessPhase |
44 kProtoPhases[CallStackProfileMetricsProvider::MILESTONES_MAX_VALUE] = { | 48 kProtoPhases[CallStackProfileMetricsProvider::MILESTONES_MAX_VALUE] = { |
45 ProcessPhase::MAIN_LOOP_START, | 49 ProcessPhase::MAIN_LOOP_START, |
46 ProcessPhase::MAIN_NAVIGATION_START, | 50 ProcessPhase::MAIN_NAVIGATION_START, |
47 ProcessPhase::MAIN_NAVIGATION_FINISHED, | 51 ProcessPhase::MAIN_NAVIGATION_FINISHED, |
48 ProcessPhase::FIRST_NONEMPTY_PAINT, | 52 ProcessPhase::FIRST_NONEMPTY_PAINT, |
49 | 53 |
50 ProcessPhase::SHUTDOWN_START, | 54 ProcessPhase::SHUTDOWN_START, |
51 }; | 55 }; |
52 | 56 |
53 // ProfilesState -------------------------------------------------------------- | 57 // ProfilesState -------------------------------------------------------------- |
54 | 58 |
55 // A set of profiles and the CallStackProfileMetricsProvider state associated | 59 // A set of profiles and the CallStackProfileMetricsProvider state associated |
56 // with them. | 60 // with them. |
57 struct ProfilesState { | 61 struct ProfilesState { |
58 ProfilesState(const CallStackProfileParams& params, | 62 ProfilesState(const CallStackProfileParams& params, |
59 StackSamplingProfiler::CallStackProfiles profiles, | 63 StackSamplingProfiler::CallStackProfiles profiles); |
60 base::TimeTicks start_timestamp); | |
61 ProfilesState(ProfilesState&&); | 64 ProfilesState(ProfilesState&&); |
62 ProfilesState& operator=(ProfilesState&&); | 65 ProfilesState& operator=(ProfilesState&&); |
63 | 66 |
64 // The metrics-related parameters provided to | 67 // The metrics-related parameters provided to |
65 // CallStackProfileMetricsProvider::GetProfilerCallback(). | 68 // CallStackProfileMetricsProvider::GetProfilerCallback(). |
66 CallStackProfileParams params; | 69 CallStackProfileParams params; |
67 | 70 |
68 // The call stack profiles collected by the profiler. | 71 // The call stack profiles collected by the profiler. |
69 StackSamplingProfiler::CallStackProfiles profiles; | 72 StackSamplingProfiler::CallStackProfiles profiles; |
70 | 73 |
71 // The time at which the CallStackProfileMetricsProvider became aware of the | |
72 // request for profiling. In particular, this is when callback was requested | |
73 // via CallStackProfileMetricsProvider::GetProfilerCallback(). Used to | |
74 // determine if collection was disabled during the collection of the profile. | |
75 base::TimeTicks start_timestamp; | |
76 | |
77 private: | 74 private: |
78 DISALLOW_COPY_AND_ASSIGN(ProfilesState); | 75 DISALLOW_COPY_AND_ASSIGN(ProfilesState); |
79 }; | 76 }; |
80 | 77 |
81 ProfilesState::ProfilesState(const CallStackProfileParams& params, | 78 ProfilesState::ProfilesState(const CallStackProfileParams& params, |
82 StackSamplingProfiler::CallStackProfiles profiles, | 79 StackSamplingProfiler::CallStackProfiles profiles) |
83 base::TimeTicks start_timestamp) | 80 : params(params), profiles(std::move(profiles)) {} |
84 : params(params), | |
85 profiles(std::move(profiles)), | |
86 start_timestamp(start_timestamp) {} | |
87 | 81 |
88 ProfilesState::ProfilesState(ProfilesState&&) = default; | 82 ProfilesState::ProfilesState(ProfilesState&&) = default; |
89 | 83 |
90 // Some versions of GCC need this for push_back to work with std::move. | 84 // Some versions of GCC need this for push_back to work with std::move. |
91 ProfilesState& ProfilesState::operator=(ProfilesState&&) = default; | 85 ProfilesState& ProfilesState::operator=(ProfilesState&&) = default; |
92 | 86 |
93 // PendingProfiles ------------------------------------------------------------ | 87 // PendingProfiles ------------------------------------------------------------ |
94 | 88 |
95 // Singleton class responsible for retaining profiles received via the callback | 89 // Singleton class responsible for retaining profiles received via the callback |
96 // created by CallStackProfileMetricsProvider::GetProfilerCallback(). These are | 90 // created by CallStackProfileMetricsProvider::GetProfilerCallback(). These are |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 } | 167 } |
174 | 168 |
175 void PendingProfiles::CollectProfilesIfCollectionEnabled( | 169 void PendingProfiles::CollectProfilesIfCollectionEnabled( |
176 ProfilesState profiles) { | 170 ProfilesState profiles) { |
177 base::AutoLock scoped_lock(lock_); | 171 base::AutoLock scoped_lock(lock_); |
178 | 172 |
179 // Only collect if collection is not disabled and hasn't been disabled | 173 // Only collect if collection is not disabled and hasn't been disabled |
180 // since the start of collection for this profile. | 174 // since the start of collection for this profile. |
181 if (!collection_enabled_ || | 175 if (!collection_enabled_ || |
182 (!last_collection_disable_time_.is_null() && | 176 (!last_collection_disable_time_.is_null() && |
183 last_collection_disable_time_ >= profiles.start_timestamp)) { | 177 last_collection_disable_time_ >= profiles.params.start_timestamp)) { |
184 return; | 178 return; |
185 } | 179 } |
186 | 180 |
187 profiles_.push_back(std::move(profiles)); | 181 profiles_.push_back(std::move(profiles)); |
188 } | 182 } |
189 | 183 |
190 void PendingProfiles::ResetToDefaultStateForTesting() { | 184 void PendingProfiles::ResetToDefaultStateForTesting() { |
191 base::AutoLock scoped_lock(lock_); | 185 base::AutoLock scoped_lock(lock_); |
192 | 186 |
193 collection_enabled_ = true; | 187 collection_enabled_ = true; |
194 last_collection_disable_time_ = base::TimeTicks(); | 188 last_collection_disable_time_ = base::TimeTicks(); |
195 profiles_.clear(); | 189 profiles_.clear(); |
196 } | 190 } |
197 | 191 |
198 // |collection_enabled_| is initialized to true to collect any profiles that are | 192 // |collection_enabled_| is initialized to true to collect any profiles that are |
199 // generated prior to creation of the CallStackProfileMetricsProvider. The | 193 // generated prior to creation of the CallStackProfileMetricsProvider. The |
200 // ultimate disposition of these pre-creation collected profiles will be | 194 // ultimate disposition of these pre-creation collected profiles will be |
201 // determined by the initial recording state provided to | 195 // determined by the initial recording state provided to |
202 // CallStackProfileMetricsProvider. | 196 // CallStackProfileMetricsProvider. |
203 PendingProfiles::PendingProfiles() : collection_enabled_(true) {} | 197 PendingProfiles::PendingProfiles() : collection_enabled_(true) {} |
204 | 198 |
205 PendingProfiles::~PendingProfiles() {} | 199 PendingProfiles::~PendingProfiles() {} |
206 | 200 |
207 // Functions to process completed profiles ------------------------------------ | 201 // Functions to process completed profiles ------------------------------------ |
208 | 202 |
209 // Will be invoked on either the main thread or the profiler's thread. Provides | 203 // Will be invoked on either the main thread or the profiler's thread. Provides |
210 // the profiles to PendingProfiles to append, if the collecting state allows. | 204 // the profiles to PendingProfiles to append, if the collecting state allows. |
211 void ReceiveCompletedProfilesImpl( | 205 base::Optional<StackSamplingProfiler::SamplingParams> |
212 const CallStackProfileParams& params, | 206 ReceiveCompletedProfilesImpl( |
213 base::TimeTicks start_timestamp, | 207 CallStackProfileParams* params, |
Mike Wittman
2017/07/06 22:14:02
We can revert to passing this by const reference a
Alexei Svitkine (slow)
2017/07/07 16:18:48
No, these are the CallStackProfileParams - which w
Mike Wittman
2017/07/07 18:15:17
That's true. I think we could avoid this modificat
| |
214 StackSamplingProfiler::CallStackProfiles profiles) { | 208 StackSamplingProfiler::CallStackProfiles profiles) { |
215 PendingProfiles::GetInstance()->CollectProfilesIfCollectionEnabled( | 209 PendingProfiles::GetInstance()->CollectProfilesIfCollectionEnabled( |
216 ProfilesState(params, std::move(profiles), start_timestamp)); | 210 ProfilesState(*params, std::move(profiles))); |
211 | |
212 // Now, schedule periodic sampling every 1s, if enabled by trial. | |
213 if (CallStackProfileMetricsProvider::IsPeriodicSamplingEnabled() && | |
Mike Wittman
2017/07/06 22:14:02
If we're not supporting non-browser processes in t
Alexei Svitkine (slow)
2017/07/07 16:18:48
Er, that's not correct. Browser process uses CallS
Mike Wittman
2017/07/07 18:15:17
Right. Apparently I shouldn't be relying on my mem
| |
214 params->process == CallStackProfileParams::BROWSER_PROCESS && | |
215 params->thread == CallStackProfileParams::UI_THREAD) { | |
216 params->trigger = metrics::CallStackProfileParams::PERIODIC_COLLECTION; | |
217 params->start_timestamp = base::TimeTicks::Now(); | |
218 | |
219 StackSamplingProfiler::SamplingParams sampling_params; | |
220 sampling_params.initial_delay = kPeriodicSamplingInterval; | |
221 sampling_params.bursts = 1; | |
222 sampling_params.samples_per_burst = 1; | |
223 // Below are unused: | |
224 sampling_params.burst_interval = base::TimeDelta::FromMilliseconds(0); | |
225 sampling_params.sampling_interval = base::TimeDelta::FromMilliseconds(0); | |
226 return sampling_params; | |
227 } | |
228 return base::Optional<StackSamplingProfiler::SamplingParams>(); | |
217 } | 229 } |
218 | 230 |
219 // Invoked on an arbitrary thread. Ignores the provided profiles. | 231 // Invoked on an arbitrary thread. Ignores the provided profiles. |
220 void IgnoreCompletedProfiles( | 232 base::Optional<StackSamplingProfiler::SamplingParams> IgnoreCompletedProfiles( |
221 StackSamplingProfiler::CallStackProfiles profiles) {} | 233 StackSamplingProfiler::CallStackProfiles profiles) { |
234 return base::Optional<StackSamplingProfiler::SamplingParams>(); | |
235 } | |
222 | 236 |
223 // Functions to encode protobufs ---------------------------------------------- | 237 // Functions to encode protobufs ---------------------------------------------- |
224 | 238 |
225 // The protobuf expects the MD5 checksum prefix of the module name. | 239 // The protobuf expects the MD5 checksum prefix of the module name. |
226 uint64_t HashModuleFilename(const base::FilePath& filename) { | 240 uint64_t HashModuleFilename(const base::FilePath& filename) { |
227 const base::FilePath::StringType basename = filename.BaseName().value(); | 241 const base::FilePath::StringType basename = filename.BaseName().value(); |
228 // Copy the bytes in basename into a string buffer. | 242 // Copy the bytes in basename into a string buffer. |
229 size_t basename_length_in_bytes = | 243 size_t basename_length_in_bytes = |
230 basename.size() * sizeof(base::FilePath::CharType); | 244 basename.size() * sizeof(base::FilePath::CharType); |
231 std::string name_bytes(basename_length_in_bytes, '\0'); | 245 std::string name_bytes(basename_length_in_bytes, '\0'); |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
273 sample_proto->add_process_phase(kProtoPhases[bit]); | 287 sample_proto->add_process_phase(kProtoPhases[bit]); |
274 new_milestones ^= flag; // Bit is set so XOR will clear it. | 288 new_milestones ^= flag; // Bit is set so XOR will clear it. |
275 } | 289 } |
276 } | 290 } |
277 } | 291 } |
278 | 292 |
279 // Transcode |profile| into |proto_profile|. | 293 // Transcode |profile| into |proto_profile|. |
280 void CopyProfileToProto( | 294 void CopyProfileToProto( |
281 const StackSamplingProfiler::CallStackProfile& profile, | 295 const StackSamplingProfiler::CallStackProfile& profile, |
282 CallStackProfileParams::SampleOrderingSpec ordering_spec, | 296 CallStackProfileParams::SampleOrderingSpec ordering_spec, |
297 int64_t sampling_period_ms, | |
283 CallStackProfile* proto_profile) { | 298 CallStackProfile* proto_profile) { |
284 if (profile.samples.empty()) | 299 if (profile.samples.empty()) |
285 return; | 300 return; |
286 | 301 |
287 const bool preserve_order = | 302 const bool preserve_order = |
288 (ordering_spec == CallStackProfileParams::PRESERVE_ORDER); | 303 (ordering_spec == CallStackProfileParams::PRESERVE_ORDER); |
289 | 304 |
290 std::map<StackSamplingProfiler::Sample, int> sample_index; | 305 std::map<StackSamplingProfiler::Sample, int> sample_index; |
291 uint32_t milestones = 0; | 306 uint32_t milestones = 0; |
292 for (auto it = profile.samples.begin(); it != profile.samples.end(); ++it) { | 307 for (auto it = profile.samples.begin(); it != profile.samples.end(); ++it) { |
(...skipping 30 matching lines...) Expand all Loading... | |
323 | 338 |
324 for (const StackSamplingProfiler::Module& module : profile.modules) { | 339 for (const StackSamplingProfiler::Module& module : profile.modules) { |
325 CallStackProfile::ModuleIdentifier* module_id = | 340 CallStackProfile::ModuleIdentifier* module_id = |
326 proto_profile->add_module_id(); | 341 proto_profile->add_module_id(); |
327 module_id->set_build_id(module.id); | 342 module_id->set_build_id(module.id); |
328 module_id->set_name_md5_prefix(HashModuleFilename(module.filename)); | 343 module_id->set_name_md5_prefix(HashModuleFilename(module.filename)); |
329 } | 344 } |
330 | 345 |
331 proto_profile->set_profile_duration_ms( | 346 proto_profile->set_profile_duration_ms( |
332 profile.profile_duration.InMilliseconds()); | 347 profile.profile_duration.InMilliseconds()); |
333 proto_profile->set_sampling_period_ms( | 348 proto_profile->set_sampling_period_ms(sampling_period_ms); |
334 profile.sampling_period.InMilliseconds()); | |
335 } | 349 } |
336 | 350 |
337 // Translates CallStackProfileParams's process to the corresponding | 351 // Translates CallStackProfileParams's process to the corresponding |
338 // execution context Process. | 352 // execution context Process. |
339 Process ToExecutionContextProcess(CallStackProfileParams::Process process) { | 353 Process ToExecutionContextProcess(CallStackProfileParams::Process process) { |
340 switch (process) { | 354 switch (process) { |
341 case CallStackProfileParams::UNKNOWN_PROCESS: | 355 case CallStackProfileParams::UNKNOWN_PROCESS: |
342 return UNKNOWN_PROCESS; | 356 return UNKNOWN_PROCESS; |
343 case CallStackProfileParams::BROWSER_PROCESS: | 357 case CallStackProfileParams::BROWSER_PROCESS: |
344 return BROWSER_PROCESS; | 358 return BROWSER_PROCESS; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
398 CallStackProfileParams::Trigger trigger) { | 412 CallStackProfileParams::Trigger trigger) { |
399 switch (trigger) { | 413 switch (trigger) { |
400 case CallStackProfileParams::UNKNOWN: | 414 case CallStackProfileParams::UNKNOWN: |
401 return SampledProfile::UNKNOWN_TRIGGER_EVENT; | 415 return SampledProfile::UNKNOWN_TRIGGER_EVENT; |
402 case CallStackProfileParams::PROCESS_STARTUP: | 416 case CallStackProfileParams::PROCESS_STARTUP: |
403 return SampledProfile::PROCESS_STARTUP; | 417 return SampledProfile::PROCESS_STARTUP; |
404 case CallStackProfileParams::JANKY_TASK: | 418 case CallStackProfileParams::JANKY_TASK: |
405 return SampledProfile::JANKY_TASK; | 419 return SampledProfile::JANKY_TASK; |
406 case CallStackProfileParams::THREAD_HUNG: | 420 case CallStackProfileParams::THREAD_HUNG: |
407 return SampledProfile::THREAD_HUNG; | 421 return SampledProfile::THREAD_HUNG; |
422 case CallStackProfileParams::PERIODIC_COLLECTION: | |
423 return SampledProfile::PERIODIC_COLLECTION; | |
Mike Wittman
2017/07/06 22:14:02
This CL seems to be missing the proto change to ad
Alexei Svitkine (slow)
2017/07/07 16:18:48
PERIODIC_COLLECTION is already in the proto - I gu
Mike Wittman
2017/07/07 18:15:17
Ah, didn't consider that this was reusing a CWP en
Alexei Svitkine (slow)
2017/07/07 19:04:14
Thanks for the heads up! Will look at doing that b
| |
408 } | 424 } |
409 NOTREACHED(); | 425 NOTREACHED(); |
410 return SampledProfile::UNKNOWN_TRIGGER_EVENT; | 426 return SampledProfile::UNKNOWN_TRIGGER_EVENT; |
411 } | 427 } |
412 | 428 |
413 } // namespace | 429 } // namespace |
414 | 430 |
415 // CallStackProfileMetricsProvider -------------------------------------------- | 431 // CallStackProfileMetricsProvider -------------------------------------------- |
416 | 432 |
417 const char CallStackProfileMetricsProvider::kFieldTrialName[] = | 433 const base::Feature CallStackProfileMetricsProvider::kEnableReporting = { |
418 "StackProfiling"; | 434 "SamplingProfilerReporting", base::FEATURE_DISABLED_BY_DEFAULT}; |
419 const char CallStackProfileMetricsProvider::kReportProfilesGroupName[] = | |
420 "Report profiles"; | |
421 | 435 |
422 CallStackProfileMetricsProvider::CallStackProfileMetricsProvider() { | 436 CallStackProfileMetricsProvider::CallStackProfileMetricsProvider() { |
423 } | 437 } |
424 | 438 |
425 CallStackProfileMetricsProvider::~CallStackProfileMetricsProvider() { | 439 CallStackProfileMetricsProvider::~CallStackProfileMetricsProvider() { |
426 } | 440 } |
427 | 441 |
428 // This function can be invoked on an abitrary thread. | 442 // This function can be invoked on an abitrary thread. |
429 StackSamplingProfiler::CompletedCallback | 443 StackSamplingProfiler::CompletedCallback |
430 CallStackProfileMetricsProvider::GetProfilerCallback( | 444 CallStackProfileMetricsProvider::GetProfilerCallback( |
431 const CallStackProfileParams& params) { | 445 CallStackProfileParams* params) { |
432 // Ignore the profiles if the collection is disabled. If the collection state | 446 // Ignore the profiles if the collection is disabled. If the collection state |
433 // changes while collecting, this will be detected by the callback and | 447 // changes while collecting, this will be detected by the callback and |
434 // profiles will be ignored at that point. | 448 // profiles will be ignored at that point. |
435 if (!PendingProfiles::GetInstance()->IsCollectionEnabled()) | 449 if (!PendingProfiles::GetInstance()->IsCollectionEnabled()) |
436 return base::Bind(&IgnoreCompletedProfiles); | 450 return base::Bind(&IgnoreCompletedProfiles); |
437 | 451 |
438 return base::Bind(&ReceiveCompletedProfilesImpl, params, | 452 params->start_timestamp = base::TimeTicks::Now(); |
439 base::TimeTicks::Now()); | 453 return base::Bind(&ReceiveCompletedProfilesImpl, params); |
440 } | 454 } |
441 | 455 |
442 // static | 456 // static |
443 void CallStackProfileMetricsProvider::ReceiveCompletedProfiles( | 457 void CallStackProfileMetricsProvider::ReceiveCompletedProfiles( |
444 const CallStackProfileParams& params, | 458 CallStackProfileParams* params, |
445 base::TimeTicks start_timestamp, | 459 base::StackSamplingProfiler::CallStackProfiles profiles) { |
446 StackSamplingProfiler::CallStackProfiles profiles) { | 460 ReceiveCompletedProfilesImpl(params, std::move(profiles)); |
447 ReceiveCompletedProfilesImpl(params, start_timestamp, std::move(profiles)); | 461 } |
462 | |
463 // static | |
464 bool CallStackProfileMetricsProvider::IsPeriodicSamplingEnabled() { | |
465 // Ensure FeatureList has been initialized before calling into an API that | |
466 // calls base::FeatureList::IsEnabled() internally. While extremely unlikely, | |
467 // it is possible that the profiler callback and therefore this function get | |
468 // called before FeatureList initialization (e.g. if machine was suspended). | |
469 return base::FeatureList::GetInstance() != nullptr && | |
470 base::GetFieldTrialParamByFeatureAsBool(kEnableReporting, "periodic", | |
471 false); | |
448 } | 472 } |
449 | 473 |
450 void CallStackProfileMetricsProvider::OnRecordingEnabled() { | 474 void CallStackProfileMetricsProvider::OnRecordingEnabled() { |
451 PendingProfiles::GetInstance()->SetCollectionEnabled(true); | 475 PendingProfiles::GetInstance()->SetCollectionEnabled(true); |
452 } | 476 } |
453 | 477 |
454 void CallStackProfileMetricsProvider::OnRecordingDisabled() { | 478 void CallStackProfileMetricsProvider::OnRecordingDisabled() { |
455 PendingProfiles::GetInstance()->SetCollectionEnabled(false); | 479 PendingProfiles::GetInstance()->SetCollectionEnabled(false); |
456 } | 480 } |
457 | 481 |
458 void CallStackProfileMetricsProvider::ProvideGeneralMetrics( | 482 void CallStackProfileMetricsProvider::ProvideGeneralMetrics( |
459 ChromeUserMetricsExtension* uma_proto) { | 483 ChromeUserMetricsExtension* uma_proto) { |
460 std::vector<ProfilesState> pending_profiles; | 484 std::vector<ProfilesState> pending_profiles; |
461 PendingProfiles::GetInstance()->Swap(&pending_profiles); | 485 PendingProfiles::GetInstance()->Swap(&pending_profiles); |
462 | 486 |
463 DCHECK(IsReportingEnabledByFieldTrial() || pending_profiles.empty()); | 487 DCHECK(IsReportingEnabledByFieldTrial() || pending_profiles.empty()); |
464 | 488 |
489 // TODO(asvitkine): For post-startup periodic samples, this is currently | |
490 // wasteful as each sample is reported in its own profile. We should attempt | |
491 // to merge profiles to save bandwidth. | |
465 for (const ProfilesState& profiles_state : pending_profiles) { | 492 for (const ProfilesState& profiles_state : pending_profiles) { |
466 for (const StackSamplingProfiler::CallStackProfile& profile : | 493 for (const StackSamplingProfiler::CallStackProfile& profile : |
467 profiles_state.profiles) { | 494 profiles_state.profiles) { |
468 SampledProfile* sampled_profile = uma_proto->add_sampled_profile(); | 495 SampledProfile* sampled_profile = uma_proto->add_sampled_profile(); |
469 sampled_profile->set_process(ToExecutionContextProcess( | 496 sampled_profile->set_process( |
470 profiles_state.params.process)); | 497 ToExecutionContextProcess(profiles_state.params.process)); |
471 sampled_profile->set_thread(ToExecutionContextThread( | 498 sampled_profile->set_thread( |
472 profiles_state.params.thread)); | 499 ToExecutionContextThread(profiles_state.params.thread)); |
473 sampled_profile->set_trigger_event(ToSampledProfileTriggerEvent( | 500 sampled_profile->set_trigger_event( |
474 profiles_state.params.trigger)); | 501 ToSampledProfileTriggerEvent(profiles_state.params.trigger)); |
502 | |
503 int64_t sampling_period_ms = profile.sampling_period.InMilliseconds(); | |
504 if (sampled_profile->trigger_event() == | |
505 SampledProfile::PERIODIC_COLLECTION) { | |
506 sampling_period_ms += kPeriodicSamplingInterval.InMilliseconds(); | |
507 } | |
475 CopyProfileToProto(profile, profiles_state.params.ordering_spec, | 508 CopyProfileToProto(profile, profiles_state.params.ordering_spec, |
509 sampling_period_ms, | |
476 sampled_profile->mutable_call_stack_profile()); | 510 sampled_profile->mutable_call_stack_profile()); |
477 } | 511 } |
478 } | 512 } |
479 } | 513 } |
480 | 514 |
481 // static | 515 // static |
482 void CallStackProfileMetricsProvider::ResetStaticStateForTesting() { | 516 void CallStackProfileMetricsProvider::ResetStaticStateForTesting() { |
483 PendingProfiles::GetInstance()->ResetToDefaultStateForTesting(); | 517 PendingProfiles::GetInstance()->ResetToDefaultStateForTesting(); |
484 } | 518 } |
485 | 519 |
486 // static | 520 // static |
487 bool CallStackProfileMetricsProvider::IsReportingEnabledByFieldTrial() { | 521 bool CallStackProfileMetricsProvider::IsReportingEnabledByFieldTrial() { |
488 const std::string group_name = base::FieldTrialList::FindFullName( | 522 return base::FeatureList::IsEnabled(kEnableReporting); |
489 CallStackProfileMetricsProvider::kFieldTrialName); | |
490 return group_name == | |
491 CallStackProfileMetricsProvider::kReportProfilesGroupName; | |
492 } | 523 } |
493 | 524 |
494 } // namespace metrics | 525 } // namespace metrics |
OLD | NEW |