├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── latency.go └── terraform ├── .gitignore ├── README.md ├── bootstrap ├── install.sh ├── run_server.sh └── setenv.sh ├── client ├── ca.pem ├── client-key.pem ├── client.pem └── run_tests.sh ├── gcp ├── README.md ├── main.tf ├── output.tf └── variables.tf ├── packet ├── README.md ├── main.tf ├── output.tf └── variables.tf ├── servera ├── ca.pem ├── gnatsd.conf ├── servera-key.pem └── servera.pem ├── serverb ├── ca.pem ├── gnatsd.conf ├── serverb-key.pem └── serverb.pem └── tls-scripts ├── config ├── ca-config.json ├── ca-csr.json ├── client.json ├── servera.json └── serverb.json └── gencerts.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/go.sum -------------------------------------------------------------------------------- /latency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/latency.go -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/bootstrap/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/bootstrap/install.sh -------------------------------------------------------------------------------- /terraform/bootstrap/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/bootstrap/run_server.sh -------------------------------------------------------------------------------- /terraform/bootstrap/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/bootstrap/setenv.sh -------------------------------------------------------------------------------- /terraform/client/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/client/ca.pem -------------------------------------------------------------------------------- /terraform/client/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/client/client-key.pem -------------------------------------------------------------------------------- /terraform/client/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/client/client.pem -------------------------------------------------------------------------------- /terraform/client/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/client/run_tests.sh -------------------------------------------------------------------------------- /terraform/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/gcp/README.md -------------------------------------------------------------------------------- /terraform/gcp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/gcp/main.tf -------------------------------------------------------------------------------- /terraform/gcp/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/gcp/output.tf -------------------------------------------------------------------------------- /terraform/gcp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/gcp/variables.tf -------------------------------------------------------------------------------- /terraform/packet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/packet/README.md -------------------------------------------------------------------------------- /terraform/packet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/packet/main.tf -------------------------------------------------------------------------------- /terraform/packet/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/packet/output.tf -------------------------------------------------------------------------------- /terraform/packet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/packet/variables.tf -------------------------------------------------------------------------------- /terraform/servera/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/servera/ca.pem -------------------------------------------------------------------------------- /terraform/servera/gnatsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/servera/gnatsd.conf -------------------------------------------------------------------------------- /terraform/servera/servera-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/servera/servera-key.pem -------------------------------------------------------------------------------- /terraform/servera/servera.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/servera/servera.pem -------------------------------------------------------------------------------- /terraform/serverb/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/serverb/ca.pem -------------------------------------------------------------------------------- /terraform/serverb/gnatsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/serverb/gnatsd.conf -------------------------------------------------------------------------------- /terraform/serverb/serverb-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/serverb/serverb-key.pem -------------------------------------------------------------------------------- /terraform/serverb/serverb.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/serverb/serverb.pem -------------------------------------------------------------------------------- /terraform/tls-scripts/config/ca-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/config/ca-config.json -------------------------------------------------------------------------------- /terraform/tls-scripts/config/ca-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/config/ca-csr.json -------------------------------------------------------------------------------- /terraform/tls-scripts/config/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/config/client.json -------------------------------------------------------------------------------- /terraform/tls-scripts/config/servera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/config/servera.json -------------------------------------------------------------------------------- /terraform/tls-scripts/config/serverb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/config/serverb.json -------------------------------------------------------------------------------- /terraform/tls-scripts/gencerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nats-io/latency-tests/HEAD/terraform/tls-scripts/gencerts.sh --------------------------------------------------------------------------------