-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
service: make the orca MetricReport a top level experimental class (#…
- Loading branch information
1 parent
25183ed
commit 014c022
Showing
14 changed files
with
101 additions
and
84 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
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
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,59 @@ | ||
/* | ||
* Copyright 2022 The gRPC Authors | ||
* | ||
* 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.grpc.services; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
|
||
import io.grpc.ExperimentalApi; | ||
import java.util.Map; | ||
|
||
/** | ||
* A gRPC object of orca load report. LB policies listening at per-rpc or oob orca load reports | ||
* will be notified of the metrics data in this data format. | ||
*/ | ||
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/9381") | ||
public final class MetricReport { | ||
private double cpuUtilization; | ||
private double memoryUtilization; | ||
private Map<String, Double> requestCostMetrics; | ||
private Map<String, Double> utilizationMetrics; | ||
|
||
MetricReport(double cpuUtilization, double memoryUtilization, | ||
Map<String, Double> requestCostMetrics, | ||
Map<String, Double> utilizationMetrics) { | ||
this.cpuUtilization = cpuUtilization; | ||
this.memoryUtilization = memoryUtilization; | ||
this.requestCostMetrics = checkNotNull(requestCostMetrics, "requestCostMetrics"); | ||
this.utilizationMetrics = checkNotNull(utilizationMetrics, "utilizationMetrics"); | ||
} | ||
|
||
public double getCpuUtilization() { | ||
return cpuUtilization; | ||
} | ||
|
||
public double getMemoryUtilization() { | ||
return memoryUtilization; | ||
} | ||
|
||
public Map<String, Double> getRequestCostMetrics() { | ||
return requestCostMetrics; | ||
} | ||
|
||
public Map<String, Double> getUtilizationMetrics() { | ||
return utilizationMetrics; | ||
} | ||
} |
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
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.