diff --git a/apps/website/app/features/container-server-monitoring/page.tsx b/apps/website/app/features/container-server-monitoring/page.tsx new file mode 100644 index 0000000..2f33082 --- /dev/null +++ b/apps/website/app/features/container-server-monitoring/page.tsx @@ -0,0 +1,431 @@ +import { Container } from "@/components/Container"; +import AnimatedGridPattern from "@/components/ui/animated-grid-pattern"; +import { Button } from "@/components/ui/button"; +import { + Cpu, + MemoryStick, + HardDrive, + Network, + Bell, + Settings, + Server, + Shield, + Database, + LayoutDashboard, +} from "lucide-react"; +import Link from "next/link"; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Server & Container Monitoring | Network, CPU, Memory Monitoring Tool", + description: + "Keep systems running with server and container monitoring: real-time network monitoring, memory monitoring, and CPU monitoring, as well as alerts.", +}; + +const monitoringFeatures = [ + { + icon: Cpu, + title: "CPU monitoring", + description: + "Spot CPU saturation early so you can scale, tune, or fix hot paths before performance drops.", + }, + { + icon: MemoryStick, + title: "Memory monitoring", + description: + "Prevent out-of-memory crashes by watching RAM pressure and acting before the system starts killing processes.", + }, + { + icon: HardDrive, + title: "Disk space monitoring", + description: + "Avoid failed writes and broken deployments by recognizing low disk space before your used storage space hits 100%.", + }, + { + icon: Network, + title: "Network monitoring", + description: + "Detect bandwidth congestion or unexpected traffic spikes early to prevent slowdowns and outages before they impact your services.", + }, +]; + +const alertFeatures = [ + { + icon: Bell, + title: "Threshold-based alerts", + description: + "Set the CPU or memory usage percentage limit that you want to trigger an alert.", + }, + { + icon: LayoutDashboard, + title: "Notifications on your platforms", + description: + "Receive notifications on the communication platforms you use.", + }, + { + icon: Settings, + title: "Easy alert management", + description: + "Disable alerts by just setting your limits to zero.", + }, +]; + +const configFeatures = [ + { + icon: Settings, + title: "Set your refresh rates", + description: + "Determine how frequently server and container metrics are collected—the default is every 20 seconds.", + }, + { + icon: Database, + title: "Manage how long data is stored", + description: + "Decide on your retention period and an automated cron job will clean old metrics. Choose which port the Dokploy metrics server listens on—the default is 4500.", + }, + { + icon: Server, + title: "Include or exclude specific services", + description: + "Choose the services you want to monitor, whether that's all services, specific compose services, applications, or something else.", + }, + { + icon: Shield, + title: "Secure your data with a token", + description: + "Secure metrics access with an authentication token. Use the auto-generated metrics token or generate a new one.", + }, +]; + +const relatedFeatures = [ + { + icon: Server, + title: "Application Deployment", + description: + "Deploy applications with zero downtime to any server you control.", + href: "/features/application-deployment-platform", + }, + { + icon: Database, + title: "Database Management", + description: + "Provision, manage, and back up databases without leaving Dokploy.", + href: "/features/database-management-tool", + }, + { + icon: Shield, + title: "RBAC", + description: + "Control who can access monitoring dashboards and alerts with fine-grained role-based access control.", + href: "/features/role-based-access-control", + }, +]; + +const faqs = [ + { + question: "What are the benefits of container monitoring?", + answer: + "Effective container monitoring gives you end-to-end visibility across multiple containers and containerized applications—something that's hard to achieve with conventional monitoring built for static hosts. It helps you correlate logs and metrics to spot abnormal container behavior, reduce error rates, and pinpoint root causes when container issues like restarts or a container shutdown event occur. Container monitoring also supports cost optimization by showing real resource consumption, improving resource allocation, and right-sizing resource limits to control monitoring costs and infrastructure spend.", + }, + { + question: "What is container monitoring software?", + answer: + "Container monitoring software automatically discovers running containers, collects container data from the container runtime and other data sources, and turns it into dashboards, alerts, and observability data. In cloud-native environments, it typically unifies collected metrics, log data, and sometimes traces into a single-pane view so you can monitor Docker containers and Kubernetes workloads side-by-side.", + }, + { + question: "How does container monitoring work?", + answer: + "Most container monitoring tools run an agent or exporter that can collect data from individual containers and nodes, capturing performance metrics like CPU usage, memory usage, network, and events such as container restarts. They ingest container logs and other telemetry, store it as historical data, and let you view data in charts and alerts while you correlate metrics and events across services.", + }, + { + question: "What is the best server monitoring software?", + answer: + "The best server monitoring software depends on what you need to monitor and whether you want open-source control or a managed SaaS. If you're using Dokploy, you get real-time server monitoring as part of your solution on all plans—with no additional setup required once your server is deployed.", + }, +]; + +export default function ContainerServerMonitoringPage() { + return ( +
+ {/* Hero Section */} +
+ + +
+

+ Real-Time Container Monitoring and Alerts +

+

+ Monitor your server, CPU, memory, and network usage in real-time + across all your deployments for full visibility. +

+
+ + +
+
+
+
+ + {/* Ensure continuous operation */} +
+ +
+

+ Ensure continuous operation with monitoring +

+

+ Prevent disruption by setting up a monitoring dashboard and custom + alerts. +

+
+
+ {monitoringFeatures.map((feature) => ( +
+
+ +
+

{feature.title}

+

+ {feature.description} +

+
+ ))} +
+
+
+ + {/* Configure alerts */} +
+ +
+

+ Configure alerts so you never miss an issue +

+

+ Set thresholds, receive notifications where you work, and stay in + control of your infrastructure at all times. +

+
+
+ {alertFeatures.map((feature) => ( +
+
+ +
+

+ {feature.title} +

+

+ {feature.description} +

+
+ ))} +
+
+
+ + {/* No setup required */} +
+ +
+

+ Access server monitoring with no setup required +

+

+ Use Dokploy's container monitoring dashboard as soon as + you've completed the server deployment setup. +

+
+
+

+ Remote servers → Select your server → Setup Server +

+

+ If all your checkmarks are green, you're good to go! +

+
+
+
+ + {/* Deployment options */} +
+ +
+

+ Host Dokploy where your business needs it +

+

+ Choose a deployment option that suits your business—on your + infrastructure or ours. +

+
+
+
+

+ On-Premise Deployment +

+
    +
  • Complete data sovereignty
  • +
  • Maximum security control
  • +
  • Compliance with strict regulations
  • +
  • No external dependencies
  • +
+
+
+

+ Cloud Deployment +

+
    +
  • Rapid scaling capabilities
  • +
  • Reduced infrastructure overhead
  • +
  • Global availability
  • +
  • Managed infrastructure
  • +
+
+
+
+
+ + {/* Configuration options */} +
+ +
+

+ Multiple configuration options +

+

+ Set up your Dokploy dashboard to suit your needs with different + configuration options. +

+
+
+ {configFeatures.map((feature) => ( +
+
+ +
+

{feature.title}

+

+ {feature.description} +

+
+ ))} +
+
+
+ + {/* FAQs */} +
+ +
+

+ Container and server monitoring FAQs +

+
+
+ {faqs.map((faq) => ( +
+

+ {faq.question} +

+

{faq.answer}

+
+ ))} +
+
+
+ + {/* Related Features */} +
+ +
+

+ Container and Server monitoring tool +

+

+ Take advantage of Dokploy's comprehensive container and server + monitoring software alongside the rest of the platform. +

+
+
+ {relatedFeatures.map((feature) => ( + +
+ +
+

{feature.title}

+

+ {feature.description} +

+ + ))} +
+
+
+ + {/* CTA */} +
+ +
+

+ Ready to keep your systems running? +

+

+ Get real-time visibility into your servers and containers with + Dokploy's built-in monitoring. +

+
+ + +
+
+
+
+
+ ); +} diff --git a/apps/website/components/Header.tsx b/apps/website/components/Header.tsx index 54561b4..eb29c3f 100644 --- a/apps/website/components/Header.tsx +++ b/apps/website/components/Header.tsx @@ -119,6 +119,7 @@ function MobileNavigation() { Application Deployment Databases Application Management + Monitoring
Pricing
@@ -232,6 +233,9 @@ export function Header() { Monitor and control your applications + + Keep your systems running +