Interface RunningProcessOrBuilder

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

    public interface RunningProcessOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • getPid

        long getPid()
         Process ID.
         
        int64 pid = 1;
        Returns:
        The pid.
      • getExePath

        String getExePath()
         Process binary path.
         
        string exe_path = 2;
        Returns:
        The exePath.
      • getExePathBytes

        com.google.protobuf.ByteString getExePathBytes()
         Process binary path.
         
        string exe_path = 2;
        Returns:
        The bytes for exePath.
      • getCmdline

        String getCmdline()
         Process full command line.
         
        string cmdline = 3;
        Returns:
        The cmdline.
      • getCmdlineBytes

        com.google.protobuf.ByteString getCmdlineBytes()
         Process full command line.
         
        string cmdline = 3;
        Returns:
        The bytes for cmdline.
      • getUser

        String getUser()
         User running the process.
         
        string user = 4;
        Returns:
        The user.
      • getUserBytes

        com.google.protobuf.ByteString getUserBytes()
         User running the process.
         
        string user = 4;
        Returns:
        The bytes for user.
      • getAttributesCount

        int getAttributesCount()
         Process extended attributes.
         
        map<string, string> attributes = 100;
      • containsAttributes

        boolean containsAttributes​(String key)
         Process extended attributes.
         
        map<string, string> attributes = 100;
      • getAttributesMap

        Map<String,​String> getAttributesMap()
         Process extended attributes.
         
        map<string, string> attributes = 100;
      • getAttributesOrDefault

        String getAttributesOrDefault​(String key,
                                      String defaultValue)
         Process extended attributes.
         
        map<string, string> attributes = 100;
      • getAttributesOrThrow

        String getAttributesOrThrow​(String key)
         Process extended attributes.
         
        map<string, string> attributes = 100;