-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement the Micrometer card for the new dev ui
- Loading branch information
1 parent
88cfc7d
commit 77c2054
Showing
4 changed files
with
56 additions
and
0 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
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
23 changes: 23 additions & 0 deletions
23
...r/deployment/src/main/java/io/quarkus/micrometer/deployment/export/RegistryBuildItem.java
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package io.quarkus.micrometer.deployment.export; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
|
||
public final class RegistryBuildItem extends MultiBuildItem { | ||
|
||
private final String name; | ||
|
||
private final String path; | ||
|
||
public RegistryBuildItem(String name, String path) { | ||
this.name = name; | ||
this.path = path; | ||
} | ||
|
||
public String name() { | ||
return name; | ||
} | ||
|
||
public String path() { | ||
return path; | ||
} | ||
} |