No project description provided
Project description
volttron-topic-watcher
The Topic Watcher Agent listens to a set of configured topics and publishes an alert if they are not published within some time limit. In addition to for individual messages or data points, the Topic Watcher Agent supports inspecting device "all" topics. This can be useful when a device contains volatile points that may not be published.
Requires
- python >= 3.10
- volttron >= 10.0
Installation
Before installing, VOLTTRON should be installed and running. Its virtual environment should be active. Information on how to install of the VOLTTRON platform can be found here.
Create a directory called config
and use the change directory command to enter it.
mkdir config
cd config
After entering the config directory, create a file called topic_watcher.json
. Use the instructions below to populate that file with the correct JSON.
Topics are organized by groups in a JSON structure with the group's identifier as the key. Any alerts raised will summarize all missing topics in the group.
There are two configuration options for watching topics. For single message topics (such as a single device point), configuration consists of a key value pair of the topic to its time limit.
{
"groupname": {
"devices/campus/building/point": 10
}
}
For points published in an "all" style publish, configuration consts of a key mapping to an object as follows:
A seconds
key for the time limit in seconds, and a points
key consisting of a list of individual points in the
all
publish.
The following is an example "all" publish configuration which configures the Topic Watcher to check for the temperature
and PowerState
points which are expected to be inside the "all" publishes.
{
"groupname": {
"devices/fakedriver1/all": {
"seconds": 10,
"points": ["temperature", "PowerState"]
}
}
}
It is possible to configure the Topic Watcher to handle both "all" topics and single point topics for the same group:
{
"groupname": {
"devices/fakedriver0/all": 10,
"devices/fakedriver1/all": {
"seconds": 10,
"points": ["temperature", "PowerState"]
}
}
}
After populating your configuration file, install and start topic watcher in VOLTTRON.
vctl install volttron-topic-watcher --agent-config topic_watcher.json --vip-identity platform.topic_watcher --start
View the status of the installed agent
vctl status
Development
Please see the following for contributing guidelines contributing.
Please see the following helpful guide about developing modular VOLTTRON agents
Disclaimer Notice
This material was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor the United States Department of Energy, nor Battelle, nor any of their employees, nor any jurisdiction or organization that has cooperated in the development of these materials, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness or any information, apparatus, product, software, or process disclosed, or represents that its use would not infringe privately owned rights.
Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or any agency thereof, or Battelle Memorial Institute. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or any agency thereof.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file volttron_topic_watcher-2.0.0rc0.tar.gz
.
File metadata
- Download URL: volttron_topic_watcher-2.0.0rc0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ece3543c11054d7a1b62db0e36cad4417a3dc2d57acfed0efcc43c9765a5f6f0 |
|
MD5 | 4a81ded2ca92bbc6a8352ff4716f0361 |
|
BLAKE2b-256 | 0b0523aff7d1ac7ed5d590c57580ad7018b0dbee3eec3e33e4120f238bcdf7a9 |
File details
Details for the file volttron_topic_watcher-2.0.0rc0-py3-none-any.whl
.
File metadata
- Download URL: volttron_topic_watcher-2.0.0rc0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4937c16f765bc10d98c5c9a718c23f926adcc4fe581a1908307545039a639c0f |
|
MD5 | 584add5e06c21e2da065e7d529200518 |
|
BLAKE2b-256 | 0b24392450370af80f8cd768a2f964fa12d6ccdccdbcab2759a2addc3d23f0d9 |