-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Now that we have standardized the output schema it would be great to include timing information to track how long certain tasks are taking. Then the reporter provider can use that data to either present it or not.
Currently a task has the current schema looks like the following:
"properties": {
"info": {
"type": "object",
"properties": {
"taskName": {
"type": "string"
},
"friendlyTaskName": {
"type": "string"
},
"taskClassification": {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"group": {
"type": "string"
}
},
"required": ["category"]
}
},
"required": ["taskName", "friendlyTaskName", "taskClassification"]
}
}
I propose adding a time object to info property:
"time": {
"type": "object",
"properties": {
"elapsed": {
"type": "number"
},
},
}
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested