Class NMAuditLogger
java.lang.Object
org.apache.hadoop.yarn.server.nodemanager.NMAuditLogger
Manages NodeManager audit logs.
Audit log format is written as key=value pairs. Tab separated.
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidlogFailure(String user, String operation, String target, String description) Create a readable and parseable audit log string for a failed event.static voidlogFailure(String user, String operation, String target, String description, org.apache.hadoop.yarn.api.records.ApplicationId appId, org.apache.hadoop.yarn.api.records.ContainerId containerId) Create a readable and parseable audit log string for a failed event.static voidlogSuccess(String user, String operation, String target) Create a readable and parseable audit log string for a successful event.static voidlogSuccess(String user, String operation, String target, org.apache.hadoop.yarn.api.records.ApplicationId appId, org.apache.hadoop.yarn.api.records.ContainerId containerId) Create a readable and parseable audit log string for a successful event.
-
Constructor Details
-
NMAuditLogger
public NMAuditLogger()
-
-
Method Details
-
logSuccess
public static void logSuccess(String user, String operation, String target, org.apache.hadoop.yarn.api.records.ApplicationId appId, org.apache.hadoop.yarn.api.records.ContainerId containerId) Create a readable and parseable audit log string for a successful event.- Parameters:
user- User who made the service request.operation- Operation requested by the usertarget- The target on which the operation is being performed.appId- Application Id in which operation was performed.containerId- Container Id in which operation was performed.
Note that theNMAuditLoggeruses tabs ('\t') as a key-val delimiter and hence the value fields should not contains tabs ('\t').
-
logSuccess
Create a readable and parseable audit log string for a successful event.- Parameters:
user- User who made the service request.operation- Operation requested by the usertarget- The target on which the operation is being performed.
Note that theNMAuditLoggeruses tabs ('\t') as a key-val delimiter and hence the value fields should not contains tabs ('\t').
-
logFailure
public static void logFailure(String user, String operation, String target, String description, org.apache.hadoop.yarn.api.records.ApplicationId appId, org.apache.hadoop.yarn.api.records.ContainerId containerId) Create a readable and parseable audit log string for a failed event.- Parameters:
user- User who made the service request.operation- Operation requested by the user.target- The target on which the operation is being performed.description- Some additional information as to why the operation failed.appId- ApplicationId in which operation was performed.containerId- Container Id in which operation was performed.
Note that theNMAuditLoggeruses tabs ('\t') as a key-val delimiter and hence the value fields should not contains tabs ('\t').
-
logFailure
Create a readable and parseable audit log string for a failed event.- Parameters:
user- User who made the service request.operation- Operation requested by the user.target- The target on which the operation is being performed.description- Some additional information as to why the operation failed.
Note that theNMAuditLoggeruses tabs ('\t') as a key-val delimiter and hence the value fields should not contains tabs ('\t').
-