defmodule ToweropsWeb.HelpLive.Sections.GettingStarted do @moduledoc false use ToweropsWeb, :html import ToweropsWeb.HelpLive.Sections.Helpers def render(assigns) do ~H"""

Getting Started with Towerops

Towerops is a network monitoring platform that helps you keep track of your network devices, monitor their health, and get alerts when issues occur.

Quick Start Guide

1

Create a Site (Optional)

Sites represent physical or logical locations where your network devices are located. If you manage multiple locations, start by creating a site for your office, data center, or any location where you have equipment.

Navigate to <.code>Sites → <.code>Add Site

Sites are disabled by default and can be enabled later in <.link patch={~p"/help?section=settings"} class="underline hover:text-gray-700 dark:hover:text-gray-300" > Organization Settings → General tab.

2

Add Your First Device

Add network devices like routers, switches, access points, or servers. You'll need the device's IP address or hostname, and SNMP community string (for SNMP-enabled devices).

Navigate to <.code>Devices → <.code>Add Device

3

View Device Metrics

Click on any device to view real-time metrics including CPU usage, memory, temperature, interface traffic, and more. Explore the different tabs to see network topology, port status, and historical performance data.

<.icon name="hero-light-bulb" class="h-5 w-5 text-blue-600 dark:text-blue-400 flex-shrink-0 mt-0.5" />

Pro Tip

For devices behind firewalls or in remote locations, you can deploy a remote poller to monitor devices locally without exposing them to the internet. See the <.link patch={~p"/help?section=agents"} class="underline hover:text-blue-900 dark:hover:text-blue-200" > Remote Pollers section for more information.

""" end end