use of org.locationtech.geowave.service.grpc.protobuf.ListStatsCommandParametersProtos in project geowave by locationtech.
the class GeoWaveGrpcTestClient method ListStatsCommand.
public String ListStatsCommand() {
final ArrayList<String> params = new ArrayList<>();
params.add(GeoWaveGrpcTestUtils.storeName);
final ListStatsCommandParametersProtos request = ListStatsCommandParametersProtos.newBuilder().addAllParameters(params).setCsv(true).build();
final StringResponseProtos resp = coreStoreBlockingStub.listStatsCommand(request);
return resp.getResponseValue();
}
Aggregations