-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathasync-profiler.graphqls
185 lines (165 loc) · 6.34 KB
/
async-profiler.graphqls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
# Request to create a async-profiler task
input AsyncProfilerTaskCreationRequest {
# Define the service to execute the task
serviceId: ID!
# Define which instances need to execute tasks
serviceInstanceIds: [String!]!
# Define the duration of this task (second)
duration: Int!
# Define which event types this task needs to collect.
events: [AsyncProfilerEventType!]!
# other async-profiler execution options, e.g. alloc=2k,lock=2s
execArgs: String
}
# AsyncProfilerTaskCreationResult is the result of the task creation request
type AsyncProfilerTaskCreationResult {
# Code defines the status of the response, i.e. success or failure.
code: AsyncProfilerTaskCreationType!
# ErrorReason gives detailed reason for the exception, if the code returned represents a kind of failure.
errorReason: String
# Task id, if code is SUCCESS.
id: String
}
# AsyncProfiler task creation type
enum AsyncProfilerTaskCreationType {
# Task created successfully
SUCCESS
# Task creation failed due to argument errors
ARGUMENT_ERROR
# The current service already has a async-profiler task executing
ALREADY_PROFILING_ERROR
}
# Request to query async-profiler task list
input AsyncProfilerTaskListRequest {
# ServiceId associated with the task
serviceId: ID!
# Time Range
queryDuration: Duration
# Limit defines the number of the tasks to be returned.
limit: Int
}
# Request to query flame graph analyzation
input AsyncProfilerAnalyzationRequest {
# Define which task to analyze
taskId: ID!
# InstanceIds defines the instances to be included for analysis
instanceIds: [String!]!
# EventType is the specific JFR Event type to be selected for analysis even if multiple events are included in the JFR file.
eventType: JFREventType!
}
# Define async-profiler task list result
type AsyncProfilerTaskListResult {
# If it is null or empty, it means the task is created successfully, otherwise it gets the creation error reason
errorReason: String
# Tasks is a list of async-profiler tasks belonging to the specific service
tasks: [AsyncProfilerTask!]
}
# Define async-profiler task data
# The fields definition is the same as AsyncProfilerTaskCreationRequest
type AsyncProfilerTask {
id: String!
serviceId: String!
serviceInstanceIds: [String!]!
createTime: Long!
events: [AsyncProfilerEventType!]!
duration: Int!
execArgs: String
}
# Define the flame graph results produced by async-profiler
type AsyncProfilerStackTree {
type: JFREventType!
elements: [AsyncProfilerStackElement!]
}
# Define the thread stack analyze tree element
type AsyncProfilerStackElement {
# Id is the identity of the stack element
id: ID!
# ParentId is the identity of the parent stack element. Stack elements are organized as a tree.
parentId: ID!
# Method signatures in tree nodes
codeSignature: String!
# The total number of samples of the current tree node, including child nodes
total: Long!
# The sampling number of the current tree node, excluding samples of the children
self: Long!
}
# Define the analysis results of the task
type AsyncProfilerAnalyzation {
# Displaying the tree structure data required for the flame graph
tree: AsyncProfilerStackTree
}
# Defines task progress, including task logs, success and failure instances
type AsyncProfilerTaskProgress {
# All task execution logs of the current task
logs: [AsyncProfilerTaskLog!]
# ErrorInstanceIds gives instances that failed to execute the task
errorInstanceIds: [ID]
# SuccessInstanceIds gives instances that have executed the task successfully
successInstanceIds: [ID]
}
# Define the log of a task executed by an instance
type AsyncProfilerTaskLog {
# The task id
id: String!
# InstanceId is the id of the instance which reported this task log
instanceId: ID!
instanceName: String!
operationType: AsyncProfilerTaskLogOperationType!
operationTime: Long!
}
# Define the execution progress of the task
enum AsyncProfilerTaskLogOperationType {
# NOTIFIED means the task has been issued to the Java Agent
NOTIFIED,
# EXECUTION_FINISHED means the Java Agent has finished the execution
EXECUTION_FINISHED
# JFR_UPLOAD_FILE_TOO_LARGE_ERROR means the Java Agent has finished the task but the target file is too large to be received by the OAP server
JFR_UPLOAD_FILE_TOO_LARGE_ERROR
# EXECUTION_TASK_ERROR means potential execution error caused by the Java Agent
EXECUTION_TASK_ERROR
}
# Defines which event types async-profiler needs to collect
enum AsyncProfilerEventType {
CPU
WALL
LOCK
ALLOC
CTIMER
ITIMER
}
# JFR event type
enum JFREventType {
EXECUTION_SAMPLE
# The LOCK event is a combination of JAVA_MONITOR_ENTER and THREAD_PARK events.
LOCK
OBJECT_ALLOCATION_IN_NEW_TLAB
OBJECT_ALLOCATION_OUTSIDE_TLAB
PROFILER_LIVE_OBJECT
}
extend type Mutation {
# Create a new async-profiler task
createAsyncProfilerTask(asyncProfilerTaskCreationRequest: AsyncProfilerTaskCreationRequest!): AsyncProfilerTaskCreationResult!
}
extend type Query {
# Query all task lists and sort them in descending order by start time
queryAsyncProfilerTaskList(request: AsyncProfilerTaskListRequest!): AsyncProfilerTaskListResult!
# Query task progress, including task logs
queryAsyncProfilerTaskProgress(taskId: String!): AsyncProfilerTaskProgress!
# Query the flame graph produced by async-profiler
queryAsyncProfilerAnalyze(request: AsyncProfilerAnalyzationRequest!): AsyncProfilerAnalyzation!
}