Use isto se
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. Público: Operations engineers, DevOps teams, security operations teams. Tempo típico de configuração: 5-15 minutes.
Diagnostic runbook for container startup, traffic capture, API connectivity, health checks, resource usage, and ingestion gaps.
Passo 1
Diagnose problems with sensor container initialization and API key retrieval.
Como é o sucesso
Confirm network connectivity to the platform API: curl -v https://api.blackshield.chaplau.com/health
Passo 2
Verify packets are reaching the sensor and being processed.
Como é o sucesso
Verify sensor interface is NOT in promisc mode race condition: ip link show [interface]
Passo 3
Ensure the sensor can reach and authenticate with the platform.
Como é o sucesso
Test with different network path (via NAT, proxy, etc.) if behind firewall.
Passo 4
Verify the sensor health endpoint and readiness probe.
Como é o sucesso
Review container resource limits: docker inspect [id] | grep -A 10 HostConfig
Passo 5
Monitor CPU, memory, and disk usage; adjust configuration if needed.
Como é o sucesso
Disk full: docker exec [id] du -sh /var/log/ — remove old scan logs or increase EBS/disk size.
Passo 6
Diagnose why expected findings are not appearing in the platform.
Como é o sucesso
Confirm findings are being sent: docker exec [id] tcpdump -i eth0 host api.blackshield.chaplau.com dst port 443 -A | grep -i 'blackshield'
Apenas para demonstração
Esta configuração foi concebida para facilitar a utilização. Para implementar clientes de scanner em escala, planeie a sua arquitetura de implementação adequadamente ou contacte-nos para obter as melhores práticas empresariais.
#!/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