{% extends "dashboard/layout.html" %} {% block title %}Mycelium Dashboard - Resource Provider{% endblock %} {% block dashboard_content %}
Manage your nodes, configure slices, and monitor earnings
| Grid Node ID | Farm & Location | Specifications | SLA & Pricing | Certification | Status | Group | Staked | Actions |
|---|
Organize your nodes into groups for easier management. Default groups (Compute, Storage, AI/GPU) are provided, or create custom groups for specific use cases.
| Group Name | Type | Nodes | Total Resources | Status | Average Uptime | Actions |
|---|---|---|---|---|---|---|
|
Loading...
Loading node groups...
|
||||||
Your nodes are automatically divided into base slices (1 vCPU + 4GB RAM + 200GB storage). Users can rent individual slices or combinations (2x, 4x, 8x). Slice availability updates in real-time based on node capacity.
| Node | Location | Total Slices | Allocated | Available | Slice Combinations | Pricing | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ node.name }}
{% if node.grid_node_id %}
Grid ID: {{ node.grid_node_id }} {% endif %} |
{{ node.location }} | {{ node.total_base_slices }} | {{ node.allocated_base_slices }} | {{ node.total_base_slices - node.allocated_base_slices }} |
{% if node.available_combinations %}
{% for combo in node.available_combinations %}
{% if combo.quantity_available > 0 %}
{{ combo.multiplier }}x ({{ combo.quantity_available }})
{% endif %}
{% endfor %}
{% else %}
Calculating...
{% endif %}
|
{% if node.marketplace_sla %}
${{ node.marketplace_sla.base_slice_price }}/hr
{{ node.marketplace_sla.uptime_guarantee_percentage | format_decimal(precision=1) }}% uptime {% else %} ${{ node.slice_pricing.base_price_per_hour }}/hr {{ node.uptime_percentage | format_decimal(precision=1) }}% uptime {% endif %} |
{% if node.status == 'Online' %} Online {% else %} {{ node.status }} {% endif %} |
|
No Nodes Added YetAdd your first node from the Mycelium Grid to start offering slices on the marketplace. |
||||||||