✉️
Email Support
Send us your question, error message, or feedback and we'll respond within one business day.
support@basavytix.com⏱️
Response Time
We aim to respond within 1 business day. Include your account email and any error messages to speed things up.
📋
What to Include
Your account email, the AWS region you're scanning, and the output of aws lambda invoke or Lambda logs.
📖
Check the Docs First
Most setup questions are answered in our documentation — registration, install, and running your first scan.
🪵
Lambda Logs
Attach your Lambda logs when reporting issues:aws logs tail /aws/lambda/netway-analyzer --region YOUR_REGION --since 1h
Frequently Asked Questions
Why are there no findings after my first scan?
▼
Flow logs typically take 10–15 minutes to appear in S3 after traffic occurs. Netway enables VPC Flow Logs on the VPCs you specified via the
VpcIds parameter at deploy time — verify they are active by running aws ec2 describe-flow-logs --filter "Name=tag:ManagedBy,Values=netway" --region YOUR_REGION. If you passed VpcIds="" (manual setup), ensure you have configured flow logs yourself pointing to the netway-{AccountId}-{Region} bucket. Also check that ANALYSIS_DAYS covers the period when traffic occurred.
The Lambda is timing out — what should I do?
▼
The Lambda is set to 900 seconds (15 minutes). If it's timing out, your flow log volume may be very large. Try reducing
ANALYSIS_DAYS to 7 or increasing MIN_BYTES_PER_FLOW to filter out small flows. Contact support with your Lambda logs if the issue persists.
Athena query is failing — how do I fix it?
▼
Netway manages its own S3 bucket (
netway-{AccountId}-{Region}) for Athena results — no separate bucket is needed. Verify the Athena workgroup netway-analyzer was created by the CloudFormation stack: aws athena list-work-groups. If the workgroup is missing, the stack may need to be re-deployed.
How do I trigger a scan manually?
▼
Run:
aws lambda invoke --function-name netway-analyzer --region YOUR_REGION /tmp/out.json && cat /tmp/out.json (replace YOUR_REGION with the region where you deployed the stack, e.g. us-east-1). A successful scan returns {"statusCode": 200} — findings are processed server-side and appear in your dashboard shortly after. The Lambda also runs automatically every 7 days via EventBridge, and is triggered when new EC2 instances or VPCs are created.
Can I scan multiple AWS regions?
▼
Yes — deploy one Netway CloudFormation stack per region. Each stack creates its own S3 bucket, Athena workgroup, and Lambda in that region, and enables flow logs on the VPCs you specify there. All stacks post findings to the same Netway dashboard using the same API key, so you get a unified view across regions. Deploying in the same region as your VPCs avoids cross-region data transfer costs and keeps flow log analysis local.
How do I cancel my trial or subscription?
▼
Email support@basavytix.com with your account email and we'll cancel immediately. To remove Netway from your AWS account entirely, delete the CloudFormation stack:
This removes the Lambda, S3 buckets, VPC Flow Logs created by Netway, IAM role, Athena workgroup, and EventBridge rules. Any flow logs that existed before installing Netway are left untouched. If you deployed stacks in multiple regions, repeat this for each region.
aws cloudformation delete-stack --stack-name netway-v1 --region YOUR_REGION
aws cloudformation wait stack-delete-complete --stack-name netway-v1 --region YOUR_REGION
This removes the Lambda, S3 buckets, VPC Flow Logs created by Netway, IAM role, Athena workgroup, and EventBridge rules. Any flow logs that existed before installing Netway are left untouched. If you deployed stacks in multiple regions, repeat this for each region.