diff options
author | gokuls <goksing@gmail.com> | 2017-05-17 21:52:10 -0700 |
---|---|---|
committer | gokuls <goksing@gmail.com> | 2017-05-17 22:00:58 -0700 |
commit | 6c98a31b980d1d6cbbc9aeb2064d3f1c2252c3da (patch) | |
tree | ae79fd4a40dc9538100c2c3748f9025deda65a76 /VES5.0/collector/config | |
parent | 0e6ed6d79983a9726ff6fe699d921356c4c5cc2f (diff) |
VES5.0 development changes not for test
Change-Id: Ib44b38d24e8c841c1a85aaf82265b10f3d387b0c
Signed-off-by: Gokul Singaraju <goksing@gmail.com>
Diffstat (limited to 'VES5.0/collector/config')
-rw-r--r-- | VES5.0/collector/config/collector.conf | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/VES5.0/collector/config/collector.conf b/VES5.0/collector/config/collector.conf new file mode 100644 index 00000000..224e7b04 --- /dev/null +++ b/VES5.0/collector/config/collector.conf @@ -0,0 +1,83 @@ +#------------------------------------------------------------------------------ +# This is a config file for the collector test harness. +# +# On the target platform is is expected to be located in: +# +# /etc/opt/att/collector.conf +# +# However, the location can be overridden by setting the --config <file> +# argument to the collector code. +#------------------------------------------------------------------------------ + +#------------------------------------------------------------------------------ +# The default section to be used. Alternative configuration sections can be +# provided by using the --section <name> command-line parameter. +#------------------------------------------------------------------------------ +[default] +log_file = /var/log/att/collector.log +schema_file = ../../docs/att_interface_definition/event_format_updated.json +base_schema_file = ../../docs/att_interface_definition/base_schema.json +throttle_schema_file = ../../docs/att_interface_definition/throttle_schema.json +test_control_schema_file = ../../docs/att_interface_definition/test_control_schema.json + +#------------------------------------------------------------------------------ +# Details of the Vendor Event Listener REST service. +# +# REST resources are defined with respect to a ServerRoot: +# ServerRoot = https://{Domain}:{Port}/{optionalRoutingPath} +# +# REST resources are of the form: +# * {ServerRoot}/eventListener/v{apiVersion} +# * {ServerRoot}/eventListener/v{apiVersion}/{topicName} +# * {ServerRoot}/eventListener/v{apiVersion}/eventBatch +# * {ServerRoot}/eventListener/v{apiVersion}/clientThrottlingState +# +# The "vel_topic_name" parameter is used as the "topicName" element in the path +# and may be empty. +# +# Note that the path, if present, should have no leading "/" but should have a +# training "/". +#------------------------------------------------------------------------------ +vel_domain = 127.0.0.1 +vel_port = 30000 +vel_path = vendor_event_listener/ +vel_username = +vel_password = +vel_topic_name = example_vnf + +#------------------------------------------------------------------------------ +# Settings to be used when running in a windows test environment rather than +# the target environment. +#------------------------------------------------------------------------------ +[windows] +log_file = ../../logs/collector.log +schema_file = ../../docs/att_interface_definition/event_format_updated.json +base_schema_file = +throttle_schema_file = ../../docs/att_interface_definition/throttle_schema.json +test_control_schema_file = ../../docs/att_interface_definition/test_control_schema.json + +#------------------------------------------------------------------------------ +# Details of the Vendor Event Listener REST service. +# +# REST resources are defined with respect to a ServerRoot: +# ServerRoot = https://{Domain}:{Port}/{optionalRoutingPath} +# +# REST resources are of the form: +# * {ServerRoot}/eventListener/v{apiVersion} +# * {ServerRoot}/eventListener/v{apiVersion}/{topicName} +# * {ServerRoot}/eventListener/v{apiVersion}/eventBatch +# * {ServerRoot}/eventListener/v{apiVersion}/clientThrottlingState +# +# The "vel_topic_name" parameter is used as the "topicName" element in the path +# and may be empty. +# +# Note that the path, if present, should have no leading "/" but should have a +# training "/". +#------------------------------------------------------------------------------ +vel_domain = 127.0.0.1 +vel_port = 30000 +vel_path = +vel_username = will +vel_password = pill +vel_topic_name = + |