Skip to content

Commit 9a943cf

Browse files
authored
Merge pull request #1385 from mickem/updated_docs
Updated docs
2 parents 233ed8f + fad5499 commit 9a943cf

27 files changed

Lines changed: 16676 additions & 20156 deletions

docs/docs/reference/check/CheckDisk.md

Lines changed: 1305 additions & 1374 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckHelpers.md

Lines changed: 112 additions & 215 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckLogFile.md

Lines changed: 124 additions & 240 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckNSCP.md

Lines changed: 206 additions & 388 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckNet.md

Lines changed: 927 additions & 1860 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckSecurity.md

Lines changed: 991 additions & 1623 deletions
Large diffs are not rendered by default.

docs/docs/reference/check/CheckSystem.md

Lines changed: 2683 additions & 2384 deletions
Large diffs are not rendered by default.

docs/docs/reference/generic/PythonScript.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ PythonScript = enabled
2424

2525

2626

27-
| Key | Default Value | Description |
28-
|-------------------------------|------------------|---------------------------|
29-
| [python cache](#python-cache) | | Python cache |
30-
| [python lib](#python-lib) | libpython3.12.so | Python lib _(Linux only)_ |
27+
| Key | Default Value | Description |
28+
|-------------------------------|----------------------|---------------------------|
29+
| [python cache](#python-cache) | | Python cache |
30+
| [python lib](#python-lib) | libpython3.12.so.1.0 | Python lib _(Linux only)_ |
3131

3232

3333
```ini
3434
#
3535
[/settings/python]
36-
python lib=libpython3.12.so # Linux only
36+
python lib=libpython3.12.so.1.0 # Linux only
3737
```
3838

3939
#### Python cache <a id="/settings/python/python cache"></a>
@@ -66,15 +66,15 @@ The python DLL to load
6666
| Path: | [/settings/python](#/settings/python) |
6767
| Key: | python lib |
6868
| Platform: | Linux only |
69-
| Default value: | `libpython3.12.so` |
69+
| Default value: | `libpython3.12.so.1.0` |
7070

7171

7272
**Sample:**
7373

7474
```
7575
[/settings/python]
7676
# Python lib
77-
python lib=libpython3.12.so
77+
python lib=libpython3.12.so.1.0
7878
```
7979

8080
### Python scripts <a id="/settings/python/scripts"></a>

docs/docs/reference/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
| check | [CheckLogFile](check/CheckLogFile.md) | File for checking log files and various other forms of updating text files |
1313
| check | [CheckMKClient](check/CheckMKClient.md) | check_mk client can be used both from command line and from queries to check remote systems via check_mk |
1414
| check | [CheckMKServer](check/CheckMKServer.md) | A server that listens for incoming check_mk connection and processes incoming requests. |
15+
| windows | [CheckMSSQL](windows/CheckMSSQL.md) | Check Microsoft SQL Server: connectivity, databases, backups, agent jobs and custom queries. |
1516
| check | [CheckNet](check/CheckNet.md) | Network related checks such as check_ping, check_tcp, check_dns, check_http, check_connections and check_ntp_offset. |
1617
| check | [CheckNSCP](check/CheckNSCP.md) | Use this module to check the health and status of NSClient++ it self |
1718
| check | [CheckSecurity](check/CheckSecurity.md) | CheckSecurity checks host security posture: certificate expiry and (on Windows) the firewall profile state. |
@@ -47,6 +48,7 @@
4748
|----------------|-----------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
4849
| CheckDisk | [check_disk_health](check/CheckDisk.md#check_disk_health) | Combined per-drive health check (free space + I/O metrics). |
4950
| CheckDisk | [check_disk_io](check/CheckDisk.md#check_disk_io) | Check disk I/O performance metrics (throughput, IOPS, queue length, busy time). |
51+
| CheckDisk | [check_disk_write](check/CheckDisk.md#check_disk_write) | Verify that a disk is writable by creating a test file, writing to it, reading it back and deleting it. |
5052
| CheckDisk | [check_drivesize](check/CheckDisk.md#check_drivesize) | Check the size (free-space) of a drive or volume. |
5153
| CheckDisk | [check_files](check/CheckDisk.md#check_files) | Check various aspects of a file and/or folder. |
5254
| CheckDisk | [check_mount](check/CheckDisk.md#check_mount) | Check that a filesystem is mounted with the expected fstype and options. |
@@ -73,6 +75,11 @@
7375
| CheckHelpers | [xform_perf](check/CheckHelpers.md#xform_perf) | Run a check and transform the performance data in various (currently one) way. |
7476
| CheckLogFile | [check_logfile](check/CheckLogFile.md#check_logfile) | Check for errors in log file or generic pattern matching in text files. |
7577
| CheckMKClient | [check_mk_query](check/CheckMKClient.md#check_mk_query) | Request remote information via check_mk. |
78+
| CheckMSSQL | [check_mssql](windows/CheckMSSQL.md#check_mssql) | Check SQL Server connectivity and health (version, edition, uptime). |
79+
| CheckMSSQL | [check_mssql_backup](windows/CheckMSSQL.md#check_mssql_backup) | Check the age of the last full/differential/log backup per database. |
80+
| CheckMSSQL | [check_mssql_databases](windows/CheckMSSQL.md#check_mssql_databases) | Check database state, recovery model and data/log size. |
81+
| CheckMSSQL | [check_mssql_jobs](windows/CheckMSSQL.md#check_mssql_jobs) | Check SQL Server Agent job status. |
82+
| CheckMSSQL | [check_mssql_query](windows/CheckMSSQL.md#check_mssql_query) | Run a custom T-SQL query and apply thresholds to the returned rows. |
7683
| CheckNet | [check_connections](check/CheckNet.md#check_connections) | Count active TCP/UDP connections and report counts per protocol and TCP state. |
7784
| CheckNet | [check_dns](check/CheckNet.md#check_dns) | Resolve a host name and check the response time and resulting addresses. |
7885
| CheckNet | [check_http](check/CheckNet.md#check_http) | Send an HTTP/HTTPS request and check the response status, time, size and body. |

0 commit comments

Comments
 (0)