Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
598fc9c
Add system:sequences and system:all_sequences
simon-dew May 14, 2024
daa8b92
Add system:vitals
simon-dew May 14, 2024
5808c1a
Replace profiling explanation with includes from REST API
simon-dew May 14, 2024
ba2c889
Tabs for requests, prepared statements
simon-dew May 14, 2024
36e691e
Outsource prepared statement fields to the REST API docs
simon-dew May 14, 2024
5bdb7bc
Delete Monitor Query Clusters section
simon-dew May 16, 2024
b53af28
Rework sections on query profiling
simon-dew May 17, 2024
0b1c8cc
Update REST API examples
simon-dew May 17, 2024
e5a6163
Update ToC
simon-dew May 17, 2024
749586d
Add sequence examples
simon-dew May 17, 2024
7a76458
Move Configure the Completed Requests
simon-dew May 17, 2024
a41bb58
Move query profiling
simon-dew May 17, 2024
36943c4
Query engine → query node
simon-dew May 22, 2024
cfa7d74
Reformat ToC
simon-dew May 22, 2024
94a3911
Update system:vitals
simon-dew May 22, 2024
848fe85
Update system:active_requests
simon-dew May 22, 2024
577bd09
Update system:prepareds
simon-dew May 22, 2024
6f65814
Update system:completed_requests
simon-dew May 22, 2024
17720f6
Update query plan in system catalogs
simon-dew May 22, 2024
8c97eb8
Minor changes
simon-dew May 22, 2024
fccb552
Add links to query plan field names and meanings;
simon-dew May 22, 2024
47dc282
Replace profile field inclusion with link
simon-dew May 22, 2024
dc0b2c5
Minor wording changes
simon-dew May 22, 2024
adbddc6
Link to logging
simon-dew May 22, 2024
5e8af55
Tighten up wording for conditional output
simon-dew May 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/n1ql/examples/settings/node-level-settings.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

# tag::curl[]
curl http://localhost:8093/admin/settings -u user:pword
curl $BASE_URL/admin/settings -u $USER:$PASSWORD
# end::curl[]
2 changes: 1 addition & 1 deletion modules/n1ql/examples/settings/save-node-level-settings.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

# tag::curl[]
curl http://localhost:8093/admin/settings -u user:pword -o ./query_settings.json
curl $BASE_URL/admin/settings -u $USER:$PASSWORD -o ./query_settings.json
# end::curl[]
Loading