forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
92949: ui: click to make graph legend sticky r=dhartunian a=dhartunian Previously, hovering over a graph would make a legend appear but there was no way to persist the legend when the mouse moved away. This made carefully looking through denser graphs very challenging as it was tough to know which value corresponded to which series. This commit introduces two changes to line graph behavior. First, clicking while hovering in a graph will stop the points from following the mouse, allowing you to cross-reference with the legend. Second, the legend will continue to persist even when you move the mouse away. Epic: None Resolves: cockroachdb#65031 Resolves: cockroachdb#65036 Release note (ui change): Graphs can be clicked on to toggle legend "stickiness" and make the points stop following the mouse. This makes it easier to read dense graphs with many series plotted together. 94725: storage: expose LazyValue for reverse scanning in pebbleMVCCScanner r=jbowens a=sumeerbhola Informs cockroachdb/pebble#1170 Epic: CRDB-20378 94762: go.mod: bump Pebble to 10bdef44ad7c r=jbowens a=jbowens ``` 10bdef44 Revert "db: require validity check before calling HasPointAndRange, RangeKeyChanged" 920d4db3 sstable: prevent duplicate put of valueBlockWriter to sync.Pool 3d9c6101 db: allow switching directions using NextPrefix df2a3f09 db: factor out iterator repositioning to first/last key 1a5e2335 db: require validity check before calling HasPointAndRange, RangeKeyChanged 6cd8bb04 sstable: implement NextPrefix for the sstable iterators 811a8c0e replay: implement Stringer on workload collector's Cleaner eb5e1039 replay: add workload pacing 36a9cc67 replay: stub out workload replay logic ``` Supersedes cockroachdb#94712. Epic: None Release note: None Co-authored-by: David Hartunian <[email protected]> Co-authored-by: sumeerbhola <[email protected]> Co-authored-by: Jackson Owens <[email protected]>
- Loading branch information
Showing
14 changed files
with
117 additions
and
35 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -1485,10 +1485,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "1bc07fb5a406d3f408e7a58ce0186ff40fc0dc5d996773f465cd593d22e6ce51", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20221221181305-caecab07d786", | ||
sha256 = "ff67b88929caeb1da76ab0c286a4837c51e86723d1d56bdb6150c329f436457f", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20230105164919-10bdef44ad7c", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20221221181305-caecab07d786.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20230105164919-10bdef44ad7c.zip", | ||
], | ||
) | ||
go_repository( | ||
|
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -61,7 +61,6 @@ | |
} | ||
|
||
.visualization-graph-sizing { | ||
height: calc(30% - 200px); | ||
min-height: 300px; | ||
} | ||
|
||
|
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
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