Site Navigation: Technical Documentation Introduction to EdgeX Foundry EdgeX Foundry Microservices Architecture | API Reference Definitions    



This page has the following contents:

API Reference

APIs--Core Services–Metadata


Introduction

The Metadata microservice has the knowledge about the devices and sensors and how to communicate with them that is used by the other services, such as Core Data, Command, and so forth.  

Specifically, Metadata has the following abilities:

The Metadata does not do the following activities:

General characteristics about Devices, the data they provide, and how to command them is shown in Device Profiles in EdgeX Foundry.  A Device Profile can be thought of as a template of a type or classification of Device. For example, a device profile for BACnet thermostats provides general characteristics for the types of data a BACnet thermostat sends, such as current temperature, and which types of commands or actions can be sent to the BACnet thermostat, such as cooling set point, or heating set point. Therefore, Device Profiles are the first item that the Metadata service must be able to store or manage in local persistence, and provide to the other services of EdgeX Foundry.  

Data about actual devices and sensors is another type of information that the Metadata microservice stores and manages. Each specific device and sensor that is managed by EdgeX Foundry must be registered with Metadata and have a unique ID associated to it. Information, such as the device's or sensor's address is stored with that identifier. Each device and sensor is also associated to a device profile. This association enables Metadata to apply generic knowledge provided by the device profile to each device and sensor. For example, a specific device such as the BACNet thermostat located in the CTO Solutions lab in Dell's building, is associated to the BACnet thermostat device profile described above and this connection would imply that this specific BACnet thermostat provides current temperature data and responds to commands to set the cooling and heating points.



Metadata stores and manages information about the device services that serve as EdgeX Foundry's interfaces to the actual devices and sensors. Device services are other microservices that communicate directly with the device or sensor in the device or sensor protocol of choice, and normalize information and communications with the device or sensor for the rest of EdgeX Foundry. A single Device Service facilitates the communications between EdgeX Foundry and one or more actual devices or sensors. Typically, a Device Service is built to communicate through a particular protocol with devices and sensors that use that protocol. For example, a Modbus Device Service that facilitates the communications among all types of Modbus devices such as motor controllers, proximity sensors, thermostats, power meters, and so forth.



Metadata must know about each Device Service, its address and how to communicate with it, and must also track the association (the ownership) of each Device to a Device Service. With this information, Metadata provides the knowledge to the rest of EdgeX Foundry about which specific Device Service with which to communicate, when a request of a specific device or sensor is required by any other EdgeX Foundry service. Metadata also needs to know about Device Services so that when a new device or sensor is added, updated, or one is removed, Metadata can communicate the change in the device or sensor information to the appropriate Device Service.

Metadata serves as the single access point for the rest of EdgeX Foundry of all Device, Device Profile, and Device Service information.  In this way, Metadata offers a degree of security and protection of the "meta" information collected by EdgeX Foundry.

Currently, Metadata provides a REST API for getting data into and out of EdgeX Foundry's local storage.  In the future, the microservice could be expandable to allow data to be accessed via other protocols such as MQTT, AMQP, and so forth.



Data Models

Metadata Command Model


Metadata Device and Device Profile Model


Metadata Device Profile Model


Metadata Command to Device Profile Model


Metadata Device Report and Scheduling Model


Metadata Provision Watcher Model


Return to TOP



Data Dictionary

Class NameDescriptionDependencies
ActionContains the target and parameters and expected responses, that describe a REST call.
AddressableThe metadata required to make a request to an EdgeX Foundry target. For example, the Addressable could be HTTP and URL address details to reach a device service by REST and might include attributes such as HTTP Protocol, URL host of edgex-modbus-device-service, port of 49090.
AdminStateAn object's current administrative state of "Locked" or "Unlocked."
CallbackAlertThe object used by the system to alert regarding a change to a system object.
CommandThe REST description of an interface.
DeviceThe object that contains information about the state, position, reachability, and methods of interfacing with a Device.Top Level object
DeviceManagerAn object that groups other Devices and groups of Devices.
DeviceObjectThe atomic description of a particular protocol level interface for a class of Devices.
DeviceProfileThe description of both the protocol level interface, device service interface, and mapping and interpretation logic that describe communication to a class of devices.Top Level object
DeviceReport

DeviceServiceThe current state and reachability information registered for a Device Service.Top Level object
OperatingState

An object's current operating state of "Enabled" or "Disabled."


ProfilePropertyThe transformation, constraint, and unit properties for a class of Device data.
ProfileResourceThe set of operations that is executed by a Service for a particular Command.
PropertyValueThe transformation and constraint properties for a class of data.
ProvisionWatcherThe metadata used by a Service for automatically provisioning matching Devices.Top Level object
ResourceOperationAn Operation or set of Operations executed by the Device Service on a Device.
ResponseA description of a possible REST response for a Command.
ScheduleAn object defining a timer or alarm.Top Level object
ScheduleEventThe action taken by a Service when the schedule triggers.Top Level object
ServiceThe current state and reachability information registered for a Service.
UnitsThe unit metadata about a class of Device data.


Return to TOP


High Level Interaction Diagrams

Sequence diagrams for some of the more critical or complex events regarding Metadata.

The three following High Level Interaction Diagrams show:

Metadata Add a New Device Profile (Step 1 to provisioning a new device)



Metadata Add a New Device Profile (Step 2 to provisioning a new device)




Metadata Device Service Startup




Return to TOP



Site Navigation: Technical Documentation Introduction to EdgeX Foundry EdgeX Foundry Microservices Architecture | API Reference Definitions    
 
Where to now