Interface ProcessIdentifierOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ProcessIdentifier, ProcessIdentifier.Builder

    public interface ProcessIdentifierOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getHostName()
      The host name.
      com.google.protobuf.ByteString getHostNameBytes()
      The host name.
      int getPid()
      Process id.
      com.google.protobuf.Timestamp getStartTimestamp()
      Start time of this ProcessIdentifier.
      com.google.protobuf.TimestampOrBuilder getStartTimestampOrBuilder()
      Start time of this ProcessIdentifier.
      boolean hasStartTimestamp()
      Start time of this ProcessIdentifier.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getHostName

        String getHostName()
         The host name. Usually refers to the machine/container name.
         For example: os.Hostname() in Go, socket.gethostname() in Python.
         
        string host_name = 1;
        Returns:
        The hostName.
      • getHostNameBytes

        com.google.protobuf.ByteString getHostNameBytes()
         The host name. Usually refers to the machine/container name.
         For example: os.Hostname() in Go, socket.gethostname() in Python.
         
        string host_name = 1;
        Returns:
        The bytes for hostName.
      • getPid

        int getPid()
         Process id.
         
        uint32 pid = 2;
        Returns:
        The pid.
      • hasStartTimestamp

        boolean hasStartTimestamp()
         Start time of this ProcessIdentifier. Represented in epoch time.
         
        .google.protobuf.Timestamp start_timestamp = 3;
        Returns:
        Whether the startTimestamp field is set.
      • getStartTimestamp

        com.google.protobuf.Timestamp getStartTimestamp()
         Start time of this ProcessIdentifier. Represented in epoch time.
         
        .google.protobuf.Timestamp start_timestamp = 3;
        Returns:
        The startTimestamp.
      • getStartTimestampOrBuilder

        com.google.protobuf.TimestampOrBuilder getStartTimestampOrBuilder()
         Start time of this ProcessIdentifier. Represented in epoch time.
         
        .google.protobuf.Timestamp start_timestamp = 3;