Úsalo si
Diagnostic runbook for container startup, traffic capture, API connectivity, health checks, resource usage, and ingestion gaps.
Diagnostic runbook for container startup, traffic capture, API connectivity, health checks, resource usage, and ingestion gaps. Audiencia: Operations engineers, DevOps teams, security operations teams. Tiempo típico de configuración: 5-15 minutes.
Diagnostic runbook for container startup, traffic capture, API connectivity, health checks, resource usage, and ingestion gaps.
Paso 1
Diagnose problems with sensor container initialization and API key retrieval.
Cómo se ve el éxito
Confirm network connectivity to the platform API: curl -v https://api.blackshield.chaplau.com/health
Paso 2
Verify packets are reaching the sensor and being processed.
Cómo se ve el éxito
Verify sensor interface is NOT in promisc mode race condition: ip link show [interface]
Paso 3
Ensure the sensor can reach and authenticate with the platform.
Cómo se ve el éxito
Test with different network path (via NAT, proxy, etc.) if behind firewall.
Paso 4
Verify the sensor health endpoint and readiness probe.
Cómo se ve el éxito
Review container resource limits: docker inspect [id] | grep -A 10 HostConfig
Paso 5
Monitor CPU, memory, and disk usage; adjust configuration if needed.
Cómo se ve el éxito
Disk full: docker exec [id] du -sh /var/log/ — remove old scan logs or increase EBS/disk size.
Paso 6
Diagnose why expected findings are not appearing in the platform.
Cómo se ve el éxito
Confirm findings are being sent: docker exec [id] tcpdump -i eth0 host api.blackshield.chaplau.com dst port 443 -A | grep -i 'blackshield'
Solo demostración
Esta configuración está diseñada para facilitar el uso. Para desplegar clientes de escaneo a escala, planifique su arquitectura de despliegue en consecuencia o contáctenos para obtener las mejores prácticas empresariales.
#!/bin/bash
# Quick troubleshooting commands
docker ps -a | grep network-sensor
docker logs -f "$(docker ps -q | head -1)" | tail -50
curl -s -H "Authorization: Bearer $BLACKSHIELD_API_KEY" https://api.blackshield.chaplau.com/api/v1/health