You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/reference/api/metadata_api.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,9 @@ A list of features enabled via Configuration spec (including build-time override
37
37
### App connection details
38
38
The metadata API returns information related to Dapr's connection to the app. This includes the app port, protocol, host, max concurrency, along with health check details.
39
39
40
+
### Scheduler connection details
41
+
Information related to the connection to one or more scheduler hosts.
42
+
40
43
### Attributes
41
44
42
45
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).
@@ -82,6 +85,7 @@ components | [Metadata API Response Component](#metadataapiresponsec
82
85
httpEndpoints | [Metadata API Response HttpEndpoint](#metadataapiresponsehttpendpoint)[] | A json encoded array of loaded HttpEndpoints metadata.
83
86
subscriptions | [Metadata API Response Subscription](#metadataapiresponsesubscription)[] | A json encoded array of pub/sub subscriptions metadata.
84
87
appConnectionProperties| [Metadata API Response AppConnectionProperties](#metadataapiresponseappconnectionproperties) | A json encoded object of app connection properties.
88
+
scheduler | [Metadata API Response Scheduler](#metadataapiresponsescheduler) | A json encoded object of scheduler connection properties.
85
89
86
90
<a id="metadataapiresponseactor"></a>**Metadata API Response Registered Actor**
87
91
@@ -142,6 +146,12 @@ healthProbeInterval | string | Time between each health probe, in go duration fo
142
146
healthProbeTimeout | string | Timeout for each health probe, in go duration format.
143
147
healthThreshold | integer | Max number of failed health probes before the app is considered unhealthy.
144
148
149
+
<a id="metadataapiresponsescheduler"></a>**Metadata API Response Scheduler**
150
+
151
+
Name | Type | Description
152
+
---- | ---- | -----------
153
+
connected_addresses | string[] | List of strings representing the addresses of the conntected scheduler hosts.
0 commit comments