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
31 lines
1.1 KiB
SQL
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;
|