File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
src/main/scala/io/sdkman/changelogs Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ package io .sdkman .changelogs
2+
3+ import com .github .mongobee .changeset .{ChangeLog , ChangeSet }
4+ import com .mongodb .client .MongoDatabase
5+
6+ @ ChangeLog (order = " 048" )
7+ class JdkMissionControlMigrations {
8+ @ ChangeSet (
9+ order = " 001" ,
10+ id = " 001_add_mission_control" ,
11+ author = " marc0der"
12+ )
13+ def migration001 (implicit db : MongoDatabase ) =
14+ Candidate (
15+ candidate = " jmc" ,
16+ name = " JDK Mission Control" ,
17+ description =
18+ " Java Flight Recorder and JDK Mission Control together create a complete tool chain to continuously collect " +
19+ " low level and detailed runtime information enabling after-the-fact incident analysis. JDK Mission Control " +
20+ " is an advanced set of tools that enables efficient and detailed analysis of the extensive of data " +
21+ " collected by Java Flight Recorder. The tool chain enables developers and administrators to collect and " +
22+ " analyze data from Java applications running locally or deployed in production environments." ,
23+ websiteUrl =
24+ " https://www.oracle.com/java/technologies/jdk-mission-control.html"
25+ ).insert()
26+ }
You can’t perform that action at this time.
0 commit comments