Files
frameworks_base/startop/scripts/trace_analyzer/queries_get_procs.sql
Igor Murashkin 0c65d1c5fa startop: Add script to analyze block I/O from an ftrace file
Adds a simple python parser to convert .ftrace file into
sqlite3 database.

The rest of the analysis logic is done through a series of SQL
commands that build tables/views/select queries.

Bug: 134705245
Test: trace_analyzer some_ftrace_file.trace tmp_file.db
Change-Id: I25274e25a0ab1f091ae4e6161e6726e006e346a5
2019-06-10 22:17:13 +00:00

31 lines
1.1 KiB
SQL

/*
* Copyright (C) 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
*
* 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.
*/
DROP VIEW IF EXISTS start_procs;
CREATE VIEW IF NOT EXISTS start_procs AS
WITH
start_procs_raw AS (
SELECT * from tracing_mark_write_split WHERE atrace_message LIKE 'Start proc: %'
),
start_procs_substr AS (
-- note: "12" is len("Start proc: ")+1. sqlite indices start at 1.
SELECT raw_ftrace_entry_id, atrace_pid, SUBSTR(atrace_message, 13) AS process_name FROM start_procs_raw
)
SELECT * from start_procs_substr;
SELECT * from start_procs;