ina260-zmq-publisher/config.mk

33 lines
1.2 KiB
Makefile
Raw Normal View History

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-15 19:12:13 +02:00
SUBSCRIBER_ADDR=localhost
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
ZMQ_MSG_SIZE=5242880
2023-07-15 13:54:03 +02:00
##### Logger/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-15 13:54:03 +02:00
LOGGERS_DIR=./logs
2023-07-16 10:28:16 +02:00
# LOGGER_DELAY defines the delay between 2 consecutive
# ina260 power read performed by the logger
# Unit is milliseconds
LOGGER_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,
# a file with all the power measurements is generated by the logger in LOGGERS_DIR
# this file is then transmitted by the publisher to the subscribers
2023-07-15 14:36:48 +02:00
LOG_INTERVAL=30
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