Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
icinga-checks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
icinga-checks
Commits
5189faa6
Commit
5189faa6
authored
1 year ago
by
Hahn Axel (hahn)
Browse files
Options
Downloads
Patches
Plain Diff
update doc page
parent
3ce72b60
No related branches found
No related tags found
1 merge request
!151
6588 add couchdb check - add checks "open_databases" + "open_os_files"
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/20_Checks/check_couchdb.md
+51
-11
51 additions, 11 deletions
docs/20_Checks/check_couchdb.md
with
51 additions
and
11 deletions
docs/20_Checks/check_couchdb.md
+
51
−
11
View file @
5189faa6
...
...
@@ -18,7 +18,7 @@ Check couchdb status.
______________________________________________________________________
CHECK_COUCHDB
v0.
4
v0.
5
(c) Institute for Medical Education - University of Bern
Licence: GNU GPL 3
...
...
@@ -42,6 +42,8 @@ OPTIONS:
up show general couchdb status
replication show last replication status
pending show count of pending updates for nodes, dbs and users
open_databases show number of open databases
open_os_files show number of file descriptors CouchDB has open
EXAMPLE:
check_couchdb -m up
...
...
@@ -164,3 +166,41 @@ Reponse: of /_up
}
}
```
### open_databases
Show number of open databases
This check sends performance data.
``check_couchdb -m open_databases`` returns
```
txt
OK: Couchdb :: open_databases = 0
Reponse: of /_node/_local/_stats/couchdb/open_databases
{
"value": 0,
"type": "counter",
"desc": "number of open databases"
}
|opendatabases=0;;
```
### open_os_files
Show number of file descriptors CouchDB has open
This check sends performance data.
``check_couchdb -m open_os_files`` returns
```
txt
OK: Couchdb :: open_os_files = 0
Reponse: of /_node/_local/_stats/couchdb/open_os_files
{
"value": 0,
"type": "counter",
"desc": "number of file descriptors CouchDB has open"
}
|openosfiles=0;;
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment