Kernel-Level Network Telemetry & BGP Latency Analytics
Stream sub-millisecond packet introspection, eBPF kprobe kernel metrics, BGP route flap alerts, and TLS 1.3 handshake benchmarks directly into your edge infrastructure.
Real-Time Global Latency Matrix (p50 / p95 / p99)
Engineered for Low-Latency Cloud Platforms
Standard ICMP pings fail to capture TLS handshake degradation, gRPC frame queueing, or eBPF socket buffer drops. NETSTATS operates directly in kernel space.
eBPF Kernel Probes
Attach non-intrusive kprobe and tracepoint hooks directly to Linux socket syscalls (tcp_v4_connect, tcp_rcv_established) with zero context-switch overhead.
- ✓ Linux Kernel 5.15+ CO-RE
- ✓ Socket Buffer Inspection
- ✓ Zero User-Space Copy
XDP Fast-Path Filter
Parse incoming network frame headers at the eXpress Data Path (XDP) network driver layer before memory allocation by kernel sk_buff.
- ✓ 100Gbps Line Rate Processing
- ✓ SYN Flood & UDP Mitigation
- ✓ Hardware Offload Compatible
BGP Route Flap Alerts
Monitor global AS-path announcements, withdrawal surges, and peer flapping across Tier-1 transit providers (Telia, NTT, Cogent, Lumen) in real-time.
- ✓ Autonomous System Telemetry
- ✓ Sub-Second Route Flap Alerts
- ✓ Prefix Hijack Anomalies
TLS 1.3 Introspection
Dissect client and server TLS handshakes. Measure exact timing for ServerHello, ALPN negotiation, session ticket validation, and certificate chain verification.
- ✓ Zero-RTT Handshake Metrics
- ✓ Cipher Suite Performance
- ✓ mTLS Overhead Breakdown
142 Telemetry Collectors Worldwide
Deployed directly inside Equinix, AWS, GCP, and Azure Internet Exchange Nodes.
Deploy Telemetry Collectors in Minutes
Integrate NETSTATS telemetry into your Go backend, Rust microservices, Python infrastructure pipelines, or Kubernetes clusters via our lightweight daemonset helm chart.
package main
import (
"context"
"log"
"time"
"api-netstats.space/sdk/telemetry"
)
func main() {
client, err := telemetry.NewClient(telemetry.Config{
APIToken: "ns_live_9f8a371c20e94b0d88f12a3b",
Endpoint: "grpc.api-netstats.space:443",
EnableeBPF: true,
SamplingHz: 1000,
})
if err != nil {
log.Fatalf("Failed to initialize telemetry agent: %v", err)
}
defer client.Close()
// Stream latency percentiles and BGP route flap alerts
sub := client.SubscribeLatency(context.Background(), "fra-01", "iad-04")
for event := range sub.C() {
log.Printf("[METRIC] p99 RTT: %.2fms | BGP AS-Path: %v | Jitter: %.3fms",
event.P99LatencyMS, event.ASPath, event.JitterMS)
}
}