-- -- Copyright 2019 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 -- -- https://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. -- SELECT RUN_METRIC('android/process_oom_score.sql'); -- All LMK events ordered by timestamp CREATE TABLE IF NOT EXISTS lmk_events AS WITH raw_events AS ( SELECT ref AS upid, MIN(ts) AS ts FROM instants WHERE name = 'mem.lmk' AND ref_type = 'upid' GROUP BY 1 ) SELECT raw_events.ts, raw_events.upid, oom_scores.oom_score_val AS score FROM raw_events LEFT JOIN oom_score_span oom_scores ON (raw_events.upid = oom_scores.upid AND raw_events.ts >= oom_scores.ts AND raw_events.ts < oom_scores.ts + oom_scores.dur) ORDER BY 1; CREATE VIEW IF NOT EXISTS android_lmk_annotations AS WITH raw_events AS ( SELECT ts, LEAD(ts) OVER (ORDER BY ts) - ts AS dur, value AS tid FROM counter c JOIN counter_track t ON t.id = c.track_id WHERE t.name = 'kill_one_process' ), lmks_with_proc_name AS ( SELECT *, process.name as process_name FROM raw_events LEFT JOIN thread ON thread.tid = raw_events.tid AND raw_events.ts BETWEEN thread.start_ts AND thread.end_ts LEFT JOIN process USING(upid) WHERE raw_events.tid != 0 ) SELECT 'slice' as track_type, 'Low Memory Kills (LMKs)' as track_name, ts, dur, CASE WHEN process_name IS NULL THEN printf('Process %d', lmk.pid) ELSE printf('%s (pid: %d)', process_name, lmk.pid) END AS slice_name FROM lmks_with_proc_name as lmk; CREATE VIEW IF NOT EXISTS android_lmk_output AS WITH lmk_counts AS ( SELECT score, COUNT(1) AS count FROM lmk_events GROUP BY score ) SELECT AndroidLmkMetric( 'total_count', (SELECT COUNT(1) FROM lmk_events), 'by_oom_score', ( SELECT RepeatedField(AndroidLmkMetric_ByOomScore( 'oom_score_adj', score, 'count', count )) FROM lmk_counts WHERE score IS NOT NULL ), 'oom_victim_count', ( SELECT COUNT(1) FROM instants WHERE name = 'mem.oom_kill' ) );