additional file systems not shown in Observium
Hi
I am using Observium (subscribtion edition 18.1.9011) and want to monitor the file-systems of my servers.
This works fine, but i have a VM which has additional filesystems (one local and some via NFS), and they don't show up
what shows up is:
/ /boot /var/lib/docker/overlay
what doesn't show up (but exists) is:
/var/lib/samba/profiles /mnt/nfs/dept1 /mnt/nfs/dept2
VM OS: Debian 8 Version of net-snmp: 5.7.2.1+dfsg-1+deb8u1+b1
I didn't do any changes to the snmpd.conf on the VM rather than SNMPv3 authentication settings.
Does somebody have any hint for me how to fix this?
Best, Thomas
Mounted filesystems are ignored by default. You can change this by putting this row in your config.php: $config['ignore_mount_network'] = 0; // Ignore network mounted storage
/Markus
2018-05-30 12:12 GMT+02:00 Thomas Stather < thomas.stather@mpimf-heidelberg.mpg.de>:
Hi
I am using Observium (subscribtion edition 18.1.9011) and want to monitor the file-systems of my servers.
This works fine, but i have a VM which has additional filesystems (one local and some via NFS), and they don't show up
what shows up is:
/ /boot /var/lib/docker/overlay
what doesn't show up (but exists) is:
/var/lib/samba/profiles /mnt/nfs/dept1 /mnt/nfs/dept2
VM OS: Debian 8 Version of net-snmp: 5.7.2.1+dfsg-1+deb8u1+b1
I didn't do any changes to the snmpd.conf on the VM rather than SNMPv3 authentication settings.
Does somebody have any hint for me how to fix this?
Best, Thomas
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
Am 30.05.2018 um 13:03 schrieb Markus Klock:
Mounted filesystems are ignored by default. You can change this by putting this row in your config.php: $config['ignore_mount_network'] = 0; // Ignore network mounted storage
/Markus
2018-05-30 12:12 GMT+02:00 Thomas Stather <thomas.stather@mpimf-heidelberg.mpg.de mailto:thomas.stather@mpimf-heidelberg.mpg.de>:
Hi I am using Observium (subscribtion edition 18.1.9011) and want to monitor the file-systems of my servers. This works fine, but i have a VM which has additional filesystems (one local and some via NFS), and they don't show up what shows up is: / /boot /var/lib/docker/overlay what doesn't show up (but exists) is: /var/lib/samba/profiles /mnt/nfs/dept1 /mnt/nfs/dept2 VM OS: Debian 8 Version of net-snmp: 5.7.2.1+dfsg-1+deb8u1+b1 I didn't do any changes to the snmpd.conf on the VM rather than SNMPv3 authentication settings. Does somebody have any hint for me how to fix this? Best, Thomas -- Thomas Stather IT Services VCP4, VCP6-DCV Tel: +49 6221-486 628 Fax: +49 6221-486 561 ------------------------------------------------------------------------ Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany _______________________________________________ observium mailing list observium@observium.org <mailto:observium@observium.org> http://postman.memetic.org/cgi-bin/mailman/listinfo/observium <http://postman.memetic.org/cgi-bin/mailman/listinfo/observium>
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
// Filesystems ignore // FIXME. Rename to 'ignore_storage' $config['ignore_mount_removable'] = 1; // Ignore removable disk storage $config['ignore_mount_network'] = 1; // Ignore network mounted storage $config['ignore_mount_optical'] = 1; // Ignore mounted optical discs
$config['ignore_mount'][] = "/kern"; $config['ignore_mount'][] = "/mnt/cdrom"; $config['ignore_mount'][] = "/proc"; $config['ignore_mount'][] = "/dev"; $config['ignore_mount'][] = "/dev/shm"; $config['ignore_mount'][] = "/run";
$config['ignore_mount_string'][] = "packages"; $config['ignore_mount_string'][] = "devfs"; $config['ignore_mount_string'][] = "procfs"; $config['ignore_mount_string'][] = "UMA"; $config['ignore_mount_string'][] = "MALLOC";
$config['ignore_mount_regexp'][] = '/on: /packages/'; $config['ignore_mount_regexp'][] = '/on: /dev/'; $config['ignore_mount_regexp'][] = '/on: /proc/'; $config['ignore_mount_regexp'][] = '/on: /junos^/'; $config['ignore_mount_regexp'][] = '/on: /junos/dev/'; $config['ignore_mount_regexp'][] = '/on: /jail/dev/'; $config['ignore_mount_regexp'][] = '/^(dev|proc)fs/'; $config['ignore_mount_regexp'][] = '/^/dev/md0/'; $config['ignore_mount_regexp'][] = '/^/var/dhcpd/dev,/'; $config['ignore_mount_regexp'][] = '/UMA/'; $config['ignore_mount_regexp'][] = '!/.snapshot!'; // Netapp: dfFileSys.10:-->/vol/volssg2/.snapshot $config['ignore_mount_regexp'][] = '/dfc#\d+-bootflash/'; // Cisco DFC bootflash is used for the crash files, always free $config['ignore_mount_regexp'][] = '/^DFC/'; $config['ignore_mount_regexp'][] = '/^/run//'; $config['ignore_mount_regexp'][] = '/^/sys//'; On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote: Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
Am 30.05.2018 um 13:03 schrieb Markus Klock:
Mounted filesystems are ignored by default. You can change this by putting this row in your config.php: $config['ignore_mount_network'] = 0; // Ignore network mounted storage
/Markus
2018-05-30 12:12 GMT+02:00 Thomas Stather <thomas.stather@mpimf-heidelberg.mpg.de [mailto:thomas.stather@mpimf-heidelberg.mpg.de]>:
Hi
I am using Observium (subscribtion edition 18.1.9011) and want to monitor the file-systems of my servers.
This works fine, but i have a VM which has additional filesystems (one local and some via NFS), and they don't show up
what shows up is:
/ /boot /var/lib/docker/overlay
what doesn't show up (but exists) is:
/var/lib/samba/profiles /mnt/nfs/dept1 /mnt/nfs/dept2
VM OS: Debian 8 Version of net-snmp: 5.7.2.1+dfsg-1+deb8u1+b1
I didn't do any changes to the snmpd.conf on the VM rather than SNMPv3 authentication settings.
Does somebody have any hint for me how to fix this?
Best, Thomas
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
------------------------------------------------------------------------ Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
_______________________________________________ observium mailing list observium@observium.org [mailto:observium@observium.org] http://postman.memetic.org/cgi-bin/mailman/listinfo/observium [http://postman.memetic.org/cgi-bin/mailman/listinfo/observium]
_______________________________________________ observium mailing list observium@observium.org [mailto:observium@observium.org] http://postman.memetic.org/cgi-bin/mailman/listinfo/observium [http://postman.memetic.org/cgi-bin/mailman/listinfo/observium]
-- Thomas Stather IT Services VCP4, VCP6-DCV Tel: +49 6221-486 628 Fax: +49 6221-486 561 ------------------------------------------------------------------------ Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote:
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
--- FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18 +0100 ---
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote:
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather:
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18 +0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote:
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather:
Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather:
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18 +0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote:
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d - it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote:
Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather:
Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather:
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18 +0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote:
Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Hi
Attached is the output.
Best, Thomas
Am 06.07.2018 um 15:46 schrieb Tom Laermans:
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d - it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote:
Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather:
Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather:
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18
+0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
> On 2018-06-19 11:15:35, Thomas Stather > thomas.stather@mpimf-heidelberg.mpg.de wrote: > > Hi > > Thanks so far! :) > > This did the trick for the NFS mounts, but the local filesystem > (mounted) > > /dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles > type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/) > > is still missing. > > Do you have any clue (this is the most important filesystem for > monitoring)? > > Best, > Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Hi
Does nobody have a clue?
Best, Thomas
Am 10.07.2018 um 12:04 schrieb Thomas Stather:
Hi
Attached is the output.
Best, Thomas
Am 06.07.2018 um 15:46 schrieb Tom Laermans:
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d - it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote:
Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather:
Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather:
Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~... https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
* Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable. Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18
+0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote: > I can't see anything in the default filters which would block > this. Are you sure it's present in SNMP? > >> On 2018-06-19 11:15:35, Thomas Stather >> thomas.stather@mpimf-heidelberg.mpg.de wrote: >> >> Hi >> >> Thanks so far! :) >> >> This did the trick for the NFS mounts, but the local filesystem >> (mounted) >> >> /dev/mapper/vg_data-lv_samba_profiles on >> /var/lib/samba/profiles type btrfs >> (rw,relatime,space_cache,subvolid=5,subvol=/) >> >> is still missing. >> >> Do you have any clue (this is the most important filesystem for >> monitoring)? >> >> Best, >> Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
That filesystem isn't present in the HOST-RESOURCES-MIB HrStorage table.
adam.
On 2018-07-17 06:04, Thomas Stather wrote:
Hi
Does nobody have a clue?
Best, Thomas
Am 10.07.2018 um 12:04 schrieb Thomas Stather:
Hi
Attached is the output.
Best, Thomas
Am 06.07.2018 um 15:46 schrieb Tom Laermans:
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d
- it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote: Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather: Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather: Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~...
[1] https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
- Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable.
Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18
+0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote: Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
Links:
[1] http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2%... _______________________________________________ observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Hi
Ok thats true (because if the missing patch in net-snmp for the debian package) but the disk is available in the UCD-SNMP MIB:
snmpwalk -v3 -l authPriv -u admin -a SHA -A ... -x DES -X ... fs UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u admin -a SHA -A ... -x DES -X ... fs UCD-SNMP-MIB::dskTable -> returns output too
So is there a way (only for this VM) to specify that the disk status should be pulled trough the UCD-SNMP MIB. Or doesn't this make any sense?
Best, Thomas
Am 17.07.2018 um 19:28 schrieb Adam Armstrong:
That filesystem isn't present in the HOST-RESOURCES-MIB HrStorage table.
adam.
On 2018-07-17 06:04, Thomas Stather wrote:
Hi
Does nobody have a clue?
Best, Thomas
Am 10.07.2018 um 12:04 schrieb Thomas Stather:
Hi
Attached is the output.
Best, Thomas
Am 06.07.2018 um 15:46 schrieb Tom Laermans:
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d
- it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote: Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather: Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather: Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~...
[1] https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
- Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable.
Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18
+0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote: Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
Links:
[1] http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2%...
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
Hi
Yesterday, i upgraded to the latest professional release.
I found this post: http://jira.observium.org/browse/OBS-1062
So, the UCD-SNMP- MIB should be used when the data differs from what is coming from HOST-RESOURCES MIB. But for this server, this is obviously not the case nd i don't know why :(
Best, Thomas
Am 19.07.2018 um 10:25 schrieb Thomas Stather:
Hi
Ok thats true (because if the missing patch in net-snmp for the debian package) but the disk is available in the UCD-SNMP MIB:
snmpwalk -v3 -l authPriv -u admin -a SHA -A ... -x DES -X ... fs UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u admin -a SHA -A ... -x DES -X ... fs UCD-SNMP-MIB::dskTable -> returns output too
So is there a way (only for this VM) to specify that the disk status should be pulled trough the UCD-SNMP MIB. Or doesn't this make any sense?
Best, Thomas
Am 17.07.2018 um 19:28 schrieb Adam Armstrong:
That filesystem isn't present in the HOST-RESOURCES-MIB HrStorage table.
adam.
On 2018-07-17 06:04, Thomas Stather wrote:
Hi
Does nobody have a clue?
Best, Thomas
Am 10.07.2018 um 12:04 schrieb Thomas Stather:
Hi
Attached is the output.
Best, Thomas
Am 06.07.2018 um 15:46 schrieb Tom Laermans:
Thomas,
Please share the output of ./discovery.php -h fs-test -m storage -d
- it could provide some clues... :-)
Tom
On 7/6/2018 3:04 PM, Thomas Stather wrote: Hi
After some digging, i don't think its because of the net-snmp package. It must be something in Observium because the snmpwalk returns the BTRFS filesystem indeed:
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test | grep /var/lib/samba/profiles -> no output
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskPath ... -> UCD-SNMP-MIB::dskPath.3 = STRING: /var/lib/samba/profiles ...
snmpwalk -v3 -l authPriv -u *** -a SHA -A *** -x DES -X *** fs-test UCD-SNMP-MIB::dskTable -> returns output too
Any clues?
Best, Thomas
Am 19.06.2018 um 16:29 schrieb Thomas Stather: Sorry a typo, the Debian Jessy package is:
ii snmp 5.7.2.1+dfsg-1+deb8u1+b1 amd64 SNMP (Simple Network Management Protocol) applications
Am 19.06.2018 um 16:28 schrieb Thomas Stather: Hi
This is because of the following patch beeing missing in the Debian Jessy "snmp" package:
https://sourceforge.net/p/net-snmp/bugs/2502/
https://packages.debian.org/de/source/jessie/net-snmp ii snmp 5.7.2~dfsg-8.1ubuntu3.2 amd64 SNMP (Simple Network Management Protocol) applications
FYI Ubuntu 14.04 and newer already have it:
http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2~...
[1] https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1289503
net-snmp (5.7.2~dfsg-8.1ubuntu2) trusty; urgency=medium
- Add 00upstream-btrfs.patch: Add btrfs support to hrFSTable.
Cherrypicked from upstream, by way of Nafallo Bjälevik. Thanks! (LP: #1289503)
-- Martin Pitt martin.pitt@ubuntu.com Wed, 12 Mar 2014 13:24:18
+0100
Seems like i have to wait until the package gets an update. I don't know to whom to write to though.
Best, Thomas
Am 19.06.2018 um 13:48 schrieb Tom Laermans:
It's btrfs, I'm guessing net-snmp does not export this (correctly) via SNMP...
On 6/19/2018 12:58 PM, Adam Armstrong wrote:
I can't see anything in the default filters which would block this. Are you sure it's present in SNMP?
On 2018-06-19 11:15:35, Thomas Stather thomas.stather@mpimf-heidelberg.mpg.de wrote: Hi
Thanks so far! :)
This did the trick for the NFS mounts, but the local filesystem (mounted)
/dev/mapper/vg_data-lv_samba_profiles on /var/lib/samba/profiles type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
is still missing.
Do you have any clue (this is the most important filesystem for monitoring)?
Best, Thomas
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
-- Thomas Stather IT Services
VCP4, VCP6-DCV
Tel: +49 6221-486 628 Fax: +49 6221-486 561
Max Planck Institute for Medical Research (MPImF) Jahnstrasse 29, 69120 Heidelberg Germany
Links:
[1] http://changelogs.ubuntu.com/changelogs/pool/main/n/net-snmp/net-snmp_5.7.2%...
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
participants (4)
-
Adam Armstrong
-
Markus Klock
-
Thomas Stather
-
Tom Laermans