| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
TRACE_EVENT1(kTraceCategory, "MemoryDumpManager::InvokeOnMemoryDump",
"dump_provider.name", mdpinfo->name.static_name());Consider emitting name.static_name() as the trace event (this one or a nested one) so this can work in the field.
I think this is ok given static_name is known at compile time.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
TRACE_EVENT1(kTraceCategory, "MemoryDumpManager::InvokeOnMemoryDump",
"dump_provider.name", mdpinfo->name.static_name());Consider emitting name.static_name() as the trace event (this one or a nested one) so this can work in the field.
I think this is ok given static_name is known at compile time.
Good idea, I'll do that as a followup.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Record metrics on MemoryDumpProvider results and runtime
Adds a MeasuredMemoryDumpProviderInfo class that wraps each
MemoryDumpProviderInfo queued during a memory dump. The wrapper measures
the length of time the MemoryDumpProviderInfo is queued + running, and
records the final status of the dump from that specific provider, and
records these metrics to UMA in its destructor.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |