Room Alert Manager – AVTECH https://avtech.com/articles Frequently Asked Questions Tue, 05 Mar 2024 21:11:21 +0000 en-US hourly 1 https://wordpress.org/?v=6.2.2 How To Troubleshoot Server Actions In Room Alert Manager https://avtech.com/articles/24732/how-to-troubleshoot-server-actions-in-room-alert-manager/ Tue, 22 Nov 2022 14:26:09 +0000 https://avtech.com/articles/?p=24732 This FAQ walks you through various troubleshooting steps that you may take if Room Alert Manager is unable to connect and send a command to a target server. It’s best to begin troubleshooting with a manual test through Windows Command Prompt. If the SSH connection cannot be established, we recommend the following: If Room Alert […]

The post How To Troubleshoot Server Actions In Room Alert Manager appeared first on AVTECH.

]]>
This FAQ walks you through various troubleshooting steps that you may take if Room Alert Manager is unable to connect and send a command to a target server.

It’s best to begin troubleshooting with a manual test through Windows Command Prompt.

Perform a manual test

Follow these steps to manually test the SSH connection:

  1. On Room Alert Manager’s host system, open a command prompt window as an administrator. You may find it at the following path: Start–> All Programs–> Windows System (or Accessories)–> Command Prompt
  2. Then, in the command prompt window, run this command: ssh [username@target IP or hostname]
  3. You should be able to connect to the target system without needing to enter the user’s password. (If the key has a passphrase associated with it, you will be prompted to enter that.)
    • If the SSH connection fails for any reason (including if you get prompted for your user password) please skip step 4 and go straight to the troubleshooting recommendations below.
  4. If you are able to successfully establish an SSH connection to the target server, you can try manually sending the shutdown/reboot command next.
    • To do so, enter either the shutdown or reboot command below that corresponds to the target server’s Operating System.
      • Windows System – Shutdown: shutdown -s
      • Windows System – Reboot: shutdown -r
      • Linux System – Shutdown: sudo shutdown -h -t 5
      • Linux System – Reboot: sudo shutdown -r -t 5
      • Mac System – Shutdown: sudo shutdown -h now
      • Mac System – Reboot: sudo shutdown -r now
    • After a few moments, you should get feedback that indicates whether or not the command was successful. (In our example, we successfully rebooted the target server.)

If the SSH connection cannot be established, we recommend the following:

Check Your File Permissions

Your “authorized keys” file must be stored in the correct location with the proper file name & permissions.

  • The file name & location depends on whether the user account is a member of the local administrators group or a standard user account.
    • For a standard user, the authorized_keys file is located in the .ssh folder of the user’s directory.
      On Windows systems, the path is C:\Users\UserName\.ssh\authorized_keys
    • For an admin user, the administrators_authorized_keys file is located in the system’s main ssh directory.
      On Windows systems, the path is C:\ProgramData\ssh\administrators_authorized_keys
  • Only the local system and administrators security group should have permissions to access the administrators_authorized_keys file.
    • The example below shows the permissions of the file on our Windows system.
Check Your SSH Configuration Settings
  1. Open the sshd configuration file in a text editor, such as Notepad.
    • For our example, we’re opening the file located at C:\ProgramData\ssh\sshd_config in a text editor.
  2. Locate the Authentication settings, and make sure public key authentication is enabled.
    • In our example, we needed to uncomment the line “PubkeyAuthentication” and set it to yes.
  3. Restart the SSH Server daemon to apply the change.
Check Your Firewall Rules
  • Ensure that local anti-spyware and anti-virus programs on both the target computer and Room Alert Manager’s host system allow SSH connections.
  • Ensure that the firewall on the target system allows incoming remote SSH connections via TCP Port 22 (or whatever custom port you may be using).
Review Your SSH Logs

OpenSSH includes log files that may offer additional clues—or even specific suggestions—for troubleshooting. Debugging can be enabled at multiple levels in order to print additional information to the log files. For more information, please see this Wikibooks entry: OpenSSH/Logging and Troubleshooting.

For example, this debug line in our log shows that we need to adjust the user permissions on our administrators_authorized_keys file.

To get the debugging lines to print in our log, we simply adjusted the #Logging settings within our sshd_config file.

If Room Alert Manager can only sometimes connect to the target server, we recommend the following:

Check Your OpenSSH Server Startup Setting

On the target system, the sshd service should be set to startup automatically. These instructions show you how to do that on Windows.

  1. Open Windows Services.  You may find it at the following path: Start–> Control Panel–> Administrative Tools–> Services.
  2. Right-click on OpenSSH SSH Server in the list of programs, and then select Properties.
  3. In the service properties window, make sure Startup type is set to Automatic.

If Room Alert Manager is able to connect to the target system, but shutdown/reboot commands fail, we recommend the following:

Check Your User Permissions

Use an administrator user on the target server. If the target server is a Mac or Linux, you’ll need to enable sudo without a password.

You can do this by editing the admin group permissions within the ‘/etc/sudoers’ file so that the user permissions are: ALL = (ALL) NOPASSWD: ALL. If you don’t wish to grant the user full-access, you may configure limited access to only execute certain commands without a password. There are tutorials available online that walk you through this process.

The post How To Troubleshoot Server Actions In Room Alert Manager appeared first on AVTECH.

]]>
How To Configure Server Command Actions In Room Alert Manager https://avtech.com/articles/24711/how-to-configure-server-command-actions-in-room-alert-manager/ Thu, 10 Nov 2022 19:50:49 +0000 https://avtech.com/articles/?p=24711 Room Alert Manager can automatically send a server command in response to an alert. This feature is advantageous for powering down a system or group of systems when environment conditions—such as high temperatures, power loss, flooding, etc.—could potentially lead to catastrophic system damage. Before you begin: Room Alert Manager connects to servers via SSH keys. […]

The post How To Configure Server Command Actions In Room Alert Manager appeared first on AVTECH.

]]>
Room Alert Manager can automatically send a server command in response to an alert. This feature is advantageous for powering down a system or group of systems when environment conditions—such as high temperatures, power loss, flooding, etc.—could potentially lead to catastrophic system damage.

Before you begin:

Room Alert Manager connects to servers via SSH keys. In order for Room Alert Manager to perform server commands, you must generate your own SSH key pair(s) and store the keys securely on your systems. For more information, please see How To Configure Room Alert Manager To Use An SSH Key.

Step 1: Configure the target server in Room Alert Manager

  1. Open Room Alert Manager in your web browser.
  2. In order to configure server actions in Room Alert Manager, you must log in as an admin-level or manager-level user.
  3. Select Actions –> Servers in the navigation bar to the left to open the Servers page.
  4. Then select the New Server button.
  5. The Server Form will open.
    • First, give your server a unique name.
      • The default name is “New Server X” but we’re renaming ours “Example Server.”
    • In Target System, enter the server’s IP address or hostname.
    • In Username, enter the username of a user on the server that can access the system with the private key.
    • In the SSH Key drop-down menu, select the saved SSH Key configuration that this server uses for authentication.
    • In Port Number, you may leave the default, 22, or enter a custom port.
  6. Then select Save Changes.
  7. The server will now appear in the Servers List, as shown below.
    • The new server appears in red because it has not yet been tested.
    • Expanding the server details in the list shows “Last connection attempt: never.”
  8. To test the server connection, either click the “test connection” link in the expanded server details, or select Test from the server’s context menu.
  9. You may see a message stating that this is the first time connecting to the server. If so, select Yes and Trust & Test Again.
  10. If the test is successful, you’ll see a confirmation message, and the server will no longer be highlighted in red within the list.

    If the test fails, please see this FAQ for troubleshooting information: How To Troubleshoot Server Command Actions In Room Alert Manager.
  11. Once the server connection has been successfully tested, you can start adding server actions to alerts—see the next section for instructions.

If you edit the server configuration in the future, you should re-test the connection.

Step 2: Configure a Server Command Action

  1. Begin configuring your alert in Room Alert Manager. This FAQ shows you how: How To Create Alerts In Room Alert Manager.
    • Stop when you reach “Step 3: Add actions to your alert.”
  2. In the Then… section of your new alert, select Server Command to add a Server Command action.
  3. In the Server Command Action form, first select a command from the drop-down menu.
    • You may choose to shutdown or reboot a Windows, Linux, or Mac system. The command to be sent to the server is displayed beside the drop-down menu.
  4. Then select one or more servers to send the command to.
  5. (Optional) You may configure the action to repeat and/or associate the action with a Quiet Time schedule.
    • In most cases, server shutdown and reboot command actions should not be configured to repeat.
  6. When you’re done configuring your alert, select Save Changes.

The post How To Configure Server Command Actions In Room Alert Manager appeared first on AVTECH.

]]>
How To Generate An SSH Key Pair For Use With Room Alert Manager https://avtech.com/articles/24875/how-to-generate-an-ssh-key-pair/ Fri, 28 Oct 2022 14:34:56 +0000 https://avtech.com/articles/?p=24875 Room Alert Manager can perform Server Command Actions using SSH (Secure Shell protocol) key authentication. This FAQ walks you through the process of generating and storing an SSH key pair using the network connectivity tool OpenSSH. For more information, see Key-based authentication in OpenSSH for Windows.

The post How To Generate An SSH Key Pair For Use With Room Alert Manager appeared first on AVTECH.

]]>
Room Alert Manager can perform Server Command Actions using SSH (Secure Shell protocol) key authentication. This FAQ walks you through the process of generating and storing an SSH key pair using the network connectivity tool OpenSSH.

For more information, see Key-based authentication in OpenSSH for Windows.

Step 1: Check that an SSH client is installed

In order to generate the keys, you need to have an SSH client installed on Room Alert Manager’s host system.

  • There are a few ways to check if an SSH client is installed; one easy way is to open Windows Command Prompt and enter this command:
    ssh -V
  • This command returns the current version of the SSH client that is installed on the machine.
  • If there is no SSH client installed, the command will instead return: “‘ssh’ is not recognized as an internal or external command…”

The steps below show you how to install the OpenSSH client on Windows 10.

OpenSSH is built into modern versions of Windows as an “optional feature” (not installed by default). To install it:

  1. Go to Windows Settings –> Apps and select Optional features.
    (If you already have the SSH client installed, it will appear in the list here.)
  2. Select Add a feature at the top of the Optional Features list.
  3. Scroll down to find “OpenSSH Client” in the list. Enable the checkbox beside it, and then select Install.

Running an older version of Windows that doesn’t have OpenSSH built-in?
You can download OpenSSH from here: https://github.com/PowerShell/Win32-OpenSSH/tags. (We recommend downloading OpenSSH-Win64.zip of the v8.9.1.0p1-Beta release or newer.) You can find installation instructions in this tutorial: How to Install an OpenSSH Server/Client on A Windows 2016 Server.

Step 2: Configure the server to accept SSH connections

On the target server, you must have an SSH daemon (sshd) running in the background, constantly waiting for an SSH connection.

Select your target server’s OS tab below for instructions.

WindowsLinuxMac

If the target server is Windows-based, you can check the SSH Server status through the Windows Services tool.

  1. Open the Services tool at the following path: Start–> Control Panel–> Administrative Tools–> Services.
  2. In the list of services, find the SSH Daemon service. For OpenSSH, the name is “OpenSSH SSH Server.”
  3. Its status should be Running.
  4. If the service isn’t running, select Start to immediately start the SSH server in the background.

If the OpenSSH Server service isn’t found, you can follow these steps to install it:

  1. Go to Windows Settings –> Apps and select Optional features.
    (If you already have OpenSSH Server installed, it will appear in the list here.)
  2. Select Add a feature at the top of the Optional Features list.
  3. Scroll down to find “OpenSSH Server” in the list. Enable the checkbox beside it, and then select Install.

Running an older version of Windows that doesn’t have OpenSSH built-in?
You can download OpenSSH from here: https://github.com/PowerShell/Win32-OpenSSH/tags. (We recommend downloading OpenSSH-Win64.zip of the v8.9.1.0p1-Beta release or newer.) You can find installation instructions in this tutorial: How to Install an OpenSSH Server/Client on A Windows 2016 Server.


Once the service is installed, configure it to allow SSH public key authentication.

  1. Open the sshd configuration file in a text editor, such as Notepad.
    • For our example, we’re opening the file located at C:\ProgramData\ssh\sshd_config in a text editor.
  2. Locate the Authentication settings, and make sure public key authentication is enabled.
    • In our example, we needed to uncomment the line “PubkeyAuthentication” and set it to yes.
  3. Restart the SSH Server daemon to apply the change.

If the target server is Linux or Unix-based, you can use a simple command* to check the SSH Server status.

*Different versions of Linux/Unix systems require slightly different commands than what’s listed below.

  1. Open a terminal and enter: sudo systemctl status sshd
  2. The command should return the name of the sshd service, and basic information about its current status, including whether or not it is currently active.
  3. If the SSH Server is not active, you can use a command like sudo systemctl start sshd.service to start it.

If there is no SSH Server installed, you can use a command like sudo apt install openssh-server to install OpenSSH Server. For more information, please see this SSH documentation, or reference recourses specific to your Linux system.

If the target server is a Mac, you can check the SSH Server status through System Preferences.

All Macs have a bundled SSH server that is disabled by default.

  1. Open the System Preferences GUI at the following path: Apple Menu–> System Preferences–> Sharing.
  2. In the list of services, Remote Login should be enabled.
  3. If the Remote Login checkbox is not already enabled, click on it to immediately start the SSH server in the background.
Step 3: Generate the public and private key pair

Next, generate a public/private key pair from Room Alert Manager’s host system.

After generating the key pair, you’ll share the public key with the target server. The private key should remain securely stored on Room Alert Manager’s host system.

These steps show you how to generate an SSH key pair through command prompt:

  1. On Room Alert Manager’s host system, open a command prompt window.
  2. Then run this command: ssh-keygen
  3. You’ll see a message that the keys are being generated.
  4. When prompted to select a location, you may press Enter to leave the default location (the .ssh folder on your user drive) or specify a path and/or filename.
  5. Next, you’ll be prompted to use a passphrase to encrypt your private key files. Enter a passphrase or simply press Enter to leave it empty.
  6. You’ll see a message showing where the keys have been stored, the key fingerprint, and the key’s randomart image.
  7. In our example, there are now files id_rsa and id_rsa.pub in our .ssh folder. The first is the private key. The second is the public key—that’s what we’ll send to the target server.
Step 4: Share the public key with the server

Share the public key with the target server.

To use the SSH key pair created in the previous step, the contents of the public key must be saved to a file on the target server. The steps to do this vary, based on the target server’s OS.

The steps below show you how to deploy the public key on a Windows system in the most basic way—by manually copying & pasting the key’s contents. Alternatively, you may use PowerShell or another command line tool to deploy the public key. For PowerShell instructions, please see Key-based authentication in OpenSSH for Windows.

Please follow these steps to manually share the public key:

  1. On Room Alert Manager’s host system, open the public key file in a text editor program, such as Notepad.
  2. Copy the entire contents of the public key to your clipboard.
  3. Then on the target system, either locate the existing “authorized keys” file or create one if needed.
    • The file name & location depends on whether the user account is a member of the local administrators group or a standard user account.
      • For a standard user, the authorized_keys file is located in the .ssh folder of the user’s directory.
      • For an admin user, the administrators_authorized_keys file is located in the system’s main ssh directory.
    • Note that only the local system and administrators security group should have permissions to access the administrators_authorized_keys file.
  4. Open the authorized keys file in a text editor, such as Notepad, with administrator privileges.
  5. Paste the entire contents of the public key at the bottom of the authorized keys file.
  6. Save the changes to the file.
  7. Restart the SSH Server daemon to apply the public key.
Step 5: Manually test the SSH connection

Before you configure Room Alert Manager to use this SSH key, it’s a good idea to manually check that you are able to do a basic SSH connection using key authorization. To do this, please follow the steps below:

  1. On Room Alert Manager’s host system, open a command prompt window.
  2. Then run this command: ssh [user@target IP or hostname]
    Example: ssh janesmith@192.168.123.45
  3. You should be able to connect to the target system without needing to enter the user’s password. (If the key has a passphrase associated with it, you will be prompted to enter that.)
  4. Additional information is available in our FAQ, How To Troubleshoot Server Actions In Room Alert Manager.

The post How To Generate An SSH Key Pair For Use With Room Alert Manager appeared first on AVTECH.

]]>
How To Configure Room Alert Manager To Use An SSH Key https://avtech.com/articles/24706/how-to-configure-room-alert-manager-to-use-an-ssh-key/ Tue, 25 Oct 2022 14:49:08 +0000 https://avtech.com/articles/?p=24706 Room Alert Manager can perform Server Command Actions using SSH (Secure Shell protocol) key authentication. This FAQ shows you how to configure Room Alert Manager to use an SSH key. Before you begin If Room Alert Manager’s host system is not already configured to connect to your target server via SSH key authentication, please see […]

The post How To Configure Room Alert Manager To Use An SSH Key appeared first on AVTECH.

]]>
Room Alert Manager can perform Server Command Actions using SSH (Secure Shell protocol) key authentication. This FAQ shows you how to configure Room Alert Manager to use an SSH key.

Room Alert Manager supports the following SSH key encryption types: RSA, Ed25519, and ECDSA. (Other encryption types may also work, but have not been fully tested.)

Before you begin

If Room Alert Manager’s host system is not already configured to connect to your target server via SSH key authentication, please see How To Generate An SSH Key Pair For Use With Room Alert Manager.

Save your SSH key configuration in Room Alert Manager

  1. Open Room Alert Manager in your web browser.
  2. In order to access SSH Key Settings in Room Alert Manager, you must log in as an admin-level user.
  3. Select Settings –> Security in the navigation bar to the left.
  4. Then go to the SSH Keys tab.
  5. Select the New Key button to open a form where you will save your key configuration.
  6. Give your key a label that will allow you to easily identify it in drop-down menus later.
    • We’re calling ours “CRM Servers Key.”
  7. In Path, enter the full path to the private key.
    Our key file “id_rsa” is located in the .ssh folder of our IT Manager’s user drive, so we’ll enter C:\Users\IT_Mgr\.ssh\id_rsa
  8. If the SSH key is password-protected, select the Password checkbox.
    • Select Change, and then enter the password into the field.
  9. Then select Save Changes.
  10. The new key configuration will now appear in the list.

Up next…

Now that you’ve configured Room Alert Manager to use your SSH key, you can associate the key with a server, and set up a Server Command Action. For instructions, pleas see How To Configure Server Command Actions In Room Alert Manager.

The post How To Configure Room Alert Manager To Use An SSH Key appeared first on AVTECH.

]]>
How To Configure A Threshold Range For Your Room Alert Graph https://avtech.com/articles/23439/how-to-configure-a-threshold-range-for-your-room-alert-graph/ Thu, 24 Feb 2022 16:44:53 +0000 https://avtech.com/articles/?p=23439 In your Room Alert Account or in Room Alert Manager, you can display a highlighted range on your graphs to easily check if sensor readings fall within that range. You may choose to graph a pre-defined threshold range—including ASHRAE Data Center Recommendations and NWS Heat Index Risk Levels—or define your own custom range. Follow these […]

The post How To Configure A Threshold Range For Your Room Alert Graph appeared first on AVTECH.

]]>
In your Room Alert Account or in Room Alert Manager, you can display a highlighted range on your graphs to easily check if sensor readings fall within that range. You may choose to graph a pre-defined threshold range—including ASHRAE Data Center Recommendations and NWS Heat Index Risk Levels—or define your own custom range.

Follow these steps to create a custom threshold range:

  1. Log in to your RoomAlert.com Account or Room Alert Manager.

Room Alert Account: In order to configure a threshold range in Room Alert Account, you must log in as an admin-level or operator-level user. For more information, please see the “Types of user roles” section of our FAQ, How To Manage User Access To Your RoomAlert.com Account.

Room Alert Manager: In order to configure a threshold range in Room Alert Manager, you must log in as an admin-level or manager-level user. For more information, please see the “Types of user roles” section of our FAQ, How To Configure Users In Room Alert Manager.

  1. Select Guidance in the navigation bar to the left.
  2. The Threshold Ranges tab will open by default.

    Here, you’ll see a list of pre-defined thresholds ranges, along with any custom ranges that were previously saved.
  3. To configure a new range, select the New Threshold Range button.
  4. The Threshold Range Form will open.
    • The default name is “New Threshold Range X,” but we’re renaming ours “Good Freezer Temps.”
    • In Choose Reading Type, select either Temperature, Humidity  or Custom.
    • In Choose Operator, select either is above, is below, is between or is not between.
    • Then enter the value(s) for your threshold or range. We’ve set our range from -40F to -10F.
  5. When you’re done, select Save Changes.
  6. Your new threshold range will appear in the list, as shown below.
    • Pre-defined threshold ranges are listed with a shield icon.
    • Custom threshold ranges are listed with a pencil icon.

Next steps

Now that you’ve saved a custom threshold range, you can graph it alongside your sensor data. When you go to the Sensor Data and Reports tab, you’ll see your new range populated in the Select Threshold Range drop-down menu, as shown below.

To learn how to graph sensor data and threshold ranges, please see How To Graph Your Room Alert Sensor Data.

The post How To Configure A Threshold Range For Your Room Alert Graph appeared first on AVTECH.

]]>
How To Display ‘Feels Like’ Readings In Room Alert Manager https://avtech.com/articles/23480/how-to-display-feels-like-readings-in-room-alert-manager/ Thu, 24 Feb 2022 16:44:22 +0000 https://avtech.com/articles/?p=23480 Any Room Alert Monitor with an internal or external Temperature & Humidity sensor automatically calculates the Heat Index reading—also known as the “Feels Like” temperature. This reading is vital when monitoring conditions in working environments like factory and warehouse floors. In Room Alert Manager, you may enable an alternate sensor view for your Temperature & […]

The post How To Display ‘Feels Like’ Readings In Room Alert Manager appeared first on AVTECH.

]]>
Any Room Alert Monitor with an internal or external Temperature & Humidity sensor automatically calculates the Heat Index reading—also known as the “Feels Like” temperature. This reading is vital when monitoring conditions in working environments like factory and warehouse floors.

In Room Alert Manager, you may enable an alternate sensor view for your Temperature & Humidity sensors that displays the “Feels Like” reading with a heat index safety gauge, as shown below.

To enable this sensor view, please follow these steps:

  1. Open Room Alert Manager in your web browser.
  2. In order to enable this feature in Room Alert Manager, you must log in as an admin-level or manager-level user.
  3. In the navigation bar to the left, go to Guidance –> Established Standards.
  4. Then select the NWS – Heat Index tab.
  5. Scroll to the Alternate Sensor View section at the bottom of the page.
  6. Select the checkbox to enable the feature, and then select Save Changes.

Selecting this checkbox enables this feature for all users configured to access this installation of Room Alert Manager.

  1. To view the new sensor display, first navigate back to your Room Alert Monitors Inventory list. Then click on any device that has an internal and/or external Temperature & Humidity sensor.
  2. That device’s Details page will open. At the top of the page, you’ll see a new Heat Index Readings section.
    • This section includes the “Feels Like” readings from all of the device’s connected Temperature & Humidity sensors.
    • A heat gauge indicates the current Heat Index Risk. (For information about these risk levels, please see the informational section at the top of the Guidance tabs.)

The post How To Display ‘Feels Like’ Readings In Room Alert Manager appeared first on AVTECH.

]]>
How To View Room Alert Data Groups https://avtech.com/articles/22823/how-to-view-room-alert-data-groups/ Wed, 08 Dec 2021 17:58:30 +0000 https://avtech.com/articles/?p=22823 What is a Data Group? A Data Group is a saved collection of sensor channels from one or more Room Alert Monitors, Axis cameras, and/or ping devices. You may choose to group your sensor channels according to their physical location, the type of equipment they’re monitoring, etc. From within a Data Group‘s Details page, you […]

The post How To View Room Alert Data Groups appeared first on AVTECH.

]]>
What is a Data Group?

A Data Group is a saved collection of sensor channels from one or more Room Alert Monitors, Axis cameras, and/or ping devices. You may choose to group your sensor channels according to their physical location, the type of equipment they’re monitoring, etc.

From within a Data Group‘s Details page, you can easily view the latest readings from your collection of sensors, check their alarm status, graph sensor data to track trends in your environment, and export historical sensor data for auditing purposes.

To view your saved Data Groups, please follow the instructions below.

  1. Log in to your RoomAlert.com Account or Room Alert Manager.
  2. In the navigation bar to the left, select Sensor Data and Reports –> Data Groups to open a list of your saved groups.
  3. If you haven’t saved any Data Groups yet, please select the Explore button, and then follow the instructions in this FAQ: How To Graph Your Room Alert Sensor Data.

Room Alert Account: for information about which users have access to view Data Groups, please see the “Types of user roles” section of our FAQ, How To Manage User Access To Your RoomAlert.com Account.

Room Alert Manager: for information about which users have access to view Data Groups, please see the “Types of user roles” tab in our FAQ, How To Configure Users In Room Alert Manager.

  1. By default, your saved Data Groups will appear as miniature graphs, each showing 24 hours worth of data.
    • If you wish you may instead view them in a List View, as shown below.
    • If a Data Group contains any sensor channel(s) currently associated with one or more triggered alert(s), it gets listed in red at the top of your list.
  2. Select the ellipsis beside any Data Group to:
    • View your graphed data. (You can also simply select the group’s name to open it.)
    • Delete your group, if desired.

For information about exporting your sensor data, manipulating the data on the graph and more, please see our FAQ, How To Graph Your Room Alert Sensor Data.

The post How To View Room Alert Data Groups appeared first on AVTECH.

]]>
How To View Axis Camera Images In Room Alert Manager https://avtech.com/articles/22855/how-to-view-axis-camera-images-in-room-alert-manager/ Fri, 12 Nov 2021 19:27:41 +0000 https://avtech.com/articles/?p=22855 Room Alert Manager can be configured to collect / receive images from your Axis camera(s) in the following ways: In response to an alert condition, Room Alert Manager can retrieve a snapshot image from your camera. When the camera detects a motion event, it can send images to Room Alert Manager. A Room Alert Manager […]

The post How To View Axis Camera Images In Room Alert Manager appeared first on AVTECH.

]]>

For information about discovering your Axis camera and more, please see our FAQ, How to Configure Axis Cameras In Room Alert Manager.

Room Alert Manager can be configured to collect / receive images from your Axis camera(s) in the following ways:

  1. In response to an alert condition, Room Alert Manager can retrieve a snapshot image from your camera.
  2. When the camera detects a motion event, it can send images to Room Alert Manager.
  3. A Room Alert Manager user can manually capture an image at any point.

Stored image can be viewed in the camera’s Details page within Room Alert Manager.

View Your Stored Images

Follow these steps to view your stored images in Room Alert Manager:

  1. Open Room Alert Manager in your web browser.
  2. You must log in as either an admin-level user or a manager-level user with access to the camera through a Device Group.
  3. Select Devices –> Axis Cameras in the navigation bar to the left to open the Axis Cameras inventory list.
  4. Next, select the camera you wish to view.
  5. The camera’s Details page will open to the Live tab by default.
    • This tab shows a live view from your Axis camera.
      For information about the Motion Status and Capture Image button, please see the Tips & Tricks section below.
  6. Finally, select the Images tab to view previously saved images.
    • By default, this tab shows images captured during the last hour. If your camera hasn’t captured any images within the last hour, the tab will appear empty until you adjust the time range.
      For more information, please see the Tips & Tricks section below.

Axis Images Tips & Tricks

For more information about viewing and manipulating your Axis images, please select the tabs below:

Tips for viewing your stored images

In the Images tab, you may adjust the time range of the images that appear on screen, enlarge an image to see more detail, and identify the image type.

Change the date range

  • By default, this tab shows images captured during the Last hour. If your camera hasn’t captured any images within the last hour, the tab will appear empty until you adjust the time range.
    • In the time-range drop-down menu, you may leave the default, Last hour, or choose another time period.
    • If you would prefer a specific date range, you may instead select the calendar icon and pick start and end dates. Select Apply to apply your date range.
  • Stored images are separated by date, and listed newest –> oldest.
    • As you can see in our example above, a person entered the room at 10:54:53 AM and exited approximately 3 minutes later.

Enlarge images

  • You may click on an image in the list to open it in a larger window.
    • From here, you can easily use the right and left arrows to move between images.

Identify the image type

  • Each image has either a yellow or blue circle icon in its upper left-corner.
    • A yellow circle icon indicates that the image was sent to Room Alert Manager as part of a motion detection event.
    • A blue circle icon indicates that the image was either captured in response to an alert condition, or manually by a Room Alert user.
Tips for viewing your camera's live image

The Live tab of your camera’s Details page includes the following:

  • A live view from your camera
  • The camera’s current Motion Status*
  • A button to manually capture an image at any time

* This status can only update if your camera has already been configured to send images to Room Alert Manager when motion is detected.

When your camera detects motion, its Motion Status changes from “Not Detected” to “Detected for x seconds,” and the field gets highlighted in red, as shown below.

You may manually capture an image at any time by selecting the Capture Image button to the right of the live view. (You must then refresh the page before the newly-captured image appears in your Images tab.)

How to download images

To downloads an Axis image from Room Alert Manager, please follow these instructions:

  1. Within the camera’s Details page –> Images tab, locate the image you wish to download.
  2. Then right-click on the image, and select Save image as…
  3. Choose where you would like to save the image on your local computer, and then select Save.
How to remove images

To delete an Axis image from Room Alert Manager, please follow these instructions:

  1. Within the camera’s Details page –> Images tab, hover your mouse over the image you wish to delete.
  2. Then select the trash can icon that appears in the upper right-corner of the image.
  3. Finally, select Delete in the confirmation box.

To configure Room Alert Manager to automatically delete old images, please see our FAQ, How To Configure Data Retention Settings In Room Alert Manager.

The post How To View Axis Camera Images In Room Alert Manager appeared first on AVTECH.

]]>
How To Use Axis Cameras With Room Alert Manager https://avtech.com/articles/22543/how-to-use-axis-cameras-with-room-alert-manager/ Tue, 19 Oct 2021 13:04:36 +0000 https://avtech.com/articles/?p=22543 You may integrate your Axis network cameras with Room Alert Manager software in order view a live feed from the camera, capture images on demand or in response to alert conditions, and notify team members when the camera detects motion events. To get started, please see these Frequently Asked Questions: Discover your Axis camera How […]

The post How To Use Axis Cameras With Room Alert Manager appeared first on AVTECH.

]]>
You may integrate your Axis network cameras with Room Alert Manager software in order view a live feed from the camera, capture images on demand or in response to alert conditions, and notify team members when the camera detects motion events.

To get started, please see these Frequently Asked Questions:

The post How To Use Axis Cameras With Room Alert Manager appeared first on AVTECH.

]]>
What Data Gets Included In Room Alert Manager’s Usage Statistics https://avtech.com/articles/22531/what-data-gets-included-in-room-alert-managers-usage-statistics/ Tue, 19 Oct 2021 13:00:13 +0000 https://avtech.com/articles/?p=22531 Usage statistics help AVTECH make informed decisions regarding the development of Room Alert Manager’s most popular features and applications. As of version 1.10, Room Alert Manager can optionally be configured to automatically send anonymous usage statistics to AVTECH. No sensitive information is included in the usage statistics, which are sent periodically at random times. For […]

The post What Data Gets Included In Room Alert Manager’s Usage Statistics appeared first on AVTECH.

]]>
Usage statistics help AVTECH make informed decisions regarding the development of Room Alert Manager’s most popular features and applications.

As of version 1.10, Room Alert Manager can optionally be configured to automatically send anonymous usage statistics to AVTECH. No sensitive information is included in the usage statistics, which are sent periodically at random times.

For information about what data gets included in Room Alert Manager’s usage statistics, or how to turn this feature on or off, please see the tabs below.

What data gets included in the usage statistics

The usage statistics that Room Alert Manager sends to AVTECH include non-identifiable data about alert configurations, report configurations and more.

They do not contain potentially-sensitive information, such as MAC addresses, IP Addresses, Alert Names, Device Names, User Names, Passwords, Email Addresses, Phone Numbers, etc.

Below are examples of usage statistics sent from Room Alert Manager:

  • system & applicationProperties
    • The system usage statistics include information such as the host operating system, its quantity of NICs, its quantity of cores, and its memory.
    • The applicationProperties usage statistics show whether the software is configured to use the default (main) database or an external database.
  • mailSettings
    • The mailSettings usage statistics include information such as the mail server port, whether or not authentication is enabled, and whether or not a backup mail server is configured.
    • These usage statistics do not include the mail server’s hostname, the sender Email address, or authentication credentials.
  • discoverySettings & pullSettings
    • The discoverySettings & pullSettings usage statistics include information such as the discovery interval, whether automatic discovery is enabled, the quantity of IP or NICs that have been excluded, and the quantity of manually-discovered devices.
    • These usage statistics do not include any IP addresses.
  • firmwareUpdateSettings
    • The firmwareUpdateSettings usage statistics show whether or not the software is configured to automatically get the latest firmware files from RoomAlert.com.
  • alerts
    • The alerts usage statistics include information such as the threshold, the channel type, the duration, the repeat interval, and whether or not the escalations are associated with a custom template.
    • These usage statistics do not include alert names, MAC addresses, device names, or the contents of custom notification templates.
  • schedules
    • The schedules usage statistics include information such as the weekday and start and end times.
  • users
    • The users usage statistics include information such as the user type (admin, manager or viewer), the user’s temperature scale, and whether or not multi-factor authentication has been enabled.
    • These usage statistics do not include the username, password, email address, or first & last name.
  • deviceGroups
    • The deviceGroups usage statistics include information such as the quantity of groups and the quantity of devices per group.
  • inventoryDevices
    • The inventoryDevices usage statistics include information about each discovered device, such as the device type, firmware version, and discovery source.
    • These usage statistics do not include the MAC address, device name, or IP address.
  • pingDevices
    • The pingDevices usage statistics include information such as the ping type (ICMP or HTTP), port, and timeout version.
    • These usage statistics do not include the ping name, IP address, host or path.
  • recipientGroups
    • The recipientGroups usage statistics include information such as the quantity of recipients and recipient type (email, text message, in-app message).
    • These usage statistics do not include email addresses or phone numbers.
  • reports
    • The reports usage statistics include information such as the report date range, and quantity and types of channels.
  • cellModemSettings
    • The cellModemSettings usage statistics include information such as whether or not the modem is using default settings.
    • These usage statistics do not include the COM port or service center number.
  • pushSettings
    • The pushSettings usage statistics include the missed push threshold.
  • relayConfigurations
    • The relayConfigurations usage statistics include information such as the relay or light tower’s trigger & clear configurations.
  • axisDevices
    • The axisDevices usage statistics include information about each discovered camera, such as the model, firmware version, and minimum interval between image captures.
    • These usage statistics do not include the camera’s MAC address or IP address.
How to enable/disable sending usage statistics

Sending usage statistics to AVTECH is a feature that can be turned on or off during the installation process (from within Room Alert Manager’s installer) or afterwards (from within its installation directory).

Select the tabs below for instructions.

During installationAfter installation

When you install Room Alert Manager v1.10+ (either as a new installation or as an update to a previous installation), you’ll see the following window in the installer.

  • Keep the checkbox in the window enabled if you’d like to allow Room Alert Manager to send usage statistics.
  • Un-check the box to prevent Room Alert Manager from sending usage statistics.

After installing Room Alert Manager, you can change this setting at any point by following these instructions.

These instructions require you to start and stop the Room Alert Manager service. This FAQ shows you how: How To Stop, Start And Restart The Room Alert Manager Service.

  1. Stop the Room Alert Manager service.
  2. Navigate to Room Alert Manager’s installation folder on its host system.
    • By default, it’s at C:\Program Files\AVTECH Room Alert Manager.
  3. Locate the “config” folder and open it.
  4. In the “config” folder, locate the “application.properties” file.
  5. Open that file in any text editor, such as Notepad or Notepad++.
  6. Locate the line that reads “avtech.usagestatistics.enabled”
    • Set this line to true to allow Room Alert Manager to send usage statistics.
    • Set this line to false to prevent Room Alert Manager from sending usage statistics.
  7. When you’re done making changes, save the “application.properties” file.
  8. You may now close Room Alert Manager’s installation folder.
  9. Then start the Room Alert Manager service.

The post What Data Gets Included In Room Alert Manager’s Usage Statistics appeared first on AVTECH.

]]>