forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
faabb7d
commit bbbc193
Showing
3 changed files
with
196 additions
and
12 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
rest-api-spec/src/main/resources/rest-api-spec/api/profiling.flamegraph.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"profiling.flamegraph":{ | ||
"documentation":{ | ||
"url":"https://www.elastic.co/guide/en/observability/current/universal-profiling.html", | ||
"description":"Extracts a UI-optimized structure to render flamegraphs from Universal Profiling." | ||
}, | ||
"stability":"stable", | ||
"visibility":"private", | ||
"headers":{ | ||
"accept": ["application/json"] | ||
}, | ||
"url":{ | ||
"paths":[ | ||
{ | ||
"path":"/_profiling/flamegraph", | ||
"methods":[ | ||
"POST" | ||
] | ||
} | ||
] | ||
}, | ||
"body":{ | ||
"description":"The filter conditions for stacktraces", | ||
"required":true | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
rest-api-spec/src/main/resources/rest-api-spec/api/profiling.stacktraces.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"profiling.stacktraces":{ | ||
"documentation":{ | ||
"url":"https://www.elastic.co/guide/en/observability/current/universal-profiling.html", | ||
"description":"Extracts raw stacktrace information from Universal Profiling." | ||
}, | ||
"stability":"stable", | ||
"visibility":"private", | ||
"headers":{ | ||
"accept": ["application/json"] | ||
}, | ||
"url":{ | ||
"paths":[ | ||
{ | ||
"path":"/_profiling/stacktraces", | ||
"methods":[ | ||
"POST" | ||
] | ||
} | ||
] | ||
}, | ||
"body":{ | ||
"description":"The filter conditions for stacktraces", | ||
"required":true | ||
} | ||
} | ||
} |
Oops, something went wrong.