/* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ syntax = "proto2"; package perfetto.protos; // Per-process periodically sampled stats. These samples are wrapped in a // dedicated message (as opposite to be fields in process_tree.proto) because // they are dumped at a different rate than cmdline and thread list. // Note: not all of these stats will be present in every ProcessStats message // and sometimes processes may be missing. This is because counters are // cached to reduce emission of counters which do not change. message ProcessStats { // Per-thread periodically sampled stats. // Note: not all of these stats will be present in every message. See the note // for ProcessStats. message Thread { optional int32 tid = 1; // DEPRECATED cpu_freq_indices reserved 2; // DEPRECATED cpu_freq_ticks reserved 3; // DEPRECATED cpu_freq_full reserved 4; } message FDInfo { optional uint64 fd = 1; optional string path = 2; } message Process { optional int32 pid = 1; repeated Thread threads = 11; // See /proc/[pid]/status in `man 5 proc` for a description of these fields. optional uint64 vm_size_kb = 2; optional uint64 vm_rss_kb = 3; optional uint64 rss_anon_kb = 4; optional uint64 rss_file_kb = 5; optional uint64 rss_shmem_kb = 6; optional uint64 vm_swap_kb = 7; optional uint64 vm_locked_kb = 8; optional uint64 vm_hwm_kb = 9; // When adding a new field remember to update kProcMemCounterSize in // the trace processor. optional int64 oom_score_adj = 10; // The peak resident set size is resettable in newer Posix kernels. // This field specifies if reset is supported and if the writer had reset // the peaks after each process stats recording. optional bool is_peak_rss_resettable = 12; // Private, shared and swap footprint of the process as measured by // Chrome. To know more about these metrics refer to: // https://docs.google.com/document/d/1_WmgE1F5WUrhwkPqJis3dWyOiUmQKvpXp5cd4w86TvA optional uint32 chrome_private_footprint_kb = 13; optional uint32 chrome_peak_resident_set_kb = 14; repeated FDInfo fds = 15; // These fields are set only when scan_smaps_rollup=true optional uint64 smr_rss_kb = 16; optional uint64 smr_pss_kb = 17; optional uint64 smr_pss_anon_kb = 18; optional uint64 smr_pss_file_kb = 19; optional uint64 smr_pss_shmem_kb = 20; optional uint64 smr_swap_pss_kb = 23; // Time spent scheduled in user mode in nanoseconds. Parsed from utime in // /proc/pid/stat. Recorded if record_process_runtime config option is set. // Resolution of "clock ticks", usually 10ms. optional uint64 runtime_user_mode = 21; // Time spent scheduled in kernel mode in nanoseconds. Parsed from stime in // /proc/pid/stat. Recorded if record_process_runtime config option is set. // Resolution of "clock ticks", usually 10ms. optional uint64 runtime_kernel_mode = 22; } repeated Process processes = 1; // The time at which we finish collecting this batch of samples; // the top-level packet timestamp is the time at which // we begin collection. optional uint64 collection_end_timestamp = 2; }