Skip to content

Releases: carverauto/serviceradar

ServiceRadar v1.0.31

11 Apr 03:36
9d200b7
Compare
Choose a tag to compare

ServiceRadar v1.0.31

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • Debian packaging fixes (serviceradar-agent missing sweep.json)

Important

If you are coming from <= 1.0.28, due to DB schema changes and the short-term nature of this data in the database, you will need to clear the /var/lib/serviceradar/ directory. In the future we will have DB migration tools.

systemctl stop serviceradar-core
rm -rf /var/lib/serviceradar/*
systemctl start serviceradar-core

You will also need to make sure to update your nginx.conf -- /etc/nginx/sites-enabled/serviceradar-web.conf

   location ~ ^/api/(auth|nodes|status) {

Change that line to

    location ~ ^/api/(auth|pollers|status) {

And be sure to restart nginx:

systemctl restart nginx

We have improved support mTLS certificates per gRPC service, in the config. Please check the documentation to see if this affects you.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-rperf-checker: RPerf (iperf3-based) bandwidth measurement tool (client)
  • serviceradar-rperf: RPerf server (reflector)
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)
  • serviceradar-nats: NATS JetStream (Durable KV) -- Optional
  • serviceradar-kv: KV API -- Optional
  • serviceradar-sync: KV integrations (NetBox, ARMIS, etc) -- Optional

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.31.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.31.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.31.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.31.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.31.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.31.deb

ServiceRadar v1.0.30

08 Apr 23:32
a312d1c
Compare
Choose a tag to compare

ServiceRadar v1.0.30

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • Debian packaging fixes
  • Removed default UDP test from rperf-checker

Important

If you are coming from <= 1.0.28, due to DB schema changes and the short-term nature of this data in the database, you will need to clear the /var/lib/serviceradar/ directory. In the future we will have DB migration tools.

systemctl stop serviceradar-core
rm -rf /var/lib/serviceradar/*
systemctl start serviceradar-core

You will also need to make sure to update your nginx.conf -- /etc/nginx/sites-enabled/serviceradar-web.conf

   location ~ ^/api/(auth|nodes|status) {

Change that line to

    location ~ ^/api/(auth|pollers|status) {

And be sure to restart nginx:

systemctl restart nginx

We have improved support mTLS certificates per gRPC service, in the config. Please check the documentation to see if this affects you.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-rperf-checker: RPerf (iperf3-based) bandwidth measurement tool (client)
  • serviceradar-rperf: RPerf server (reflector)
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)
  • serviceradar-nats: NATS JetStream (Durable KV) -- Optional
  • serviceradar-kv: KV API -- Optional
  • serviceradar-sync: KV integrations (NetBox, ARMIS, etc) -- Optional

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.30.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.30.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.30.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.30.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.30.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.30.deb

ServiceRadar v1.0.29

07 Apr 19:01
bb34afc
Compare
Choose a tag to compare

ServiceRadar v1.0.29

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • Nodes have been renamed to Pollers in UI
  • Poller dashboard improvements
  • New service detail dashboards

Important Breaking Configuration Change (>=1.0.28)

If you are coming from <= 1.0.28, due to DB schema changes and the short-term nature of this data in the database, you will need to clear the /var/lib/serviceradar/ directory. In the future we will have DB migration tools.

systemctl stop serviceradar-core
rm -rf /var/lib/serviceradar/*
systemctl start serviceradar-core

You will also need to make sure to update your nginx.conf -- /etc/nginx/sites-enabled/serviceradar-web.conf

   location ~ ^/api/(auth|nodes|status) {

Change that line to

    location ~ ^/api/(auth|pollers|status) {

And be sure to restart nginx:

systemctl restart nginx

We have improved support mTLS certificates per gRPC service, in the config. Please check the documentation to see if this affects you.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-rperf-checker: RPerf (iperf3-based) bandwidth measurement tool (client)
  • serviceradar-rperf: RPerf server (reflector)
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)
  • serviceradar-nats: NATS JetStream (Durable KV) -- Optional
  • serviceradar-kv: KV API -- Optional
  • serviceradar-sync: KV integrations (NetBox, ARMIS, etc) -- Optional

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.29.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.29.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.29.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.29.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.29.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.29.deb

ServiceRadar v1.0.28

04 Apr 20:36
854bda6
Compare
Choose a tag to compare

ServiceRadar v1.0.28

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • NATS JetStream (durable KV)
  • KV API (Key-Value) service
  • Sync service (integration point for KV)
  • Support for reading configs from KV
  • NetBox/ARMIS integrations (KV)
  • RPerf (iperf3-based) bandwidth checker
  • mTLS Updates
  • Bug Fixes

Important Breaking Configuration Change (>=1.0.28)

We have improved support mTLS certificates per gRPC service, in the config. Please check the documentation to see if this affects you.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-rperf-checker: RPerf (iperf3-based) bandwidth measurement tool (client)
  • serviceradar-rperf: RPerf server (reflector)
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)
  • serviceradar-nats: NATS JetStream (Durable KV) -- Optional
  • serviceradar-kv: KV API -- Optional
  • serviceradar-sync: KV integrations (NetBox, ARMIS, etc) -- Optional

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.28.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.28.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.28.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.28.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.28.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.28.deb

ServiceRadar v1.0.27

21 Mar 22:05
0d676f3
Compare
Choose a tag to compare

ServiceRadar v1.0.27

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • Web Authentication (local-login using JWTs)
  • CORS support
  • More Typescript conversion in FE
  • Bug Fixes

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.27.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.27.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.27.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.27.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.27.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.27.deb

ServiceRadar v1.0.26

17 Mar 23:31
d17226f
Compare
Choose a tag to compare

ServiceRadar v1.0.26

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • UI Update for Network Sweep
  • Network Sweep refactored
  • gRPC healthcheck bug fixes

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.26.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.26.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.26.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.26.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.26.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.26.deb

ServiceRadar v1.0.25

13 Mar 04:31
c20f584
Compare
Choose a tag to compare

ServiceRadar v1.0.25

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • UI Chart Updates (SNMP, Ping, Node List)
  • Fixed UI refresh issues
  • Accessibility Improvements

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.25.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.25.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.25.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.25.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.25.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.25.deb

ServiceRadar v1.0.24

12 Mar 20:03
9867665
Compare
Choose a tag to compare

ServiceRadar v1.0.24

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • UI bug fixes for Network Sweep
  • RPM build fix

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.24.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.24.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.24.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.24.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.24.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.24.deb

ServiceRadar v1.0.23

11 Mar 04:58
44f3249
Compare
Choose a tag to compare

ServiceRadar v1.0.23

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • Improvements for RedHat-based sysems
  • Installer bug fixes

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.23.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.23.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.23.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.23.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.23.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.23.deb

ServiceRadar v1.0.22

06 Mar 02:53
62b6761
Compare
Choose a tag to compare

ServiceRadar v1.0.22

Release of ServiceRadar network monitoring and surveillance system.

Whats New

  • New Dashboard
  • RPM Packages
  • Fixed SNMP service dashboard
  • Improved Ping Response service dashboard
  • Bug Fixes

Important Breaking Configuration Change (>=1.0.21)

On your poller node, make sure you update your poller.json and change cloud_address to core_address.

Components

  • serviceradar-dusk-checker: Agent package for monitoring Dusk nodes
  • serviceradar-snmp-checker: SNMP Poller, polls OIDs and graphs results for most counters
  • serviceradar-agent: Agent performs checks, collects information from external checkers (dusk)
  • serviceradar-poller: Network poller for collecting monitoring data from Agent
  • serviceradar-core: Core service (API)
  • serviceradar-web: Core service (UI)

Installation

See the README.md for detailed installation instructions.

Quick Start

# On Agents:
sudo dpkg -i serviceradar-agent_1.0.22.deb

# With Dusk Checker (typically installed with agent)
sudo dpkg -i serviceradar-dusk-checker_1.0.22.deb

# With SNMP Checker (typically installed with agent)
sudo dpkg -i serviceradar-snmp-checker_1.0.22.deb

# On monitoring host (can co-locate with agent):
sudo dpkg -i serviceradar-poller_1.0.22.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-core_1.0.22.deb

# On core host (can co-locate with poller+agent):
sudo dpkg -i serviceradar-web_1.0.22.deb