|
59 | 59 | "type": "string",
|
60 | 60 | "description": "The UUID of the ultimate question that triggered this tree of questions.",
|
61 | 61 | },
|
62 |
| - "forward_logs": {"type": "boolean"}, |
63 |
| - "save_diagnostics": { |
64 |
| - "enum": ["SAVE_DIAGNOSTICS_OFF", "SAVE_DIAGNOSTICS_ON_CRASH", "SAVE_DIAGNOSTICS_ON"] |
65 |
| - }, |
66 | 62 | "parent": {
|
67 | 63 | "type": "string",
|
68 | 64 | "description": "The service revision unique identifier (SRUID) of the parent that asked the question this event is related to.",
|
|
97 | 93 | "description": "The retry count for the question. All events related to the retry of a given question will have the same retry count. A question that is being asked for the first time will have a retry count of 0.",
|
98 | 94 | "minimum": 0,
|
99 | 95 | },
|
| 96 | + "forward_logs": { |
| 97 | + "type": "boolean", |
| 98 | + "description": "If `True`, forward any logs from the child to the parent and handle them with the local log handlers", |
| 99 | + }, |
| 100 | + "save_diagnostics": { |
| 101 | + "type": "string", |
| 102 | + "enum": ["SAVE_DIAGNOSTICS_OFF", "SAVE_DIAGNOSTICS_ON_CRASH", "SAVE_DIAGNOSTICS_ON"], |
| 103 | + "description": "If turned on, allow the input values and manifest (and its datasets) to be saved either all the time or just if the analysis fails", |
| 104 | + }, |
| 105 | + "cpus": { |
| 106 | + "type": "integer", |
| 107 | + "minimum": 1, |
| 108 | + "description": "The number of CPUs to request for the question; defaults to the number set by the child service", |
| 109 | + }, |
| 110 | + "memory": { |
| 111 | + "type": "string", |
| 112 | + "description": "The amount of memory to request for the question; defaults to the amount set by the child service", |
| 113 | + "examples": ["256Mi", "1Gi"], |
| 114 | + }, |
| 115 | + "ephemeral_storage": { |
| 116 | + "type": "string", |
| 117 | + "description": "The amount of ephemeral storage to request for the question; defaults to the amount set by the child service", |
| 118 | + "examples": ["256Mi", "1Gi"], |
| 119 | + }, |
100 | 120 | },
|
101 | 121 | "required": [
|
102 | 122 | "datetime",
|
103 | 123 | "uuid",
|
104 | 124 | "question_uuid",
|
105 | 125 | "originator_question_uuid",
|
106 |
| - "forward_logs", |
107 |
| - "save_diagnostics", |
108 | 126 | "parent",
|
109 | 127 | "originator",
|
110 | 128 | "sender",
|
111 | 129 | "sender_type",
|
112 | 130 | "sender_sdk_version",
|
113 | 131 | "recipient",
|
114 | 132 | "retry_count",
|
| 133 | + "forward_logs", |
| 134 | + "save_diagnostics", |
115 | 135 | ],
|
116 | 136 | },
|
117 | 137 | {
|
|
0 commit comments