ProcessSetSpecificationDetails¶
-
class
oci.stack_monitoring.models.
ProcessSetSpecificationDetails
(**kwargs)¶ Bases:
object
Details of a single regular expression specification in a Process Set.
Methods
__init__
(**kwargs)Initializes a new ProcessSetSpecificationDetails object with values from keyword arguments. Attributes
label
Gets the label of this ProcessSetSpecificationDetails. process_command
Gets the process_command of this ProcessSetSpecificationDetails. process_line_regex_pattern
Gets the process_line_regex_pattern of this ProcessSetSpecificationDetails. process_user
Gets the process_user of this ProcessSetSpecificationDetails. -
__init__
(**kwargs)¶ Initializes a new ProcessSetSpecificationDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - label (str) – The value to assign to the label property of this ProcessSetSpecificationDetails.
- process_command (str) – The value to assign to the process_command property of this ProcessSetSpecificationDetails.
- process_user (str) – The value to assign to the process_user property of this ProcessSetSpecificationDetails.
- process_line_regex_pattern (str) – The value to assign to the process_line_regex_pattern property of this ProcessSetSpecificationDetails.
-
label
¶ Gets the label of this ProcessSetSpecificationDetails. Optional label used to identify a single filter.
Returns: The label of this ProcessSetSpecificationDetails. Return type: str
-
process_command
¶ Gets the process_command of this ProcessSetSpecificationDetails. String literal used for exact matching on process name.
Returns: The process_command of this ProcessSetSpecificationDetails. Return type: str
-
process_line_regex_pattern
¶ Gets the process_line_regex_pattern of this ProcessSetSpecificationDetails. Regex pattern matching on process arguments.
Returns: The process_line_regex_pattern of this ProcessSetSpecificationDetails. Return type: str
-
process_user
¶ Gets the process_user of this ProcessSetSpecificationDetails. String literal used for exact matching on process user.
Returns: The process_user of this ProcessSetSpecificationDetails. Return type: str
-