MTConnect.NET-AgentModule-MqttRelay 7.0.0.2-prerelease

This is a prerelease version of MTConnect.NET-AgentModule-MqttRelay.
This package has a SemVer 2.0.0 package version: 7.0.0.2-prerelease+63918092205.
dotnet add package MTConnect.NET-AgentModule-MqttRelay --version 7.0.0.2-prerelease
                    
NuGet\Install-Package MTConnect.NET-AgentModule-MqttRelay -Version 7.0.0.2-prerelease
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MTConnect.NET-AgentModule-MqttRelay" Version="7.0.0.2-prerelease" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MTConnect.NET-AgentModule-MqttRelay" Version="7.0.0.2-prerelease" />
                    
Directory.Packages.props
<PackageReference Include="MTConnect.NET-AgentModule-MqttRelay" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MTConnect.NET-AgentModule-MqttRelay --version 7.0.0.2-prerelease
                    
#r "nuget: MTConnect.NET-AgentModule-MqttRelay, 7.0.0.2-prerelease"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MTConnect.NET-AgentModule-MqttRelay@7.0.0.2-prerelease
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MTConnect.NET-AgentModule-MqttRelay&version=7.0.0.2-prerelease&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MTConnect.NET-AgentModule-MqttRelay&version=7.0.0.2-prerelease&prerelease
                    
Install as a Cake Tool

MTConnect.NET Logo

MTConnect MQTT Relay Module

This Agent Module writes data to an External MQTT Broker

Configuration

modules:
  - mqtt-relay:
      server: localhost
      port: 1883
      topic: enterprise/site/area/line/cell/MTConnect
      topicStructure: Document
  • server - The MQTT broker hostname

  • port - The MQTT broker port number

  • timeout - The UUID or Name of the Device to read data for

  • reconnectInterval - The UUID or Name of the Device to read data for

  • username - Sets the Username to use for authentication

  • password - Sets the Password to use for authentication

  • clientId - Sets the Client ID to use for the connection

  • qos - Sets the Quality Of Service (Qos) to use. 0 = At Most Once, 1 = At least Once, 2 = Exactly Once

  • useTls - Sets whether to use TLS or not (true or false)

  • topicPrefix - The prefix to add to the MQTT topics that are published

  • topicStructure - (Document or Entity) Sets how MQTT topics and messages are stuctured

  • currentInterval - Sets the Interval (in milliseconds) to send Current messages at

  • sampleInterval - Sets the Interval (in milliseconds) to send Sample messages at

  • documentFormat - The Document Format ID to use to format the payload

  • tls - Sets the TLS settings

    • pfx - The PFX certificate settings

      • certificatePath - The path to the (.pfx) file
      • certificatePassword - The certificate password
    • pem - The PEM certificate settings

      • certificatePath - The path to the (.pem) file
      • privateKeyPath - The path to the key containing the private key
      • privateKeyPassword - The certificate password
      • certificateAuthority - The path to the (.pem) file containing the Certificate Authority
    • verifyClientCertificate - Toggles whether Client Certificate chains are verified ("true" or "false")

AWS IoT Configuration Example

- mqtt-relay:
    server: akljadkfjdlsf-ats.iot.us-east-1.amazonaws.com
    port: 8883
    tls:
      pem:
        certificateAuthority: certs/AmazonRootCA1.pem
        certificatePath: certs/asfdslkafjdslkfjdklsdjf-certificate.pem.crt
        privateKeyPath: certs/sdlkajlksdajfldskjfdldlskfjdslkaj-private.pem.key
    documentFormat: json-cppagent
    currentInterval: 5000
    sampleInterval: 500
    topicPrefix: enterprise/site/area/line/cell/MTConnect

AWS Greengrass Moquette Configuration Example

modules:
  - mqtt-relay:
      server: localhost
      port: 8883
      clientId: mtconnect-test # Set the ClientId to the AWS Thing ID
      tls:
        verifyClientCertificate: false
        pem:
          certificateAuthority: certs/AmazonRootCA1.pem
          certificatePath: certs/2316549874654321654984984158961634984794-certificate.pem.crt
          privateKeyPath: certs/2316549874654321654984984158961634984794-private.pem.key
      documentFormat: json-cppagent
      currentInterval: 5000
      sampleInterval: 500
      topicPrefix: enterprise/site/area/line/cell/MTConnect

HiveMQ Configuration Example

modules:
  - mqtt-relay:
      server: 5679887d308d402888f32.s1.eu.hivemq.cloud
      port: 8883
      username: mtconnect
      password: mtconnect
      useTls: true
      documentFormat: json-cppagent
      currentInterval: 5000
      sampleInterval: 500
      topicPrefix: enterprise/site/area/line/cell/MTConnect

Migration: Availability Topic Moved Out of Probe/#

In earlier releases the MqttRelay agent module published the agent's Availability state (Last Will and Testament plus the on-connect retained "AVAILABLE" message) on a four-segment topic that fell under the {TopicPrefix}/Probe/# wildcard:

{TopicPrefix}/Probe/{AgentUuid}/Available   (raw "AVAILABLE" / "UNAVAILABLE" UTF-8 bytes)

That broke the contract that every payload under the Probe wildcard is a JSON document envelope. Subscribers binding to {TopicPrefix}/Probe/# expecting only Probe document JSON would receive a non-JSON Availability payload and either crash or silently drop the message.

Starting with this release the module emits agent Availability on a dedicated, non-overlapping topic:

{TopicPrefix}/Agent/{AgentUuid}/Available   (raw "AVAILABLE" / "UNAVAILABLE" UTF-8 bytes)

This matches the cppagent reference implementation (mtconnect/cppagent) which also publishes JSON document envelopes only under the Probe wildcard and emits agent status on a dedicated agent / status topic. The Probe wildcard is now pure-JSON for any subscriber.

Action required when upgrading

  • Subscribers that relied on the old {TopicPrefix}/Probe/{AgentUuid}/Available topic to track agent Availability must subscribe to {TopicPrefix}/Agent/{AgentUuid}/Available instead.
  • Any retained-message cleanup tooling pointed at the old topic should be updated to clear the new topic on broker rotations.

Contribution / Feedback

  • Please use the Issues tab to create issues for specific problems that you may encounter
  • Please feel free to use the Pull Requests tab for any suggested improvements to the source code
  • For any other questions or feedback, please contact TrakHound directly at info@trakhound.com.

License

This application and it's source code is licensed under the MIT License and is free to use.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MTConnect.NET-AgentModule-MqttRelay:

Package Downloads
MTConnect.NET-Applications-Agents

MTConnect.NET-Applications-Agents contains classes to fully implement an MTConnect Agent application. Supports MTConnect versions up to 2.7. Supports .NET Framework 4.6.1 up to .NET 10

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.0.0.2-prerelease 24 6/26/2026
6.9.0.2 532 10/16/2025
6.8.0 289 9/13/2025
6.7.0 254 6/22/2025
6.6.0 394 1/18/2025
6.5.1 290 12/3/2024
6.5.0 343 10/21/2024
6.4.7 288 8/21/2024
6.4.6 244 8/7/2024
6.4.5 237 8/2/2024
6.4.4 233 7/16/2024
6.4.3 288 6/14/2024
6.4.2 252 6/12/2024
6.4.1 252 5/17/2024
6.4.0 253 5/14/2024
6.3.2-beta 209 5/2/2024
6.3.1-beta 24,189 4/24/2024
6.3.0-beta 224 4/17/2024
6.2.2-beta 229 4/5/2024
6.2.1-beta 242 4/3/2024
Loading failed