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

Sites

Sites are an optional organizational feature that lets you group devices by physical or logical locations such as offices, datacenters, customer locations, or network zones. Sites are disabled by default to keep things simple for single-location deployments.

When to Enable Sites

Consider enabling sites if you:

When to Skip Sites

You can skip enabling sites if you:

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

Note

Sites are optional and disabled by default. You can start without sites and enable them later if your needs change. When sites are disabled, all devices belong directly to your organization.

How Sites Work

When sites are enabled, devices can be organized into sites, and credentials (SNMP communities, usernames, passwords) can be set at three levels:

1. Organization Level

Default credentials that apply to all devices across all sites in your organization.

2. Site Level (when sites enabled)

Override organization defaults for all devices at a specific site. Useful when different locations have different network configurations.

3. Device Level

Override organization or site credentials for a specific device. Useful for devices with unique configurations.

Enabling Sites

1

Navigate to Organization Settings

Go to <.code>Settings → <.code>Organization and scroll to the "Site Organization" section.

2

Enable the "Use Sites" Toggle

Check the box for "Use sites to organize devices" and save your settings.

3

Create Your First Site

Navigate to <.code>Sites → <.code>Add Site to create your first site. Give it a descriptive name like "Main Office" or "Dallas Datacenter".

4

Assign Devices to Sites

When creating or editing devices, you can now assign them to specific sites. The site selector will appear in the device form.

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

Disabling Sites

If you disable sites after enabling them, all devices will be removed from their sites and assigned directly to the organization. Site assignments will be lost, but devices will remain in your organization and continue to be monitored.

""" end end