-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Couch stats resource tracker v3 rebase main #5602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
e9c4383
e5835fc
d1176b2
18d5b0f
eaf2363
2345968
776d714
57118ab
ae0cb07
9be2a57
b9a0ccd
2cfcf59
22af987
ad60c3c
389c396
a1ccdbf
954584b
b04c2d8
3d7e655
e873eb2
ab98716
7f0c41d
d866a61
4d2a5ba
8604aca
2131fb6
c9738fe
fa6db32
64e0e84
9623db8
92738f9
c9e3ae1
a2cd51f
837f6d1
a1dc061
5deaa68
5110c41
113633f
7417e2a
cc0a806
4ef6dd7
97ae684
7153559
0eb72fd
e64607a
2c9f5d5
18769c4
c50264f
c4fb87e
6218296
8a21722
d4e53b7
fb05f92
b4827b8
5b3167d
45495fc
e259e52
cc7f8ab
ba42c8a
8b0147f
65b9e40
fa0880d
b723df5
9947f4d
a5d486d
ae39d22
fb2c8c2
6414dc2
93bc894
e6b0212
debe52f
2357812
d757add
8457fe4
b762046
38608f7
38a53a0
86ba96b
00a02af
d5561f2
1380b09
eb92a4d
828667e
1ff2376
711b070
d5241e7
6481338
71d11ea
2418297
6c0ab49
690554d
da87fc3
4a2af49
13e75ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ url_handler(<<"_utils">>) -> fun chttpd_misc:handle_utils_dir_req/1; | |
url_handler(<<"_all_dbs">>) -> fun chttpd_misc:handle_all_dbs_req/1; | ||
url_handler(<<"_dbs_info">>) -> fun chttpd_misc:handle_dbs_info_req/1; | ||
url_handler(<<"_active_tasks">>) -> fun chttpd_misc:handle_task_status_req/1; | ||
url_handler(<<"_active_resources">>) -> fun couch_srt_httpd:handle_resource_status_req/1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have an API documentation section, we should probably document what the requests look like there There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've got the documentation reworked into the formal Sphinx docs and now we've got a CSRT working set of docs to extend from, I'm hoping @iilyak can update those docs with his HTTP API updates. I was also wondering if there's a simple way to get the inline docs from the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Docs are added. |
||
url_handler(<<"_scheduler">>) -> fun couch_replicator_httpd:handle_scheduler_req/1; | ||
url_handler(<<"_node">>) -> fun chttpd_node:handle_node_req/1; | ||
url_handler(<<"_reload_query_servers">>) -> fun chttpd_misc:handle_reload_query_servers_req/1; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ | |
couch_log, | ||
couch_event, | ||
ioq, | ||
couch_srt, | ||
couch_stats, | ||
couch_dist, | ||
couch_quickjs | ||
|
Uh oh!
There was an error while loading. Please reload this page.