forked from pbonte/StreamingMASSIF
-
Notifications
You must be signed in to change notification settings - Fork 2
/
configs.json
111 lines (108 loc) · 2.31 KB
/
configs.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"components": {
"comp1": {
"type": "Sink",
"impl": "PrintSink"
},
"sink2": {
"type": "Sink",
"impl": "HTTPGetSinkCombined",
"path":"sink",
"config":"last"
},
"comp2": {
"type": "window",
"size": 1,
"slide": 1
},
"comp3": {
"type": "Filter",
"queries": ["CONSTRUCT{?obs ?p ?o.} WHERE {?obs <http://www.w3.org/ns/sosa/observedProperty> <http://example.com/features/environment.light%3A%3Anumber/properties/environment.light%3A%3Anumber>; <http://www.w3.org/ns/sosa/madeBySensor> [ <http://example.com/sensors/has_location> <https://igentprojectLBD#space_21b36f84-98e4-4689-924f-112fb8dd0558>]. ?obs ?p ?o}"],
"ontology":"http://aaa-master.aaadev.wall2-ilabt-iminds-be.wall2.ilabt.iminds.be:30081/sensors.ttl"
},
"comp4": {
"type": "Abstract",
"expressions": [
{
"head": "http://massif.test/EventA",
"tail": "Observation"
}
]
},
"comp5": {
"type": "Source",
"impl": "HTTPGetSource",
"url": "http://aaa-master.aaadev.wall2-ilabt-iminds-be.wall2.ilabt.iminds.be:30080/httpgetsink/sink",
"timeout": 1000
}
},
"configuration": {
"comp1": [],
"comp3": [
"comp1"
],
"comp2": [
"comp3"
],
"comp5": [
"comp2",
"sink2"
],
"comp4": [
"comp1"
]
}
}
{
"components": {
"print": {
"type": "Sink",
"impl": "PrintSink"
},
"window": {
"type": "window",
"size": 1,
"slide": 1
},
"filter": {
"type": "Filter",
"queries": ["CONSTRUCT{?s ?p ?p.} WHERE {?s ?p ?o}"]
},
"abstract": {
"type": "Abstract",
"expressions": [
{
"head": "http://massif.test/EventA",
"tail": "Observation"
}
]
},
"kafka": {
"type": "Source",
"impl": "KafkaSource",
"kafkaServer": "kafka-headless.kafka:9092",
"kafkaTopic": "idlab.homelab.semantic"
},
"sink": {
"type": "Sink",
"impl": "HTTPGetSinkCombined",
"path":"sink",
"config":"last"
},
},
"configuration": {
"print": [],
"abstract": [
"print"
],
"window": [
"filter"
],
"kafka": [
"sink"
],
"filter": [
"abstract"
]
}
}