From 9c13afe8ad031d60b257cea3883c68c08523f941 Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Sat, 21 Jan 2017 00:18:58 +0000 Subject: [PATCH] docs: Added an example hardware doc for people to show what they have (#5532) --- doc/Support/Example-Hardware-Setup.md | 32 +++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 33 insertions(+) create mode 100644 doc/Support/Example-Hardware-Setup.md diff --git a/doc/Support/Example-Hardware-Setup.md b/doc/Support/Example-Hardware-Setup.md new file mode 100644 index 000000000000..aad4d79681e9 --- /dev/null +++ b/doc/Support/Example-Hardware-Setup.md @@ -0,0 +1,32 @@ +source: Support/Example-Hardware-Setup.md +### Example hardware setups + +The information in this document is direct from users, it's a place for people to share their +setups so you have an idea of what may be required for your install. + +To obtain the device, port and sensor counts you can run: + +```mysql +select count(*) from devices; +select count(*) from ports where `deleted` = 0; +select count(*) from sensors where `sensor_deleted` = 0; +``` + +#### [laf](https://github.com/laf) + +> Home + +Running in Proxmox. + +| | LibreNMS | MySQL | +| -------------- | ------------------ | ----------------- | +| Type | Virtual | Virtual | +| OS | CentOS 7 | CentOS 7 | +| CPU | 2 Sockets, 4 Cores | 1 Socket, 2 Cores | +| Memory | 2GB | 2GB | +| Disk Type | Raid 1, SSD | Raid 1, SSD | +| Disk Space | 18GB | 30GB | +| Devices | 20 | - | +| Ports | 133 | - | +| Health sensors | 47 | - | +| Load | < 0.1 | < 0.1 | \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index a62b10ad235b..541dd58449fa 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -91,6 +91,7 @@ pages: - Support: - Support/Configuration.md - Support/Discovery Support.md + - Support/Example-Hardware-Setup.md - Support/FAQ.md - Support/Features.md - Support/Install Validation.md