forked from helidon-io/helidon
-
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.
Begin adjusting MetricsFeature; add formatting for Prometheus and JSON
- Loading branch information
Showing
19 changed files
with
1,939 additions
and
17 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
38 changes: 38 additions & 0 deletions
38
metrics/api/src/main/java/io/helidon/metrics/api/MeterRegistryFormatter.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,38 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.helidon.metrics.api; | ||
|
||
import java.util.Optional; | ||
|
||
/** | ||
* Formatter of a {@link io.helidon.metrics.api.MeterRegistry} according to a given media type. | ||
*/ | ||
public interface MeterRegistryFormatter { | ||
|
||
/** | ||
* Formats the meter registry's data. | ||
* | ||
* @return formatted output | ||
*/ | ||
Optional<?> format(); | ||
|
||
/** | ||
* Formats the meter registry's metadata. | ||
* | ||
* @return formatted metadata output | ||
*/ | ||
Optional<?> formatMetadata(); | ||
} |
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
50 changes: 50 additions & 0 deletions
50
metrics/api/src/main/java/io/helidon/metrics/spi/MeterRegistryFormatterProvider.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,50 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.helidon.metrics.spi; | ||
|
||
import java.util.Optional; | ||
|
||
import io.helidon.common.media.type.MediaType; | ||
import io.helidon.metrics.api.MeterRegistry; | ||
import io.helidon.metrics.api.MeterRegistryFormatter; | ||
|
||
/** | ||
* Behavior for providers of meter registry formatters, which (if then can) furnish a formatter given a | ||
* {@link io.helidon.common.media.type.MediaType}. | ||
* | ||
* <p> | ||
* We use a provider approach so code can obtain and run formatters that might depend heavily on particular implementations | ||
* without the calling code having to share that heavy dependency. | ||
* </p> | ||
*/ | ||
public interface MeterRegistryFormatterProvider { | ||
|
||
/** | ||
* Returns, if possible, a {@link io.helidon.metrics.api.MeterRegistryFormatter} capable of preparing output according to | ||
* the specified {@link io.helidon.common.media.type.MediaType}. | ||
* @param mediaType media type of the desired output | ||
* @param meterRegistry {@link io.helidon.metrics.api.MeterRegistry} from which to gather data | ||
* @param scopeTagName tag name used to record scope | ||
* @param scopeSelection scope names to format; empty means no scope-based restriction | ||
* @param nameSelection meter names to format; empty means no name-based restriction | ||
* @return compatible formatter; empty if none | ||
*/ | ||
Optional<MeterRegistryFormatter> formatter(MediaType mediaType, | ||
MeterRegistry meterRegistry, | ||
String scopeTagName, | ||
Iterable<String> scopeSelection, | ||
Iterable<String> nameSelection); | ||
} |
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
Oops, something went wrong.