Is there any way to keep the history about application status changing in Spring Boot Admin Journal page after restart the Spring Boot Admin server? There is history about all the status changes of all registered applications, but if i restart the admin server, the history disapears and start to recording changes since the moment of startup. Is there a way to keep the history in this page permanently ? even if the spring boot admin server get restarted ?
Spring Boot Admin Journal history
1.5k Views Asked by evilsoldier At
1
There are 1 best solutions below
Related Questions in HISTORY
- Customer not marked as notified programatically Magento
- How do I keep music playing on my website when navigating using the new HTML5 History API?
- xmpp - how to get room chat history
- Go back to last webpage after logging in
- gwt history management with html a tag and styling issues when using gwt hyperlink
- ios open call history
- Git Remove One Step in a File's History
- Spring Boot Admin Journal history
- git different result file history vs branch
- Is there a way I can set up my Git repository on my production machien to not save history?
- What are the historical reasons that "streams" are called FILE in C
- Why does calling History.pushState() (or .replaceState()) trigger a 'popstate' event?
- Android: searchview history not showing
- Android onChange event not triggered in contentObserver for chrome history on android 5 (Lollipop)
- Ionic tabs auto navigation
Related Questions in JOURNAL
- Spring Boot Admin Journal history
- How to use grep on dictionary-like file
- MongoDb journal in write concern
- Systemd-journald.service log rotation is not working
- Where can I find "C/C++ Users Journal" code archive?
- NTFS Journal USN_REASON_HARD_LINK_CHANGE event
- Will Windows always allow hooks and/or the journal record?
- How to contribute to iOS Journaling Suggestions?
- NX Journal C# => write name of selected expression into string
- SqLite C# extremely slow on update
- Given the hexadecimal code of a character, how to convert it to the corresponding character in CL program?
- Sqlite Database Browser crahses - how to restore the DB with journal file
- How can i journal all my tables's schema in db2 iseries as/400?
- Opening a sqlite3 DB on a read-only filesystem with a -journal file
- Equivalent dlog for debugging in javascript?
Related Questions in SPRING-BOOT-ADMIN
- Spring Boot Admin Journal history
- Override already configured WebMvcAdapter in Spring
- Using spring-boot-admin for a non spring-boot project
- Spring Admin Console Not showing Eureka client with custom path
- Spring ouath2Authserver oauth/token returns internal server Error for grant client_credentials
- Spring Boot Admin - Polling duration changes not working
- Migration to Spring Security 6 - How to implement multiple Authorization / security filter scenarios in a library
- Problem with @Cacheable metrics in promotheus
- How to use Keycloak and Spring Boot Admin
- search filter in spring-boot-admin wallboard is missing values
- Register a relatively large content in metadata
- ProbeEndpointsStrategy: Duplicate endpoints for id 'httptrace' detected. Omitting (same with 'threaddump')
- How to migrate spring boot admin server and client into one spring boot application
- Ignore specify slash character in yaml config for spring boot admin application
- Spring Boot Admin : java.net.UnknownHostException: Failed to resolve 'SAURABH-PC.mshome.net' after 3 queries
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes there is. You can implement
JournaledEventStoreyourself using your favourite persistence technology or you setup SBA to use hazelcast and configure hazelcast so that the data gets persisted.The sample for hazelcast is labeled 'clustering' but you also can run a single node. See http://codecentric.github.io/spring-boot-admin/1.4.4/#clustering-support
The sample doesn't configure the data to be persisted. You need to look that up.