-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
223 lines (192 loc) · 6.34 KB
/
config.js
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* Copyright 2015 Telefonica Investigación y Desarrollo, S.A.U
*
* This file is part of iotagent-mqtt
*
* iotagent-mqtt is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* iotagent-mqtt is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with iotagent-mqtt.
* If not, seehttp://www.gnu.org/licenses/.
*
* For those usages not covered by the GNU Affero General Public License
* please contact with::[contacto@tid.es]
*/
var config = {};
/**
* Configuration for the MQTT binding.
*/
config.mqtt = {
/**
* Host where the MQTT Broker is located.
*/
host: 'localhost',
/**
* Port where the MQTT Broker is listening
*/
port: 1883
/**
* User name for the IoTAgent in the MQTT broker, if authentication is activated.
*/
//username: ''
/**
* Password for the IoTAgent in the MQTT broker, if authentication is activated.
*/
//password: ''
};
/**
* Conmfiguration for the HTTP transport binding.
*/
config.http = {
/**
* Port where the HTTP Ultralight transport binding will be listening for device requests.
*/
port: 7896
};
config.iota = {
/**
* Configures the log level. Appropriate values are: FATAL, ERROR, INFO, WARN and DEBUG.
*/
logLevel: 'DEBUG',
/**
* When this flag is active, the IoTAgent will add the TimeInstant attribute to every entity created, as well
* as a TimeInstant metadata to each attribute, with the current timestamp.
*/
timestamp: true,
/**
* Context Broker configuration. Defines the connection information to the instance of the Context Broker where
* the IoT Agent will send the device data.
*/
contextBroker: {
/**
* Host where the Context Broker is located.
*/
host: 'localhost',
/**
* Port where the Context Broker is listening.
*/
port: '1026'
},
/**
* Configuration of the Northbound server of the IoT Agent.
*/
server: {
/**
* Port where the IoT Agent will be listening for requests.
*/
port: 4061
},
/**
* Configuration for the IoT Manager. If the IoT Agent is part of a configuration composed of multiple IoTAgents
* coordinated by an IoT Manager, this section defines the information that will be used to connect with that manager.
*/
//iotManager: {
/**
* Host where the IoT Manager is located.
*/
//host: 'localhost',
/**
* Port where the IoT Manager is listening.
*/
//port: 8082,
/**
* Path where the IoT Manager accepts subscriptions.
*/
//path: '/protocols',
/**
* Protocol code identifying this IoT Agent.
*/
//protocol: 'MQTT_UL',
/**
* Textual description of this IoT Agent.
*/
//description: 'MQTT Ultralight 2.0 IoT Agent (Node.js version)'
//},
/**
* Default resource of the IoT Agent. This value must be different for every IoT Agent connecting to the IoT
* Manager.
*/
defaultResource: '/iot/d',
/**
* Defines the configuration for the Device Registry, where all the information about devices and configuration
* groups will be stored. There are currently just two types of registries allowed:
*
* - 'memory': transient memory-based repository for testing purposes. All the information in the repository is
* wiped out when the process is restarted.
*
* - 'mongodb': persistent MongoDB storage repository. All the details for the MongoDB configuration will be read
* from the 'mongoDb' configuration property.
*/
deviceRegistry: {
type: 'mongodb'
},
/**
* Mongo DB configuration section. This section will only be used if the deviceRegistry property has the type
* 'mongodb'.
*/
mongodb: {
/**
* Host where MongoDB is located. If the MongoDB used is a replicaSet, this property will contain a
* comma-separated list of the instance names or IPs.
*/
host: 'localhost',
/**
* Port where MongoDB is listening. In the case of a replicaSet, all the instances are supposed to be listening
* in the same port.
*/
port: '27017',
/**
* Name of the Mongo database that will be created to store IOTAgent data.
*/
db: 'iotagentul'
/**
* Name of the set in case the Mongo database is configured as a Replica Set. Optional otherwise.
*/
//replicaSet: ''
},
/**
* Types array for static configuration of services. Check documentation in the IoTAgent Library for Node.js for
* further details:
*
* https://github.com/telefonicaid/iotagent-node-lib#type-configuration
*/
types: {},
/**
* Default service, for IOTA installations that won't require preregistration.
*/
service: 'howtoService',
/**
* Default subservice, for IOTA installations that won't require preregistration.
*/
subservice: '/howto',
/**
* URL Where the IOTA Will listen for incoming updateContext and queryContext requests (for commands and passive
* attributes). This URL will be sent in the Context Registration requests.
*/
providerUrl: 'http://localhost:4061',
/**
* Default maximum expire date for device registrations.
*/
deviceRegistrationDuration: 'P1Y',
/**
* Default type, for IOTA installations that won't require preregistration.
*/
defaultType: 'ThingUL'
};
/**
* Default API Key, to use with device that have been provisioned without a Configuration Group.
*/
config.defaultKey = 'TEF';
/**
* Default transport protocol when no transport is provisioned through the Device Provisioning API.
*/
config.defaultTransport = 'MQTT';
module.exports = config;