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 Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsAttributes(String key)Process extended attributes.Map<String,String>getAttributes()Deprecated.intgetAttributesCount()Process extended attributes.Map<String,String>getAttributesMap()Process extended attributes.StringgetAttributesOrDefault(String key, String defaultValue)Process extended attributes.StringgetAttributesOrThrow(String key)Process extended attributes.StringgetCmdline()Process full command line.com.google.protobuf.ByteStringgetCmdlineBytes()Process full command line.StringgetExePath()Process binary path.com.google.protobuf.ByteStringgetExePathBytes()Process binary path.longgetPid()Process ID.StringgetUser()User running the process.com.google.protobuf.ByteStringgetUserBytes()User running the process.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
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;
-
getAttributes
@Deprecated Map<String,String> getAttributes()
Deprecated.UsegetAttributesMap()instead.
-
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;
-
-