1-- 2-- Copyright 2020 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-- https://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-- 16select 17 counter_track.name as counter_name, 18 process.name as process, 19 thread.name as thread, 20 thread_process.name as thread_process, 21 counter_track.unit as unit, 22 counter.ts, 23 counter.value 24from counter 25left join counter_track on counter.track_id = counter_track.id 26left join process_counter_track on counter.track_id = process_counter_track.id 27left join process on process_counter_track.upid = process.upid 28left join thread_counter_track on counter.track_id = thread_counter_track.id 29left join thread on thread_counter_track.utid = thread.utid 30left join process thread_process on thread.upid = thread_process.upid 31order by ts asc; 32