2023-07-18 13:06:53 +02:00
|
|
|
##### Network Communications
|
2023-07-15 21:51:29 +02:00
|
|
|
# ZMQ_PORT is the port used for all communications
|
2023-07-15 19:12:13 +02:00
|
|
|
ZMQ_PORT=5556
|
2023-07-16 10:59:05 +02:00
|
|
|
# SUBSCRIBER_ADDR is used by the publishers
|
2023-07-15 21:51:29 +02:00
|
|
|
# to contact the subscriber
|
2023-07-17 10:53:26 +02:00
|
|
|
SUBSCRIBER_ADDR=10.128.0.133
|
2023-07-15 21:38:12 +02:00
|
|
|
# ZMQ_TOKEN is used by ZeroMQ to detect
|
|
|
|
# messages from publishers. Leave as is if not sure.
|
2023-07-15 21:49:12 +02:00
|
|
|
ZMQ_TOKEN=ina260-zmq-publisher
|
2023-07-15 21:38:12 +02:00
|
|
|
# ZMQ_MSG_SIZE max number of bytes per ZeroMQ messages
|
2023-07-16 12:46:22 +02:00
|
|
|
# Be careful with this parameter. Default is 5MiB
|
2023-07-17 18:22:36 +02:00
|
|
|
# Units is bytes
|
2023-07-16 12:46:22 +02:00
|
|
|
ZMQ_MSG_SIZE=5242880
|
2023-07-15 13:54:03 +02:00
|
|
|
|
2023-07-18 13:06:53 +02:00
|
|
|
##### Publishers/Subscriber
|
2023-07-18 13:00:38 +02:00
|
|
|
# LOG_DELAY defines the delay between 2 consecutive
|
2023-07-16 10:28:16 +02:00
|
|
|
# ina260 power read performed by the logger
|
|
|
|
# Unit is milliseconds
|
2023-07-18 13:06:53 +02:00
|
|
|
LOG_DELAY=0
|
2023-07-15 19:45:32 +02:00
|
|
|
# SUBSCRIBER_DIR will contain all the measurments
|
|
|
|
# received from the publishers
|
|
|
|
SUBSCRIBER_DIR=./data
|
2023-07-15 16:00:04 +02:00
|
|
|
# LOG_INTERVAL determined the duration
|
|
|
|
# of a logging period. At the end of a logging period,
|
2023-07-18 13:06:53 +02:00
|
|
|
# all the measurements are send by a publisher thread
|
2023-07-16 12:50:47 +02:00
|
|
|
# Unit is seconds
|
2023-07-17 18:22:36 +02:00
|
|
|
LOG_INTERVAL=20
|
2023-07-18 13:06:53 +02:00
|
|
|
# KEY is attached to all the messages published to the subscriber
|
|
|
|
# It allows you to filter the messages on the publisher
|
2023-07-15 16:00:04 +02:00
|
|
|
# if you are using multiple monitoring nodes (multiple publishers)
|
2023-08-10 14:21:39 +02:00
|
|
|
KEY=node1
|
|
|
|
# MAX_QUEUE Maximum number of queues to use per publisher.
|
|
|
|
# It allows the zmq thread to send the power measurements to the subscriber meanwhile
|
|
|
|
# other measurements are collected. If only 1 queue is used, power measurements can
|
|
|
|
# potentially be missing since parallelism is broken.
|
|
|
|
MAX_QUEUE=2
|