From c8ac6f4941203959da3db5836de523f05bce24c8 Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Tue, 15 Oct 2019 23:04:32 -0700 Subject: [PATCH] Delete metadata.md --- reference/api/metadata.md | 44 --------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 reference/api/metadata.md diff --git a/reference/api/metadata.md b/reference/api/metadata.md deleted file mode 100644 index 5bc3096d4..000000000 --- a/reference/api/metadata.md +++ /dev/null @@ -1,44 +0,0 @@ -# Metadata - -## Get Dapr metadata - -This endpoint lets you inspect additional data related to the running Dapr runtime instance. - -### HTTP Request - -`GET http://localhost:3500/v1.0/metadata` - -### HTTP Response codes - -Code | Description ----- | ----------- -200 | Request successful -500 | Request failed - -```shell -curl http://localhost:3500/v1.0/metadata \ - -H "Content-Type: application/json" -``` - -> The above command returns the following JSON: - -```json -{ - "id": "myApp", - "protocol": "gRPC", - "stateStore": "redis", - "appAddress": "http://localhost:8080", - "healthy": true, - "stateItemsCount": 1000, - "actors": [ - { - "actorType": "sith", - "activatedContexts": [ - "darth-vader", - "darth-nihilus", - "darth sidious" - ] - } - ] -} -``` \ No newline at end of file