shade.polaris.io.grpc.channelz.v1.ServerDataOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: grpc/channelz/v1/channelz.proto
package io.grpc.channelz.v1;
public interface ServerDataOrBuilder extends
// @@protoc_insertion_point(interface_extends:grpc.channelz.v1.ServerData)
com.google.protobuf.MessageOrBuilder {
/**
*
* A trace of recent events on the server. May be absent.
*
*
* .grpc.channelz.v1.ChannelTrace trace = 1;
* @return Whether the trace field is set.
*/
boolean hasTrace();
/**
*
* A trace of recent events on the server. May be absent.
*
*
* .grpc.channelz.v1.ChannelTrace trace = 1;
* @return The trace.
*/
io.grpc.channelz.v1.ChannelTrace getTrace();
/**
*
* A trace of recent events on the server. May be absent.
*
*
* .grpc.channelz.v1.ChannelTrace trace = 1;
*/
io.grpc.channelz.v1.ChannelTraceOrBuilder getTraceOrBuilder();
/**
*
* The number of incoming calls started on the server
*
*
* int64 calls_started = 2;
* @return The callsStarted.
*/
long getCallsStarted();
/**
*
* The number of incoming calls that have completed with an OK status
*
*
* int64 calls_succeeded = 3;
* @return The callsSucceeded.
*/
long getCallsSucceeded();
/**
*
* The number of incoming calls that have a completed with a non-OK status
*
*
* int64 calls_failed = 4;
* @return The callsFailed.
*/
long getCallsFailed();
/**
*
* The last time a call was started on the server.
*
*
* .google.protobuf.Timestamp last_call_started_timestamp = 5;
* @return Whether the lastCallStartedTimestamp field is set.
*/
boolean hasLastCallStartedTimestamp();
/**
*
* The last time a call was started on the server.
*
*
* .google.protobuf.Timestamp last_call_started_timestamp = 5;
* @return The lastCallStartedTimestamp.
*/
com.google.protobuf.Timestamp getLastCallStartedTimestamp();
/**
*
* The last time a call was started on the server.
*
*
* .google.protobuf.Timestamp last_call_started_timestamp = 5;
*/
com.google.protobuf.TimestampOrBuilder getLastCallStartedTimestampOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy