WEGnology Gateway Edge Agent Usage

The WEGnology Edge Agent (“Agent”) is a command-line utility exposed through Docker as a container you can run on your Edge Compute device. The below outlines some example usage for how you can interact with the Agent on your device. For full documentation of all available flags and options, see the wnology/edge-agent image on Docker Hub.

For help getting the Agent setup on your device, see the installation instructions. All command examples below assume you can run docker without sudo or that you are logged in as root (not recommended). If you wish to run docker as your current user, see these instructions.

Creating Storage Area

It is strongly recommended that you mount a volume into the Gateway Edge Agent as a workspace for persistent data. By default, the GEA will write data inside the container to /data. By mounting a volume or using a volume container, we can have the GEA write to a local folder on the Edge Compute device. By doing so, you have access to the persistent data created by the GEA on your host machine and can reuse it if you have to destroy a container and rebuild (upgrading the image, for instance). Another benefit is that the Gateway Edge Agent doesn’t accumulate data internally, which could impact the performance and/or stability of the container.

All we need to do is create a folder locally to house the data. This folder can be anywhere on your file system, so long as permissions are set so docker can write to it. For instance, you might choose to put this folder at ~/wegnology-edge-agent for easy access. For this example, we’re going to create a folder at /var/lib/wegnology-edge-agent/ and update the permissions to allow docker to write to it.

sudo mkdir -p /var/lib/wegnology-edge-agent/data
sudo chmod -R a+rwx /var/lib/wegnology-edge-agent

Running With A Configuration File

WEGnology’s Gateway Edge Agent has many configuration options, many of which can be set with a TOML-formatted configuration file. In addition to using a configuration file for this example, we’re also going to configure the GEA to log to a file. See the section below for a full example configuration file.

Configuration File Example

Let’s create a configuration file in the directory we created earlier. Here’s our /var/lib/wegnology-edge-agent/config.toml file. The touch command is being used to create the config file, and nano to edit the newly created file.

sudo vim /var/lib/wegnology-edge-agent/config.toml
[logger]
level = 'error'

[gateway]
id = '<your-device-id>'
key = '<your-access-key>'
secret = '<your-access-secret>'

[store]
path = '/data/wegnology-edge-agent-store.db'

Now we can run the GEA container without specifying environment variables, and instead simply provide the path to our config.toml.

docker run -d --restart always --name docs-agent \
  -v /var/lib/wegnology-edge-agent/data:/data \
  -v /var/lib/wegnology-edge-agent/config.toml:/etc/wegnology/wegnology-edge-agent-config.toml \
  wnology/edge-agent

/etc/wegnology/wegnology-edge-agent-config.toml is the default location for the toml configuration file inside the container, so we mount our local configuration to that location in the container. Now that our Agent container is running, we can see the output by watching the log file we specified with logger.out:

$ tail -f /var/lib/wegnology-edge-agent/data/wegnology-edge-agent-log.log
0000-00-00T00:00:00.000Z [info] Agent Starting...
0000-00-00T00:00:00.000Z [info] Connecting to: mqtts://broker.app.wnology.io...
0000-00-00T00:00:00.000Z [info] Webserver started on port: 8080
0000-00-00T00:00:00.000Z [info] Workflows initialized and running...
0000-00-00T00:00:00.000Z [info] Connected to mqtts://broker.app.wnology.io

Making Changes To The Config File

Because we have designated a configuration file and configured our GEA container to read from it, making changes are easy. Let’s say we decide that error logging is not enough logging and we want to see more logging information. We can simply modify our /var/lib/wegnology-edge-agent/config.toml like so:

# ...
[logger]
level = 'info'
# ...

In the above change to the configuration file, the logger level is set to info. You can change this value to other levels such as warn, verbose, or error to help with troubleshooting, but error is recommended for production scenarios.

You can optionally add an out destination, which allows you to choose where the log output is sent as seen in GEA Configuration Options. (Note: If your out destination is a file path, you may fill up your device’s disk space with log files.) Without an out destination, the log output is recognized by Docker and allows you to view the Gateway Edge Agent’s logs with docker logs <container-name> command.

Then restart the Gateway Edge Agent to have the GEA pick up our new configuration changes.

docker restart docs-agent

Web Server: HTTP Request Trigger / HTTP Response Node

If you wish to enable the HTTP Request Trigger for your Edge Compute device, you can do so by binding a host port at the time of container creation. In order to build on the configuration we have going, we only need to add the -p flag and then configure the Agent in our configuration file to enable the trigger. See exposing ports with Docker for more information. For more advanced configuration of the HTTP Request Trigger and HTTP Response Node, see the Docker Hub Repo.

docker run -d --restart always --name docs-agent \
  -v /var/lib/wegnology-edge-agent/data:/data \
  -v /var/lib/wegnology-edge-agent/config.toml:/etc/wegnology/wegnology-edge-agent-config.toml \
  -p 8080:8080 \
  wnology/edge-agent
# ...
[webserver]
enabled = true

Running With Environment Config

There are only three required environment variables that must be set to connect the Gateway Edge Agent to WEGnology, which allows for bidirectional communication between the platform and your device. You must provide the DEVICE_ID obtained when you created your Edge Compute device, as well as the ACCESS_KEY and ACCESS_SECRET associated with your application.

docker run -d --restart always --name docs-agent \
  -e 'DEVICE_ID=<your-device-id>' \
  -e 'ACCESS_KEY=<your-access-key>' \
  -e 'ACCESS_SECRET=<your-access-secret>' \
  -v /var/lib/wegnology-edge-agent/data:/data \
  wnology/edge-agent

Let’s break this down a little bit …

  • By specifying the -d parameter to docker run, we are asking the Gateway Edge Agent to run in the background so we have control of our terminal after executing the command.
  • The --restart always option tells Docker to always restart the container if it were to die unexpectedly or on device boot. This aids in keeping your Edge Compute device up and running with minimal intervention.
  • The --name option allows us to name our container so that we may stop and start it more easily in the future.
  • The -e allows us to enumerate any and all environment variables we would like to pass in as configuration.
  • The -v flag tells docker run that we would like to mount our host folder /var/lib/wnology-edge-agent/data as /data inside the container.
  • Finally, specifying an image (wnology/edge-agent) without a tag, we are asking for the latest tag of the Gateway Agent. It is recommended that you select a version - wnology/edge-agent:1.24.0 for example.

Managing the Gateway Edge Agent

Before we move on to more advanced ways of configuring the GEA, let’s quickly talk about how to manage it once it’s running. If you’re familiar with Docker, you can skip this section.

In general, the docker --help information is very useful for familiarizing yourself with the commands. Below, we’re going to cover some basic management commands (a few of which we’ve already started using). Let’s recap those plus some additional ones that should allow you to get up and running for basic use cases.

> docker run [-d] [--restart] [--rm] [--name] [-e] [-v] <image-name> (more info)

This command allows us to configure a container from a base image—in our case, wnology/edge-agent. We’ve talked about most of the above options in this document as we’ve been using the GEA. The only one not mentioned elsewhere is the --rm flag, which will tell Docker to destroy the container after it has been stopped/killed. This is useful as you work to figure out your final configuration. There are, of course, many more flags you can use with docker run.

> docker logs [-f] <container-name|container-id> (more info)

This command allows us to look at the console output of the GEA after it has been started and is running. Unless you are writing your logs to a file, this is the primary way you’ll get a glimpse into what the GEA has been doing.

> docker ps -a (more info)

This command will output all containers that have been created on your host whether they are running or not. This is useful for getting the ID of the container running the Gateway Edge Agent after it has been started. It is also useful for getting the container ID of a stopped container so that you may restart it.

> docker stop <container-name|container-id> (more info)

You can stop a GEA container that is running in the background using the stop command. This will simply stop the container, but not destroy it. All your environment configuration and any other flags used when running docker run will be preserved when starting again.

> docker kill <container-name|container-id> (more info)

If the GEA container isn’t responding to a container stop command, you may need to kill the container. This will forcefully exit the container and could cause unexpected behavior on future runs of the Gateway Edge Agent.

> docker start <container-name|container-id> (more info)

After stopping a container, you can restart it using the start command. This will preserve all configuration that was entered when running docker run.

> docker restart <container-name|container-id> (more info)

Instead of running docker stop and then docker start, you can simply run docker restart.

> docker rm <container-name|container-id> (more info)

It’s a good practice to name your containers on your Edge Compute device to prevent many containers being created and taking up space on your device. Because of this practice, you’ll need to remove your container before creating another with the same name. Or, you can create a container with a different name as you determine the best way to run the Gateway Edge Agent on your device.

Agent Management Example

With these basic docker commands, we can manage our running agent. Note, this example shows how to remove a container and will destroy the container we have running permanently. You would need to create another container from the image if you do so.

$ docker logs docs-agent
0000-00-00T00:00:00.000Z [info] Agent Starting...
0000-00-00T00:00:00.000Z [info] Connecting to: mqtts://broker.app.wnology.io...
0000-00-00T00:00:00.000Z [info] Webserver started on port: 8080
0000-00-00T00:00:00.000Z [info] Workflows initialized and running...
0000-00-00T00:00:00.000Z [info] Connected to mqtts://broker.app.wnology.io
$ docker ps -a
CONTAINER ID   IMAGE                     COMMAND                   CREATED         STATUS        PORTS     NAMES
51aff3e4b650   wnology/edge-agent:latest  "/opt/wegnology/tini -g..."  30 minutes ago  Up 5 minutes  8080/tcp  docs-agent
$ docker stop docs-agent
docs-agent
$ docker start docs-agent
docs-agent
$ docker kill docs-agent
docs-agent
$ docker ps -a
CONTAINER ID   IMAGE                     COMMAND                   CREATED         STATUS        PORTS     NAMES
51aff3e4b650   wnology/edge-agent:latest  "/opt/wegnology/tini -g..."  31 minutes ago  Exited                  docs-agent
$ docker rm docs-agent
docs-agent
$ docker ps -a
CONTAINER ID   IMAGE                     COMMAND                   CREATED         STATUS        PORTS     NAMES

Updating the Gateway Edge Agent

Updating the Gateway Edge Agent to the latest version is accomplished through a series of docker commands:

docker stop <container-name|container-id>
docker rm <container-name|container-id>
docker pull wnology/edge-agent:<version of edge agent>
docker run …

With the following steps, the old container will be removed and replaced with a new container running the latest version of the Gateway Edge Agent. Note that if sudo is being used to pull, it should be used consistently to avoid unexpected behavior.

Updating Edge Workflow Target Version

When you create an Edge Workflow, you specify a target agent version. Edge Workflows can only run on devices running that specified target GEA version or higher. The GEA is always backward compatible.

After you update the GEA image, you will need to update your Edge Workflows to the proper target agent version in order to take advantage of the new features. Upgrading your target agent version is easily accomplished within the Agent Version tab in the Workflow Settings Panel.

Agent Configuration Options

All Options

As seen above, you can configure the GEA with the following options. Most of the following options can be set through:

  • environment variables (most common for Docker).
  • the configuration file.
  • command-line flags.

If an option is set multiple ways, the command line flag is used first, followed by the environment variable, and then finally falling back to the configuration file.

For additional information review the Docker Hub Repo.

Environment Variable Configuration File Option Command Line Flag
CONF_PATH N/A -f <path> or --conf-path <path>
DEVICE_ID gateway.id --device-id <your-device-id>
ACCESS_KEY gateway.key --access-key <your-access-key>
ACCESS_SECRET gateway.secret --access-secret <your-access-secret>
LOGGER_OUT logger.out --logger-out <destination>
LOGGER_LEVEL logger.level --logger-level <level>
STORE_PATH store.path --store-path <path>
BROKER_HOST gateway.host N/A
BROKER_PROTOCOL gateway.protocol N/A
BROKER_CLIENT_SSL_KEY_PATH gateway.clientSsl.keyPath N/A
BROKER_CLIENT_SSL_KEY N/A N/A
BROKER_CLIENT_SSL_CERT_PATH gateway.clientSsl.certificatePath N/A
BROKER_CLIENT_SSL_CERT N/A N/A
WORKFLOW_DIRECTORY workflow.directory --workflow-directory <path>
UDP_ADDRESS udp.address --udp-address <ip-address>
QUEUE_OFFLINE_MESSAGES gateway.queueOfflineMessages --queue-offline-messages <true,false>
SUBSCRIBE_TO_PERIPHERAL_UPDATES gateway.subscribeToPeripheralUpdates --subscribe-to-peripheral-updates <true,false>
WEBSERVER_ENABLED webserver.enabled --webserver-enabled <true,false>
WEBSERVER_PORT webserver.port --webserver-port <port>
WEBSERVER_ADDRESS webserver.address --webserver-address <ip-address>
WEBSERVER_USERNAME webserver.username --webserver-username <username>
WEBSERVER_PASSWORD webserver.password --webserver-password <password>
WEBSERVER_SSL_KEY_PATH webserver.ssl.keyPath --webserver-ssl-key-path <path>
WEBSERVER_SSL_KEY N/A N/A
WEBSERVER_SSL_CERT_PATH webserver.ssl.certificatePath --webserver-ssl-cert-path <path>
WEBSERVER_SSL_CERT N/A N/A
WEBSERVER_SSL_BUNDLE_PATH webserver.ssl.bundlePath --webserver-ssl-bundle-path <path>
WEBSERVER_SSL_BUNDLE N/A N/A
LOCAL_BROKER_ENABLED localBroker.enabled --local-broker-enabled <true,false>
LOCAL_BROKER_PORT localBroker.port --local-broker-port <port>
LOCAL_BROKER_ADDRESS localBroker.address --local-broker-address <address>
LOCAL_BROKER_USERNAME localBroker.username --local-broker-username <username>
LOCAL_BROKER_PASSWORD localBroker.password --local-broker-password <password>
LOCAL_BROKER_SSL_KEY_PATH localBroker.ssl.keyPath --local-broker-key-path <path>
LOCAL_BROKER_SSL_KEY N/A N/A
LOCAL_BROKER_SSL_CERT_PATH localBroker.ssl.certificatePath --local-broker-ssl-key-path <path>
LOCAL_BROKER_SSL_CERT N/A N/A
LOCAL_BROKER_SSL_BUNDLE_PATH localBroker.ssl.bundlePath --local-broker-ssl-cert-path <path>
LOCAL_BROKER_SSL_BUNDLE N/A --local-broker-ssl-bundle-path <path>
N/A N/A -V or --version
N/A N/A -h

Example Configuration File

# WEGnology Edge Agent Configuration File
#
# Configuration file location can be configured when running
# the agent by either the command line flag --conf-path or the
# environment variable CONF_PATH
#
# Any configuration variables that are commented out
# below have defaults or are not required. Many can also be provided
# through command line flags or environment variables.
#
[logger]
# Desired logger output destination
# Valid options are 'console' or a file path
# CLI: --logger-out
# Environment Variable: LOGGER_OUT
#
# out = 'console'
#
# Desired level of logging
# Valid options are 'error', 'warn', 'info', 'verbose'
# CLI: --logger-level
# Environment Variable: LOGGER_LEVEL
#
# level = 'info'
#
[gateway]
# WEGnology Device ID of Edge Compute device
# CLI: --device-id
# Environment Variable: DEVICE_ID
# id = ''
#
# WEGnology Access Key for connecting the device to the MQTT broker
# CLI: --access-key
# Environment Variable: ACCESS_KEY
# key = ''
#
# WEGnology Access Secret for connecting the device to the MQTT broker
# CLI: --access-secret
# Environment Variable: ACCESS_SECRET
# secret = ''
#
# If the GEA, when it is not connected to WEGnology, should queue up MQTT messages to
# then send later when the agent does successfully connect
# CLI: --queue-offline-messages
# Environment Variable: QUEUE_OFFLINE_MESSAGES
#
# queueOfflineMessages = true
#
# If the GEA, when it is not connected to WEGnology, should subscribe to
# peripheral device information, for use by the Peripheral: Get Node
# CLI: --subscribe-to-peripheral-updates
# Environment Variable: SUBSCRIBE_TO_PERIPHERAL_UPDATES
#
# subscribeToPeripheralUpdates = true
#
# Address of the WEGnology broker
# Environment Variable: BROKER_HOST
#
# host = 'broker.app.wnology.com'
#
# Protocol to use to connect to the broker
# Valid options are 'mqtts://', 'mqtt://', 'wss://', and 'ws://'
# Environment Variable: BROKER_PROTOCOL
#
# protocol = 'mqtts://'
#
[gateway.clientSsl]
# If an SSL key is provided, an SSL certificate is also required, and vice versa.
# If provided, the key and secret fields above are not required.
#
# Path to the SSL key file to use for client certificate based authentication
# Environment Variable: BROKER_CLIENT_SSL_KEY_PATH (path to the key file)
# Environment Variable: BROKER_CLIENT_SSL_KEY (the key itself)
#
# keyPath = ''
#
# Path to the SSL certificate file to use for client certificate based authentication
# Environment Variable: BROKER_CLIENT_SSL_CERT_PATH (path to the certificate file)
# Environment Variable: BROKER_CLIENT_SSL_CERT (the certificate itself)
#
# certificatePath = ''
#
[store]
# Path to the GEA persistent store
# CLI: --store-path
# Environment Variable: STORE_PATH
#
# path = '/data/wegnology-edge-agent-store.db'
#
[udp]
# Address for UDP server
# CLI: --udp-address
# Environment Variable: UDP_ADDRESS
#
# address = '0.0.0.0'
#
[webserver]
# Whether the web server should be enabled
# CLI: --webserver-enabled
# Environment Variable: WEBSERVER_ENABLED
#
# enabled = true
#
# Port to run web server on
# CLI: --webserver-port
# Environment Variable: WEBSERVER_PORT
#
# port = 8080
#
# Address to run web server on
# CLI: --webserver-address
# Environment Variable: WEBSERVER_ADDRESS
#
# address = '0.0.0.0'
#
# Basic auth username for web server
# CLI: --webserver-username
# Environment Variable: WEBSERVER_USERNAME
#
# username = ''
#
# Basic auth password for web server
# CLI: --webserver-password
# Environment Variable: WEBSERVER_PASSWORD
#
# password = ''
#
[webserver.ssl]
# If an SSL key is provided, an SSL certificate is
# also required, and vice versa. An SSL bundle is optional.
#
# Path to the SSL key file to use for the web server
# CLI: --webserver-ssl-key-path
# Environment Variable: WEBSERVER_SSL_KEY_PATH (path to the key file)
# Environment Variable: WEBSERVER_SSL_KEY (the key itself)
#
# keyPath = ''
#
# Path to the SSL certificate file to use for the web server
# CLI: --webserver-ssl-cert-path
# Environment Variable: WEBSERVER_SSL_CERT_PATH (path to the certificate file)
# Environment Variable: WEBSERVER_SSL_CERT (the certificate itself)
#
# certificatePath = ''
#
# Path to the SSL Bundle file to use for the web server
# CLI: --webserver-ssl-bundle-path
# Environment Variable: WEBSERVER_SSL_BUNDLE_PATH (path to the bundle file)
# Environment Variable: WEBSERVER_SSL_BUNDLE (the bundle itself)
#
# bundlePath = ''
#
[workflow]
# The directory containing on-disk workflows
# CLI: --workflow-directory
# Environment Variable: WORKFLOW_DIRECTORY
#
# directory = '/data/workflows'
#
[localBroker]
# Whether the local broker should be enabled
# CLI: --local-broker-enabled
# Environment Variable: LOCAL_BROKER_ENABLED
#
# enabled = false
#
# Port to run the local broker on
# CLI: --local-broker-port
# Environment Variable: LOCAL_BROKER_PORT
#
# port = 1883
#
# Address to run the local broker on
# CLI: --local-broker-address
# Environment Variable: LOCAL_BROKER_ADDRESS
#
# address = '0.0.0.0'
#
# Username for the local broker
# CLI: --local-broker-username
# Environment Variable: LOCAL_BROKER_USERNAME
#
# username = ''
#
# Password for the local broker
# CLI: --local-broker-password
# Environment Variable: LOCAL_BROKER_PASSWORD
#
# password = ''
#
[localBroker.ssl]
# If an SSL key is provided, an SSL certificate is
# also required, and vice versa. An SSL bundle is optional.
#
# Path to the SSL key file to use for the local broker
# CLI: --local-broker-ssl-key-path
# Environment Variable: LOCAL_BROKER_SSL_KEY_PATH (path to the key file)
# Environment Variable: LOCAL_BROKER_SSL_KEY (the key itself)
#
# keyPath = ''
#
# Path to the SSL certificate file to use for the local broker
# CLI: --local-broker-ssl-cert-path
# Environment Variable: LOCAL_BROKER_SSL_CERT_PATH (path to the certificate file)
# Environment Variable: LOCAL_BROKER_SSL_CERT (the certificate itself)
#
# certificatePath = ''
#
# Path to the SSL Bundle file to use for the local broker
# CLI: --local-broker-ssl-bundle-path
# Environment Variable: LOCAL_BROKER_SSL_BUNDLE_PATH (path to the bundle file)
# Environment Variable: LOCAL_BROKER_SSL_BUNDLE (the bundle itself)
#
# bundlePath = ''

Advanced Options

The following are exposed only as environment variables, and meant for advanced control of the Gateway Edge Agent’s behavior:

  • MAX_FLOW_RUN_TIME - Controls the maximum amount of time, in milliseconds, a single workflow is allowed to run. Default value is 60000 (1 minute).
  • MAX_EXTERNAL_CALL_TIME - Controls the maximum amount of time, in milliseconds, a workflow will wait for a response from an external service. Default value is 30000 (30 seconds).
  • BROKER_HOST - Controls the address of the MQTT broker for the GEA to connect to. Default value is broker.app.wnology.io.
  • BROKER_PROTOCOL - Controls if the connection to the broker should be TCP vs Websockets, and if it should be over SSL or not. Default is mqtts://. Valid values are mqtt://, mqtts://, ws://, and wss://.
  • MQTT_KEEPALIVE - Controls the keepalive for the MQTT connection to the WEGnology broker, in milliseconds. Default value is 60000 (1 minute).
  • STATS_REPORT_TIME - Controls how frequently the GEA reports workflow statistics to the WEGnology cloud, in milliseconds. Default is 1800000 (30 minutes).
  • BROADCAST_UPDATE_TOPIC_BASE - Controls the MQTT topic base for broadcast updates from the WEGnology cloud to the Gateway Edge Agent. Default is $SYS.
  • IDLE_OPCUA_SESSION_TTL - Controls how long until an unused OPC UA session is considered idle. Default is 30000 (30 seconds).
  • IDLE_OPCUA_CLIENT_TTL - Controls how long until an unused OPC UA client is considered idle. Default is 60000 (60 seconds).
  • IDLE_OPCUA_CLEANUP_INTERVAL - Controls how frequently the GEA cleans up idle OPC UA clients and sessions. Default is 10000 (10 seconds).