Skip to content

Commit

Permalink
Add stacktrace and flamegraph tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmitterdorfer committed Jan 2, 2024
1 parent faabb7d commit bbbc193
Show file tree
Hide file tree
Showing 3 changed files with 196 additions and 12 deletions.
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
}
}
}
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
}
}
}
Loading

0 comments on commit bbbc193

Please sign in to comment.