Metadata API reference
Dapr has a metadata API that returns information about the sidecar allowing runtime discoverability. The metadata endpoint returns a list of the components loaded, the activated actors (if present) and attributes with information attached.
Each loaded component provides its name, type and version and also information about supported features in the form of component capabilities. These features are available for the and binding component types. The table below shows the component type and the list of capabilities for a given version. This list might grow in future and only represents the capabilities of the loaded components.
The metadata API allows you to store additional attribute information in the format of key-value pairs. These are ephemeral in-memory and are not persisted if a sidecar is reloaded. This information should be added at the time of a sidecar creation, for example, after the application has started.
Gets the Dapr sidecar information provided by the Metadata Endpoint.
The Get Metadata API can be used for discovering different capabilities supported by loaded components. It can help operators in determining which components to provision, for required capabilities.
HTTP Request
URL Parameters
Parameter | Description |
---|---|
daprPort | The Dapr port. |
HTTP Response Codes
Name | Type | Description |
---|---|---|
id | string | Application ID |
actors | Metadata API Response Registered Actor[] | A json encoded array of registered actors metadata. |
extended.attributeName | string | List of custom attributes as key-value pairs, where key is the attribute name. |
components | [] | A json encoded array of loaded components metadata. |
Metadata API Response Registered Actor
Metadata API Response Component
Name | Type | Description |
---|---|---|
name | string | Name of the component. |
type | string | Component type. |
version | string | Component version. |
capabilities | array | Supported capabilities for this component type and version. |
Examples
Note: This example is based on the Actor sample provided in the .
Adds a custom label to the Dapr sidecar information stored by the Metadata endpoint.
Usecase:
The metadata endpoint is, for example, used by the Dapr CLI when running dapr in self hosted mode to store the PID of the process hosting the sidecar and store the command used to run the application. Applications can also add attributes as keys after startup.
HTTP Request
PUT http://localhost:<daprPort>/v1.0/metadata/attributeName
HTTP Request Body
Within the body of the request place the custom attribute value you want to store:
attributeValue
HTTP Response Codes
Code | Description |
---|---|
204 | Custom attribute added to the metadata information |
Examples
Note: This example is based on the Actor sample provided in the .
Add a custom attribute to the metadata endpoint:
Get the metadata information to confirm your custom attribute was added:
{
"id":"demo-actor",
"actors":[
{
"type":"DemoActor",
"count":1
}
"extended": {
"myDemoAttribute": "myDemoAttributeValue",
"cliPID":"1031040",
"appCommand":"uvicorn --port 3000 demo_actor_service:app"
"components":[
{
"name":"pubsub",
"type":"pubsub.redis",
"capabilities": [""]
},
{
"name":"statestore",
"type":"state.redis",
"version":"v1",
"capabilities": ["ETAG", "TRANSACTION", "ACTOR", "QUERY_API"]
}
]