org.apache.pulsar.client.admin.internal.BrokerStatsImpl Maven / Gradle / Ivy
/*
* 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.pulsar.client.admin.internal;
import org.apache.pulsar.shade.com.google.gson.Gson;
import org.apache.pulsar.shade.com.google.gson.JsonObject;
import java.util.concurrent.CompletableFuture;
import org.apache.pulsar.shade.javax.ws.rs.client.WebTarget;
import org.apache.pulsar.client.admin.BrokerStats;
import org.apache.pulsar.client.admin.PulsarAdminException;
import org.apache.pulsar.client.api.Authentication;
import org.apache.pulsar.common.naming.NamespaceName;
import org.apache.pulsar.common.stats.AllocatorStats;
import org.apache.pulsar.shade.org.apache.pulsar.policies.data.loadbalancer.LoadManagerReport;
/**
* Pulsar Admin API client.
*
*/
public class BrokerStatsImpl extends BaseResource implements BrokerStats {
private final WebTarget adminBrokerStats;
private final WebTarget adminV2BrokerStats;
public BrokerStatsImpl(WebTarget target, Authentication auth, long readTimeoutMs) {
super(auth, readTimeoutMs);
adminBrokerStats = target.path("/admin/broker-stats");
adminV2BrokerStats = target.path("/admin/v2/broker-stats");
}
@Override
public String getMetrics() throws PulsarAdminException {
return sync(this::getMetricsAsync);
}
@Override
public CompletableFuture getMetricsAsync() {
WebTarget path = adminV2BrokerStats.path("/metrics");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public AllocatorStats getAllocatorStats(String allocatorName) throws PulsarAdminException {
return sync(() -> getAllocatorStatsAsync(allocatorName));
}
@Override
public CompletableFuture getAllocatorStatsAsync(String allocatorName) {
WebTarget path = adminV2BrokerStats.path("/allocator-stats").path(allocatorName);
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public String getMBeans() throws PulsarAdminException {
return sync(this::getMBeansAsync);
}
@Override
public CompletableFuture getMBeansAsync() {
WebTarget path = adminV2BrokerStats.path("/mbeans");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public String getTopics() throws PulsarAdminException {
return sync(this::getTopicsAsync);
}
@Override
public CompletableFuture getTopicsAsync() {
WebTarget path = adminV2BrokerStats.path("/topics");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public LoadManagerReport getLoadReport() throws PulsarAdminException {
return sync(this::getLoadReportAsync);
}
@Override
public CompletableFuture getLoadReportAsync() {
WebTarget path = adminV2BrokerStats.path("/load-report");
return asyncGetRequest(path, new FutureCallback(){});
}
@Override
public String getPendingBookieOpsStats() throws PulsarAdminException {
return sync(this::getPendingBookieOpsStatsAsync);
}
@Override
public CompletableFuture getPendingBookieOpsStatsAsync() {
WebTarget path = adminV2BrokerStats.path("/bookieops");
return asyncGetRequest(path, new FutureCallback(){});
}
public JsonObject getBrokerResourceAvailability(String namespace) throws PulsarAdminException {
try {
NamespaceName ns = NamespaceName.get(namespace);
WebTarget admin = ns.isV2() ? adminV2BrokerStats : adminBrokerStats;
String json = request(admin.path("/broker-resource-availability").path(ns.toString())).get(String.class);
return new Gson().fromJson(json, JsonObject.class);
} catch (Exception e) {
throw getApiException(e);
}
}
}