annotate collector_config.py @ 13:bfd95926be6e default tip

initial port to starlette. missing some disconnect & cleanup functionality
author drewp@bigasterisk.com
date Sat, 26 Nov 2022 14:13:51 -0800
parents eeb94f34a956
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
1 config = {
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
2 'streams': [
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
3 {
10
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
4 'id': 'lanscape',
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
5 'sources': [
10
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
6 'http://10.2.0.3:9998/graph/dhcp/events',
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
7 'http://lanscape/lanscape/graph/netDevices/events',
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
8 ]
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
9 },
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
10 {
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
11 'id': 'reposync',
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
12 'sources': [
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
13 'http://reposync:8000/graph/githubRepos/events',
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
14 'http://reposync:8001/graph/localRepos/events',
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
15 ]
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
16 },
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
17 {
4
4e05f0a88d63 dump a lot of leftover config
drewp@bigasterisk.com
parents: 0
diff changeset
18 'id': 'home',
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
19 'sources': [
10
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
20 'http://environment/graph/environment/events',
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
21 'http://mqtt-to-rdf/graph/mqtt/events',
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
22 ]
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
23 },
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
24 {
4
4e05f0a88d63 dump a lot of leftover config
drewp@bigasterisk.com
parents: 0
diff changeset
25 'id': 'frontDoor', # used for front door display
10
eeb94f34a956 new stream combo configs
drewp@bigasterisk.com
parents: 4
diff changeset
26 'sources': ['http://mqtt-to-rdf/graph/mqtt/events']
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
27 },
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
28 {
4
4e05f0a88d63 dump a lot of leftover config
drewp@bigasterisk.com
parents: 0
diff changeset
29 'id': 'network',
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
30 'sources': [
4
4e05f0a88d63 dump a lot of leftover config
drewp@bigasterisk.com
parents: 0
diff changeset
31 # lanscape
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
32 ]
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
33 },
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
34 {
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
35 'id': 'env',
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
36 'sources': [
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
37 # 'http://bang:9075/graph/environment/events',
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
38 ]
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
39 },
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
40 ]
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
41 }