-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.example.action.json
72 lines (72 loc) · 1.71 KB
/
spec.example.action.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
{
"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": "[email protected]",
"body": {
"html": "<html><body><h1>Hello!</h1><p>These products are not performing well:</p>|{|range .bin|}|<a href='https://member.bokibee.ninja/#/products/bin/|{|.|}|'>|{|.|}|</a><br>|{|end|}|</body></html>",
"text": "Hello, These products are not performing well: |{|range .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"
}
}