Interface EBPFHostProcessMetadataOrBuilder

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

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

    Modifier and Type
    Method
    Description
    [required] Process full command line
    com.google.protobuf.ByteString
    [required] Process full command line
    [required] Entity metadata Must ensure that entity information is unique at the time of reporting
    [required] Entity metadata Must ensure that entity information is unique at the time of reporting
    [required] The IP address of the host where the process resides
    com.google.protobuf.ByteString
    [required] The IP address of the host where the process resides
    int
    [required] The Process id of the host
    boolean
    [required] Entity metadata Must ensure that entity information is unique at the time of reporting

    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 Details

    • hasEntity

      boolean hasEntity()
       [required] Entity metadata
       Must ensure that entity information is unique at the time of reporting
       
      .skywalking.v3.EBPFProcessEntityMetadata entity = 1;
      Returns:
      Whether the entity field is set.
    • getEntity

       [required] Entity metadata
       Must ensure that entity information is unique at the time of reporting
       
      .skywalking.v3.EBPFProcessEntityMetadata entity = 1;
      Returns:
      The entity.
    • getEntityOrBuilder

       [required] Entity metadata
       Must ensure that entity information is unique at the time of reporting
       
      .skywalking.v3.EBPFProcessEntityMetadata entity = 1;
    • getCmd

      String getCmd()
       [required] Process full command line
       
      string cmd = 2;
      Returns:
      The cmd.
    • getCmdBytes

      com.google.protobuf.ByteString getCmdBytes()
       [required] Process full command line
       
      string cmd = 2;
      Returns:
      The bytes for cmd.
    • getHostIP

      String getHostIP()
       [required] The IP address of the host where the process resides
       
      string hostIP = 3;
      Returns:
      The hostIP.
    • getHostIPBytes

      com.google.protobuf.ByteString getHostIPBytes()
       [required] The IP address of the host where the process resides
       
      string hostIP = 3;
      Returns:
      The bytes for hostIP.
    • getPid

      int getPid()
       [required] The Process id of the host
       
      int32 pid = 4;
      Returns:
      The pid.