-
Notifications
You must be signed in to change notification settings - Fork 10
feat(diagnostics): Add thread dumps endpoint and storage #894
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
src/main/java/io/cryostat/diagnostic/BucketedDiagnosticsMetadataService.java
Outdated
Show resolved
Hide resolved
src/main/java/io/cryostat/diagnostic/BucketedDiagnosticsMetadataService.java
Outdated
Show resolved
Hide resolved
|
||
public static final String METADATA_STORAGE_MODE_TAGGING = "tagging"; | ||
public static final String METADATA_STORAGE_MODE_OBJECTMETA = "metadata"; | ||
public static final String METADATA_STORAGE_MODE_BUCKET = "bucket"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note for later: this is duplicated between here and #927's ArchivedRecordingMetadataService
, so we should do some refactoring after one of these PRs goes in and the other is rebased on top of it.
src/main/java/io/cryostat/recordings/LongRunningRequestGenerator.java
Outdated
Show resolved
Hide resolved
Rebase please. Could you also look at doing the refactoring mentioned in a previous comment? This is looking good from a read-over, so I'll give it a test run soon. |
Related to: #135
Initial implementation of thread dumps endpoint and storage setup/interaction
Opening as Draft until frontend is done since this will probably end up needing adjustments as that gets implemented.
TODO: Refactor (probably into a ThreadDumpHelper class like RecordingHelper)