Infra Party provides infrastructure scenarios for generating and collecting observability data. Use it to test log pipelines, validate collector configurations, or generate realistic fixture data.
| Scenario | Platform | Description | Docs |
|---|---|---|---|
| VPC Flow Logs | GCP | Generates internal VM traffic and exports subnet flow logs | README |
| Proxy NLB | GCP | Provisions a TCP proxy NLB and exports connection logs | README |
| Application LB | GCP | HTTP/HTTPS ALB with global/regional modes and TLS | README |
| External Passthrough NLB | GCP | External passthrough Network Load Balancer | README |
| Internal Passthrough NLB | GCP | Internal passthrough Network Load Balancer (VPC-only) | README |
| k8s Init Container Logs | Kubernetes | Reproduces k8s_observer init-container gap (issue #42810) | README |
See GCP Setup for prerequisites and authentication.
# Configure your project
cp config.env.example config.env
$EDITOR config.env
# Run a scenario
./run.fish generate --scenario=vpc-flow
./run.fish export --scenario=vpc-flow
./run.fish destroy --scenario=vpc-flow --dry-run=false# Deploy workload
./k8s/init-container-logs/deploy-workload.fish
# Run local collector
./k8s/init-container-logs/run-collector.fishinfra-party/
├── docs/ # Setup guides
├── k8s/ # Kubernetes scenarios (kubectl-only)
│ └── init-container-logs/ # k8s_observer init-container repro
├── lib/
│ ├── common.fish # Shared helper functions
│ └── scenarios/ # Scenario implementations
├── terraform/
│ └── modules/ # Terraform modules for GCP scenarios
└── run.fish # Main entry point for GCP scenarios
Note: Usage of an LLM is highly recommended for this repo.
- Create a Terraform module under
terraform/modules/<scenario-name>/ - Update
terraform/main.tf,variables.tf, andoutputs.tf - Add a
lib/scenarios/<scenario-name>.fishhelper implementing:scenario::validate_outputsscenario::run_trafficscenario::export_logsscenario::print_next_steps
- Add a README at
lib/scenarios/<scenario-name>/README.md
- Create a directory under
k8s/<scenario-name>/ - Add Kustomize manifests and helper scripts
- Add a self-contained README