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: couchdb/README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -224,21 +224,21 @@ Note: Ledgend min, max, avg, current and total are from grafana and not the couc
224
224
```
225
225
226
226
WITH httpd AS (
227
-
SELECT (doc->>'ts')::numeric * 1000 AS time,
228
-
((doc->'httpd'->'clients_requesting_changes'->>'current')::numeric - lag((doc->'httpd'->'clients_requesting_changes'->>'current')::numeric, 1) OVER w )
229
-
/ ((doc->>'ts')::numeric - lag((doc->>'ts')::numeric, 1) OVER w)::numeric AS clients_requesting_changes_per_sec,
230
-
((doc->'httpd'->'requests'->>'current')::numeric - lag((doc->'httpd'->'requests'->>'current')::numeric, 1) OVER w )
231
-
/ ((doc->>'ts')::numeric - lag((doc->>'ts')::numeric, 1) OVER w)::numeric AS requests_per_sec,
232
-
((doc->'httpd'->'bulk_requests'->>'current')::numeric - lag((doc->'httpd'->'bulk_requests'->>'current')::numeric, 1) OVER w )
233
-
/ ((doc->>'ts')::numeric - lag((doc->>'ts')::numeric, 1) OVER w)::numeric AS bulk_requests_per_sec,
234
-
((doc->'httpd'->'view_reads'->>'current')::numeric - lag((doc->'httpd'->'view_reads'->>'current')::numeric, 1) OVER w )
235
-
/ ((doc->>'ts')::numeric - lag((doc->>'ts')::numeric, 1) OVER w)::numeric AS view_reads_per_sec,
236
-
((doc->'httpd'->'temporary_view_reads'->>'current')::numeric - lag((doc->'httpd'->'temporary_view_reads'->>'current')::numeric, 1) OVER w )
237
-
/ ((doc->>'ts')::numeric - lag((doc->>'ts')::numeric, 1) OVER w)::numeric AS temporary_view_reads_per_sec
0 commit comments