We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a121eee commit d8dae63Copy full SHA for d8dae63
README.md
@@ -127,7 +127,33 @@ Discard-Response: Yes
127
128
The response will always be an immediate HTTP response with `201` status code and no body.
129
130
+# Dashboard
131
132
+Each postgres instance comes with a built-in dashboard service which by default you can access on `http://localhost:18130`
133
134
+# Stats API
135
+
136
+## Get Request metrics
137
138
+```bash
139
+curl http://localhost:18130/stats/requests
140
+```
141
142
+Response
143
144
+```javascript
145
+{
146
+ "incoming": {
147
+ "last_minute": {
148
+ "<service-name>": 1
149
+ }
150
+ },
151
+ "outgoing": {
152
153
154
155
156
+}
157
158
159
0 commit comments