Dashboard
Overview of your infrastructure and resources — Last updated 2 min ago
Active Instances
5
↑ +1 this week
Bandwidth Used
2.4 TB
↑ 12% vs last month
Avg. CPU Usage
34%
↓ 8% vs last week
Monthly Cost
$412
≈ $13.70/day
🖥️ Active Instances
| Instance | Status | Region | Plan | Uptime | Actions |
|---|---|---|---|---|---|
|
api-server-01
cnx-7f3a2d91
|
Running | 📍 US-East-1 | Professional | 99.97% |
|
|
postgres-primary
cnx-8b2e4f67
|
Running | 📍 US-East-1 | Database Pro | 99.99% |
|
|
worker-node-02
cnx-3c9d1a42
|
Running | 📍 EU-West-1 | Starter | 98.42% |
|
|
cdn-edge-worker
cnx-5e1f7b83
|
Scaling | 📍 AP-South-1 | Professional | — |
|
|
staging-server
cnx-2a8d6c09
|
Stopped | 📍 US-West-2 | Starter | — |
|
📋 Recent Activity
View All
api-server-01 deployed successfully
2 minutes ago
postgres-primary auto-backup completed
15 minutes ago
New instance cdn-edge-worker created
1 hour ago
High memory alert on worker-node-02
2 hours ago
old-staging terminated and removed
5 hours ago
K8s cluster node pool scaled to 4
Yesterday, 18:30
📈 Bandwidth Usage (Last 30 Days)
151015202530
⚡ Resource Utilization
CPU
34%
Memory
62%
Disk I/O
28%
Network
15%
Storage Used
71%
🔑 API Keys
Production API Key
cnx_prod_sk •••• •••• •••• 4f2a
CI/CD Pipeline Key
cnx_cicd_sk •••• •••• •••• 8b1c
Read-Only Monitoring
cnx_mon_sk •••• •••• •••• 3e7d
⚡ Quick Actions
Launch VM
Deploy a new instance
New Database
Create managed DB
Add CDN Zone
Configure edge cache
New API Key
Generate credentials
💻 SDK Example — Deploy with CloudNexus CLI
// Install the CloudNexus SDK
import { CloudNexus } from "@cloudnexus/sdk";
// Initialize with your API key
const cnx = new CloudNexus({ apiKey: process.env.CNX_API_KEY,
project: "prod-app-v2",
region: "us-east-1",
});
// Deploy a new instance
const instance = await cnx.compute.create({ name: "api-server-01",
plan: "professional",
image: "ubuntu-22.04",
ports: ["80", "443", "3000"],
});
console.log(`Deployed: ${instance.id}`);
import { CloudNexus } from "@cloudnexus/sdk";
// Initialize with your API key
const cnx = new CloudNexus({ apiKey: process.env.CNX_API_KEY,
project: "prod-app-v2",
region: "us-east-1",
});
// Deploy a new instance
const instance = await cnx.compute.create({ name: "api-server-01",
plan: "professional",
image: "ubuntu-22.04",
ports: ["80", "443", "3000"],
});
console.log(`Deployed: ${instance.id}`);