-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.json
More file actions
90 lines (90 loc) · 1.99 KB
/
output.json
File metadata and controls
90 lines (90 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[
{
"name": "workflow1",
"scheduled_at": 1641480759,
"completed_at": 1641480814,
"tasks": [
{
"name": "task1",
"started_at": 1641480759,
"completed_at": 1641480779,
"worker": "w1",
"cost": 20,
"dependencies": [],
"description": "Fetch customer data"
},
{
"name": "task2",
"started_at": 1641480779,
"completed_at": 1641480789,
"worker": "w1",
"cost": 10,
"dependencies": [
"task1"
],
"description": "Extract order information"
},
{
"name": "task3",
"started_at": 1641480789,
"completed_at": 1641480799,
"worker": "w2",
"cost": 10,
"dependencies": [
"task2"
],
"description": "Run Order validation rules"
},
{
"name": "task4",
"started_at": 1641480789,
"completed_at": 1641480804,
"worker": "w1",
"cost": 15,
"dependencies": [
"task2"
],
"description": "Run Company validation rules"
},
{
"name": "task5",
"started_at": 1641480804,
"completed_at": 1641480814,
"worker": "w1",
"cost": 10,
"dependencies": [
"task3",
"task4"
],
"description": "Post validation results"
}
]
},
{
"name": "workflow3",
"scheduled_at": 1641480799,
"completed_at": 1641480809,
"tasks": [
{
"name": "task1",
"started_at": 1641480799,
"completed_at": 1641480804,
"worker": "w2",
"cost": 5,
"dependencies": [],
"description": "Fetch customer data"
},
{
"name": "task2",
"started_at": 1641480804,
"completed_at": 1641480809,
"worker": "w2",
"cost": 5,
"dependencies": [
"task1"
],
"description": "Extract personal customer information"
}
]
}
]