Index
- How can I retire a device in Statseeker?
- How do I create a Diagnostic Report from the command line?
- Does Statseeker support a basic configuration-only backup mechanism?
- What backup options does Statseeker’s built-in backup mechanism support?
- Can I use a custom agent to back up the Statseeker server?
- Does Statseeker support network interface fail-over or link aggregation?
- Why does my SNMP walk not return any results?
- What is the backup cycle count?
- What is included in Statseeker backup?
- How much space is required for a backup?
- What is the importance of FQDN?
- How can I upload a Statseeker script/hotfix?
- How can I prune the Database?
- How do I use RegEx to exclude a device/interface in Autogrouping?
- Configure Statseeker to be polled by other monitoring software?
- How can I increase the ping timeout value?
- How do I add SNMP v2 devices via the command line?
- How can I disable/enable Inventory?
How can I retire a device in Statseeker?
- Single devices can be retired from the Console
- Multiple devices can be retired from the Administration Tool
To retire a device via the Console:
- Click to select the device from the Device Filter
- From the Report List, select General > Device Details
- Click the device name
- Click Retire
This will open the Device Details Report.
This will open the NIM Edit Device dialog.
To retire multiple devices from the Administration Tool:
- Open the Administration Tool
- Select Network Discovery > Delete/Retire Devices
- Click to select a device from the list provided. Hold Shift while clicking to select groups of devices and Ctrl to add an additional device to the selection
- Click Retire
When a device is retired, Statseeker takes the following actions:
Action | Details |
Rename the device |
|
Stop polling | Ping and SNMP polling are set to off |
Stop Mac/IP and inventory data collection | Inventory reporting and discovery will be disabled for the device |
Regroup the device |
|
Filter status reports | The device will not appear in any current device status reports |
Edit Hosts File | If the device appeared in the Hosts File, remove it |
Edit SNMP Conf | If the device appeared in the SNMP Conf file, remove it |
Note: it is not possible to un-retire a device.
How do I create a Diagnostic Report from the command line?
- Login into the Statseeker server via ssh as the Statseeker user
- Run base-server-diagnostics | gzip -c > /tmp/diag-report.html.gz
Does Statseeker support a basic configuration-only backup mechanism?
Currently, this is not possible via the built-in backup mechanism, however, we are investigating adding this option to a future version of Statseeker.
What backup options does Statseeker’s built-in backup mechanism support?
Statseeker supports Local, FTP, SFTP. The SSH backup method was deprecated in Statseeker v25.2.
Can I use a custom agent to back up the Statseeker server?
Yes, but a Statseeker installation can only be restored via the built-in backup/restore functionality.
Does Statseeker support network interface fail-over or link aggregation?
Currently, Statseeker does not provide an administration tool to configure the network interfaces for fail-over or link aggregation, however, many customers have successfully used the standard FreeBSD link aggregation. See FreeBSD Network aggregation for details.
Why does my SNMP walk not return any results?
There are several possible reasons as to why your SNMP Walk is not returning results, the following items may help diagnose the cause:
- Is the device up? Can you ping it?
- Is SNMP configured and enabled on the device?
- Check the community string being used, does it match the string configured on the device?
- Does Statseeker have SNMP read access to the device?
- Is Statseeker’s access to the device blocked by access lists or firewalls?
What is the backup cycle count?
The backup cycle defines the number of backups you wish to keep.
What is included in Statseeker backup?
The whole /home/statseeker directory. This includes all configuration and historical data that would be required to restore operations in the event of a critical failure.
How much space is required for a backup?
From the web interface:
- Select Console > Report List > Configuration Details
- Locate the Home entry
The value of the Home entry will specify the space required for a backup of your current installation. Disk space is needed to write the new backup prior to the old backup being deleted, therefore, (cyclecount+1)*homesize GB will be required.
What is the importance of FQDN?
The Fully Qualified Domain Name (FQDN) is required for mail configuration and SSL configuration. FDQN details can be confirmed and edited from:
- The Administration Tool
- The ssadmin utility
- The command line interface (CLI)
From the Administration Tool
- Select Statseeker Administration > Network Configuration
- Click Edit
- Supply the FQDN in the Hostname field, and click Save
From ssadmin
- Log in to your Statseeker server via ssh or directly
- From the command prompt enter ssadmin and enter the root user password if prompted
- From the ssadmin menu select 4. Network Configuration
- Select 7. Set hostname.domainname
- Provide the FQDN and enter y to set the configuration
From the CLI
How can I upload a Statseeker script/hotfix?
You can upload Statseeker related scripts and hotfix via Admin tool.
- NIM console > Administration Tool > Manage Scripts
How can I prune the Database?
You can prune the database via the Administration Tool:
- Administration Tool > Network Discovery – Advanced Options > Advanced Options
- Click File Edit Mode, located at the bottom of the form
- Scroll to the bottom and append ‘max_history_ts’ ‘<Number of days>’e.g. ‘max_history_ts’ ‘365’, this will allow you to keep 365 days’ worth of data
This will display a list of attribute::value pairs.
The action is taken as part of a daily database tuning process which occurs at 00:30 server-time so in order to prune the database as a onetime action, comment out/remove the command the following day.
How do I use RegEx to exclude a device/interface in Auto-grouping?
Use a ‘negative lookahead assertion’ to exclude a device or interface.
^((?!(exclude_entries_containing_this_string)).)*$
Scenario:
- We want to populate a group with all the monitored devices in the subnet 10.100.54.*
- We want to exclude any Uninterrupted Power Supply (UPS) devices from this group
- The UPS devices in this subnet include the string -ups in the device name
To create an populate a group satisfying these requirements:
- Select Administration Tool > User Profile/Grouping > Auto Grouping and click Add
- Enter a Rule Name
- For Groups to populate, click Add and enter a name for the new group
- Set Group Type = Device
- Set an Attribute Filter for the subnet:
- From the dropdown select Device Attributes > ipaddress
- Set the value to 10.100.54.*
- Click (+) to create a second filter for our exclusion string
- Set Attribute Filter = Device Attributes > Name
- Set the value to ^((?!(-ups)).)*$
Configure Statseeker to be polled by other monitoring software?
Your Statseeker server can be monitored by other services via ICMP and/or SNMP. When taking this route, you may want to consider the following options:
- Editing snmp.config to:
- Editing rc.conf to:
Editing snmpd.config
- Log in to your Statseeker server as the root user
Note: if you are using SSH to access the CLI you will need to login as the statseeker user and then switch to the root user with
su
- Make a copy of the snmpd.config file with
cp /etc/snmpd.config /etc/snmpd.config_original
- Edit snmpd.config with
vi /etc/snmpd.config
- To update the default SNMP community string for accessing the Statseeker server:
- Locate the line read := “public” and change the word public to a community string of your choice
- To disable the SNMP read community string while leaving the write community string active:
- Add a hash (#) to the beginning of the line begemotSnmpdCommunityString.0.1 = $(read)
- To disable both read and write strings but leave the SNMP agent running for V3 access:
- Locate the entry begemotSnmpdCommunityDisable = 1 and update to begemotSnmpdCommunityDisable = 0
- Save the file with:
wq!
- Restart SNMP services with:
service bsnmpd restart
Editing rc.conf
- Log in to your Statseeker server as the root user
Note: if you are using SSH to access the CLI you will need to login as the statseeker user and then switch to the root user with:
su
- Make a copy of the rc.conf file with:
cp /etc/rc.conf /etc/rc.conf_original
- Edit rc.conf with:
vi /etc/rc.conf
- To disable the SNMP service from starting:
- Locate the entry bsnmpd_enable=”YES”) and update to bsnmpd_enable=”NO”
- Save the file with:
wq!
- Stop the current bsnmpd instance with:
service bsnmpd stop
How can I increase the ping timeout value for a device?
Ping configuration can be viewed and edited from the Statseeker server CLI.
View Ping Timeout
Run the following on the server’s CLI:
- nim-cfg get *::ping_outage:0 – view the ping timeout for all devices
- nim-cfg get <DEVICE_NAME>::ping_outage:0 – view the ping timeout for the named device
- Example: nim-cfg get Adelaide-rtr::ping_outage:0
Edit Ping Timeout
Run the following on the server’s CLI:
- nim-ping-admin update -o <TIMEOUT_VALUE_IN_SECONDS> -d <DEVICE_NAME> – update the ping timeout for the named device
- Example: nim-ping-admin update -o 120 -d Adelaide-rtr
- ALWAYS set ping outage values in an increment of 15 seconds (e.g 45, 60, 90, 120)
- DO NOT set ping outage to a value less than 45 seconds
How do I add SNMP v2 devices via the command-line?
Note: to edit Statseeker configuration via the command-line, ensure that you use the statseeker user account.
Adding a single device to Statseeker via the command-line
- Ensure the community string for the device in is the community list:
- Administration Tool > Network Discovery > SNMP Communities
- From the command-line, run nim-discover -i
Adding multiple devices to Statseeker via the command-line
- Update the hosts file:
- Located at /home/statseeker/nim/etc/hosts.cfg
- Syntax: <ipaddress> <hostname>, e.g.10.1.2.3 Melbourne-Router1
- Sync hosts with nim-cfg-sync-hosts
- Launch discovery with nim-discover -h
How can I disable/enable Inventory?
- Select Administration Tool > Network Discovery – Advanced Options > Advanced Options
- From the Reports, set Inventory Report as required
- Click Save
- Run discovery/rewalk from Administration Tool > Network Discovery > Discover My Network