| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- from enum import Enum
- # A set containing the standard attributes of a LogRecord. This is used to
- # help us determine which attributes constitute Ray or user-provided context. It is
- # also be used to determine whether a attribute is a standard python logging attribute.
- # http://docs.python.org/library/logging.html#logrecord-attributes
- LOGRECORD_STANDARD_ATTRS = {
- "args",
- "asctime",
- "created",
- "exc_info",
- "exc_text",
- "filename",
- "funcName",
- "levelname",
- "levelno",
- "lineno",
- "message",
- "module",
- "msecs",
- "msg",
- "name",
- "pathname",
- "process",
- "processName",
- "relativeCreated",
- "stack_info",
- "thread",
- "threadName",
- "taskName",
- }
- LOGGER_FLATTEN_KEYS = {
- "ray_serve_extra_fields",
- }
- class LogKey(str, Enum):
- # Core context
- JOB_ID = "job_id"
- WORKER_ID = "worker_id"
- NODE_ID = "node_id"
- ACTOR_ID = "actor_id"
- TASK_ID = "task_id"
- ACTOR_NAME = "actor_name"
- TASK_NAME = "task_name"
- TASK_FUNCTION_NAME = "task_func_name"
- # Logger built-in context
- ASCTIME = "asctime"
- LEVELNAME = "levelname"
- MESSAGE = "message"
- FILENAME = "filename"
- LINENO = "lineno"
- EXC_TEXT = "exc_text"
- PROCESS = "process"
- # Ray logging context
- TIMESTAMP_NS = "timestamp_ns"
|