-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.example.automation.json
79 lines (79 loc) · 1.84 KB
/
spec.example.automation.json
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
{
"trigger": {
"type": "CRON",
"name": "test-email",
"manifest": {
"expression": "*/1 * * * ? *"
}
},
"procedure": {
"real_procedure": [
{
"name": "profit-margin",
"reference": "profit-margin"
}
],
"procedure": [
{
"step-name": "linear-regression",
"procedure-name": "linear-regression.py",
"entrypoint": "LinearRegression",
"arguments": {
"data": {
"value": "real_procedure.profit-margin",
"type": "string"
},
"time_column": {
"value": "time",
"type": "string"
},
"metrics": {
"value": [
"profit",
"margin"
]
},
"days": {
"value": 100
},
"group_by": {
"value": [
"bin"
],
"type": [
"string"
]
}
}
}
]
},
"action": [
{
"type": "email",
"name": "alert-email",
"manifest": {
"to": "mroggia@technity.it",
"body": {
"html": "<html><body><h1>Hello!</h1><p>These products are not performing well:</p>|{|range array .bin|}|<a href='https://member.bokibee.ninja/#/products/bin/|{|.|}|'>|{|.|}|</a><br>|{|end|}|</body></html>",
"text": "Hello, These products are not performing well: |{|range array .bin|}||{|.|}|, |{|end|}|"
},
"subject": "Bokibee Alert"
},
"depends": [
{
"value": "procedure.root",
"template": ".bin"
}
]
}
],
"arguments": {
"real_procedure.profit-margin.data.product-profitability.select": "bin",
"real_procedure.profit-margin.procedure.series.group_by": "bin",
"real_procedure.profit-margin.procedure.profit.group_by": "bin",
"real_procedure.profit-margin.procedure.margin.group_by": "bin",
"real_procedure.profit-margin.procedure.merge.group_by": "bin",
"procedure.linear-regression.group_by": "bin"
}
}