2023-07-15 13:54:03 +02:00
|
|
|
##### ZeroMQ
|
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-16 12:50:47 +02:00
|
|
|
##### Loggers/Publisher
|
2023-07-15 16:00:04 +02:00
|
|
|
# LOGGERS_DIR will contains all the data generated by the loggers
|
|
|
|
# a.k.a the ina260 power measurements
|
2023-07-17 10:53:26 +02:00
|
|
|
LOGGERS_DIR=/tmp/ina260_logs/
|
2023-07-16 17:41:09 +02:00
|
|
|
# LOGGERS_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-17 18:37:38 +02:00
|
|
|
LOGGERS_DELAY=1000
|
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-16 12:50:47 +02:00
|
|
|
# a file with all the power measurements is generated by the loggers in LOGGERS_DIR
|
|
|
|
# This file, is then transmitted by the publishers to the subscriber
|
|
|
|
# Unit is seconds
|
2023-07-17 18:22:36 +02:00
|
|
|
LOG_INTERVAL=20
|
2023-07-15 16:00:04 +02:00
|
|
|
# KEY is attached to all the messages published by the node
|
|
|
|
# It allows you to filter the messages received on the client
|
|
|
|
# if you are using multiple monitoring nodes (multiple publishers)
|
2023-07-15 14:36:48 +02:00
|
|
|
KEY=node1
|