Metadata-Version: 2.4
Name: dargslan-nfs-health
Version: 1.0.0
Summary: NFS mount health checker — detect stale mounts, measure latency, audit exports, and monitor NFS statistics
Author-email: Dargslan <info@dargslan.com>
License: MIT
Project-URL: Homepage, https://dargslan.com
Project-URL: Documentation, https://dargslan.com/blog
Project-URL: Repository, https://github.com/Dargslan
Project-URL: Free Cheat Sheets, https://dargslan.com/cheat-sheets
Project-URL: Linux & DevOps Books, https://dargslan.com/books
Keywords: nfs,network-filesystem,mount,storage,linux,sysadmin,devops
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Filesystems
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# dargslan-nfs-health

**NFS Mount Health Checker** — Detect stale mounts, measure latency, audit exports, and monitor NFS statistics. Zero external dependencies.

[![PyPI version](https://img.shields.io/pypi/v/dargslan-nfs-health)](https://pypi.org/project/dargslan-nfs-health/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Installation

```bash
pip install dargslan-nfs-health
```

## CLI Usage

```bash
dargslan-nfs report           # Full NFS health report
dargslan-nfs mounts           # List NFS mounts with status
dargslan-nfs exports          # Show NFS exports
dargslan-nfs stats            # NFS client statistics
dargslan-nfs throughput -m /mnt/nfs  # I/O throughput test
dargslan-nfs json             # JSON output
```

## Python API

```python
from dargslan_nfs_health import NFSHealth
nh = NFSHealth()
mounts = nh.check_all_mounts()
issues = nh.audit()
nh.print_report()
```

## More from Dargslan

- [Dargslan.com](https://dargslan.com) — Linux & DevOps eBook Store
- [Free Cheat Sheets](https://dargslan.com/cheat-sheets)
- [Blog & Tutorials](https://dargslan.com/blog)

## License

MIT — see [LICENSE](LICENSE)
