-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Improved Performance (better usage of Streams instead of byte arrays) - Improved Client Performance by caching DataItems and Components
- Loading branch information
1 parent
f74f513
commit 173b89f
Showing
71 changed files
with
1,094 additions
and
816 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# - Device Configuration - | ||
devices: devices | ||
|
||
# - Processors - | ||
processors: | ||
- python: # - Add Python Processor | ||
directory: processors | ||
|
||
# - Modules - | ||
modules: | ||
|
||
- http-server: # - Add HTTP Server module | ||
# hostname: localhost | ||
port: 5000 | ||
# allowPut: true | ||
indentOutput: true | ||
documentFormat: xml | ||
accept: | ||
text/xml: xml | ||
application/json: json | ||
# responseCompression: | ||
# - gzip | ||
# - br | ||
# files: | ||
# - path: schemas | ||
# location: schemas | ||
# - path: styles | ||
# location: styles | ||
# - path: styles/favicon.ico | ||
# location: favicon.ico | ||
|
||
# - mqtt-relay: # - Add MQTT Relay module | ||
# server: localhost | ||
# port: 1883 | ||
# currentInterval: 5000 | ||
# sampleInterval: 500 | ||
|
||
# - shdr-adapter: # - Add SHDR Adapter module for Device = M12346 and Port = 7878 | ||
# deviceKey: M12346 | ||
# hostname: localhost | ||
# port: 7878 | ||
# heartbeat: 1000 | ||
# reconnectInterval: 1000 | ||
# connectionTimeout: 1000 | ||
|
||
- shdr-adapter: # - Add SHDR Adapter module for Device = OKUMA-Lathe and Port = 7879 | ||
deviceKey: OKUMA-Lathe | ||
hostname: localhost | ||
port: 7878 | ||
heartbeat: 1000 | ||
reconnectInterval: 1000 | ||
connectionTimeout: 1000 | ||
|
||
# - mqtt-adapter: # - Add MQTT Adapter module for Device = M12346 and Topic = cnc-01 | ||
# deviceKey: M12346 | ||
# server: localhost | ||
# port: 1883 | ||
# topic: cnc-01 | ||
|
||
|
||
# The maximum number of Observations the agent can hold in its buffer | ||
observationBufferSize: 150000 | ||
|
||
# The maximum number of assets the agent can hold in its buffer | ||
assetBufferSize: 1000 | ||
|
||
# Sets whether the Agent buffers are durable and retain state after restart | ||
durable: false | ||
|
||
# Sets the default MTConnect version to output response documents for. | ||
defaultVersion: 2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.