-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Resolve rabbimq_address automatically. * Remove rabbitmq_address from JSON configs. * Remove obsolete variable rabbitmq_vhost in pub and sub config
- Loading branch information
1 parent
ae9fc5b
commit 3417f56
Showing
18 changed files
with
65 additions
and
63 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 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 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 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 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 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 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 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 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 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,51 @@ | ||
{ | ||
"modules": [ | ||
{ | ||
"name": "MockSource", | ||
"package": "cloudbrain.modules.sources.mock", | ||
"options": { | ||
"sampling_frequency": 250.0, | ||
"alpha_amplitude": 10.0, | ||
"alpha_freq": 10.0, | ||
"beta_amplitude": 5.0, | ||
"beta_freq": 25.0, | ||
"notch_amplitude": 0.0, | ||
"notch_freq": 60.0, | ||
"noise_amplitude": 10.0, | ||
"number_points": 249 | ||
}, | ||
"publishers": [ | ||
{ | ||
"name": "PikaPublisher", | ||
"package": "cloudbrain.publishers.rabbitmq", | ||
"options": { | ||
"rabbitmq_user": "[email protected]", | ||
"rabbitmq_pwd": "test" | ||
}, | ||
"base_routing_key": "mock", | ||
"metrics": [ | ||
{ | ||
"metric_name": "eeg", | ||
"num_channels": 8, | ||
"buffer_size": 10 | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "PipePublisher", | ||
"package": "cloudbrain.publishers.pipe", | ||
"options": {}, | ||
"base_routing_key": "some_unique_key", | ||
"metrics": [ | ||
{ | ||
"metric_name": "eeg", | ||
"num_channels": 8, | ||
"buffer_size": 100 | ||
} | ||
] | ||
} | ||
], | ||
"subscribers": [] | ||
} | ||
] | ||
} |
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 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 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 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 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 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 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 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