diff --git a/Protos/V1/tasks_common.proto b/Protos/V1/tasks_common.proto index 692f3a405..169da9118 100644 --- a/Protos/V1/tasks_common.proto +++ b/Protos/V1/tasks_common.proto @@ -51,6 +51,7 @@ message TaskDetailed { google.protobuf.Duration received_to_end_duration = 23; /** The task calculated duration. Between the received date and the end date. */ string payload_id = 26; /** The ID of the Result that is used as a payload for this task. */ + string created_by = 27; /** The ID of the Task that as submitted this task empty if none.*/ /** * Represents the task output. @@ -102,6 +103,7 @@ message TaskSummary { google.protobuf.Duration received_to_end_duration = 24; /** The task calculated duration. Between the received date and the end date. */ string payload_id = 26; /** The ID of the Result that is used as a payload for this task. */ + string created_by = 27; /** The ID of the Task that as submitted this task empty if none.*/ string error = 8; /** The error message. Only set if task have failed. */ string pod_hostname = 17; /** The hostname of the container running the task. */ diff --git a/Protos/V1/tasks_fields.proto b/Protos/V1/tasks_fields.proto index 7e2dd6e6b..8ed611b75 100644 --- a/Protos/V1/tasks_fields.proto +++ b/Protos/V1/tasks_fields.proto @@ -29,6 +29,7 @@ enum TaskSummaryEnumField { TASK_SUMMARY_ENUM_FIELD_ERROR = 8; /** The error message. Only set if task have failed. */ TASK_SUMMARY_ENUM_FIELD_FETCHED_AT = 19; /** When task data are fetched by the agent. */ TASK_SUMMARY_ENUM_FIELD_PAYLOAD_ID = 20; /** The ID of the Result that is used as a payload for this task. */ + TASK_SUMMARY_ENUM_FIELD_CREATED_BY = 21; /** The ID of the Result that is used as a payload for this task. */ } /**