-
Notifications
You must be signed in to change notification settings - Fork 809
SOLR-17436: Create a v2 equivalent for /admin/metrics #4057
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
Open
igiguere
wants to merge
17
commits into
apache:main
Choose a base branch
from
igiguere:SOLR-17436-V2-Metrics-API
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1d6ddf1
SOLR-17436: Metrics API as JerseyResource
2585d22
Merge branch 'apache:main' into SOLR-17436-V2-Metrics-API
igiguere 16c0909
SOLR-17436: add unit tests
6458693
SOLR-17436: V2 Metrics API
27d4304
SOLR-17436: V2 Metrics API
faad32e
SOLR-17436: changelog
2445c4d
Merge branch 'SOLR-17436-V2-Metrics-API' of git@github.com:igiguere/s…
bdccb1a
SOLR-17436: V2 Metrics API
f2537b6
SOLR-17436: V2 metrics API
87da899
SOLR-17436: V2 metrics tests
59c9c95
Merge branch 'apache:main' into SOLR-17436-V2-Metrics-API
igiguere 97acc04
SOLR-17436: remove unused import
02d4e2f
Merge branch 'apache:main' into SOLR-17436-V2-Metrics-API
igiguere b58d10d
SOLR-17436: V2 Metrics API - review comments
c51b50c
Merge branch 'SOLR-17436-V2-Metrics-API' of git@github.com:igiguere/s…
73d0dad
SOLR-17436: V2 metrics API - review comments
9f0ba30
SOLR-17436: fix merge conflicts
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,8 @@ | ||
| # See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc | ||
| title: Create a v2 equivalent for /admin/metrics | ||
| type: added # added, changed, fixed, deprecated, removed, dependency_update, security, other | ||
| authors: | ||
| - name: Isabelle Giguère | ||
| links: | ||
| - name: SOLR-17436 | ||
| url: https://issues.apache.org/jira/browse/SOLR-17436 |
84 changes: 84 additions & 0 deletions
84
solr/api/src/java/org/apache/solr/client/api/endpoint/MetricsApi.java
This file contains hidden or 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,84 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You 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 org.apache.solr.client.api.endpoint; | ||
|
|
||
| import static org.apache.solr.client.api.util.Constants.RAW_OUTPUT_PROPERTY; | ||
|
|
||
| import io.swagger.v3.oas.annotations.Operation; | ||
| import io.swagger.v3.oas.annotations.Parameter; | ||
| import io.swagger.v3.oas.annotations.extensions.Extension; | ||
| import io.swagger.v3.oas.annotations.extensions.ExtensionProperty; | ||
| import io.swagger.v3.oas.annotations.media.Schema; | ||
| import jakarta.ws.rs.GET; | ||
| import jakarta.ws.rs.HeaderParam; | ||
| import jakarta.ws.rs.Path; | ||
| import jakarta.ws.rs.QueryParam; | ||
| import jakarta.ws.rs.core.StreamingOutput; | ||
|
|
||
| /** V2 API definitions to fetch metrics. */ | ||
| @Path("/metrics") | ||
| public interface MetricsApi { | ||
|
|
||
| @GET | ||
| @Operation( | ||
| summary = "Retrieve metrics gathered by Solr.", | ||
| tags = {"metrics"}, | ||
| extensions = { | ||
| @Extension(properties = {@ExtensionProperty(name = RAW_OUTPUT_PROPERTY, value = "true")}) | ||
| }) | ||
| StreamingOutput getMetrics( | ||
| @HeaderParam("Accept") String acceptHeader, | ||
| @Parameter( | ||
| schema = | ||
| @Schema( | ||
| name = "node", | ||
| description = "Name of the node to which proxy the request.", | ||
| defaultValue = "all")) | ||
| @QueryParam(value = "node") | ||
| String node, | ||
| @Parameter(schema = @Schema(name = "name", description = "The metric name to filter on.")) | ||
| @QueryParam(value = "name") | ||
| String name, | ||
| @Parameter( | ||
| schema = @Schema(name = "category", description = "The category label to filter on.")) | ||
| @QueryParam(value = "category") | ||
| String category, | ||
| @Parameter( | ||
| schema = | ||
| @Schema( | ||
| name = "core", | ||
| description = | ||
| "TThe core name to filter on. More than one core can be specified in a comma-separated list.")) | ||
| @QueryParam(value = "core") | ||
| String core, | ||
| @Parameter( | ||
| schema = | ||
| @Schema(name = "collection", description = "The collection name to filter on. ")) | ||
| @QueryParam(value = "collection") | ||
| String collection, | ||
| @Parameter(schema = @Schema(name = "shard", description = "The shard name to filter on.")) | ||
| @QueryParam(value = "shard") | ||
| String shard, | ||
| @Parameter( | ||
| schema = | ||
| @Schema( | ||
| name = "replica_type", | ||
| description = "The replica type to filter on.", | ||
| allowableValues = {"NRT", "TLOG", "PULL"})) | ||
| @QueryParam(value = "replica_type") | ||
| String replicaType); | ||
| } | ||
This file contains hidden or 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 hidden or 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
igiguere marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.