Skip to content

Commit 9336020

Browse files
authored
Add FlameGraph visualisation type (#83)
This accompanies the flame graph panel introduced in [this PR](grafana/grafana#56376), similar to [this PR](grafana/grafana-plugin-sdk-go#546) in the Go SDK.
1 parent 20c95da commit 9336020

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased] - ReleaseDate
1111

12+
### Added
13+
14+
- Add `VisType::FlameGraph` variant to indicate that a frame should be visualised using the flame graph panel introduced [here](https://github.com/grafana/grafana/pull/56376).
15+
1216
## [0.4.2] - 2022-09-19
1317

1418
## [0.4.1] - 2022-09-19

Diff for: crates/grafana-plugin-sdk/src/data/frame/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,8 @@ pub enum VisType {
543543
Trace,
544544
/// Node graph visualization.
545545
NodeGraph,
546+
/// Flame graph visualization.
547+
FlameGraph,
546548
}
547549

548550
/// A notification to be displayed in Grafana's UI.

0 commit comments

Comments
 (0)