-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test linux zip in China & US Gov regions (#178)
- Loading branch information
Showing
4 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Testing X-Ray Daemon | ||
|
||
This directory contains the resources and logic for testing the functionality of X-Ray Daemon for various test cases. The testcases leverage Terraform with variable configurations to launch X-Ray Daemon on AWS EC2 instances and send a trace through it. | ||
|
||
Current features of this testing suite are: | ||
1. Testing the `.zip`, `.deb`, and `.rpm` binaries for x86_64 architecture of Linux platform. | ||
2. Testing the `.zip` binary for x86_64 architecture of Linux platform in China and US Gov AWS partitions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
testing_ami = "amazonlinux2" | ||
daemon_file_name = "aws-xray-daemon-linux-3.x.zip" | ||
daemon_install_command = "unzip aws-xray-daemon-linux-3.x.zip -d ./xray_daemon" | ||
daemon_start_command = "nohup sudo ./xray_daemon/xray --log-level debug --log-file ./xray_daemon/xray_log &" | ||
daemon_package_local_path = "../../distributions/aws-xray-daemon-linux-3.x.zip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
testing_ami = "amazonlinux2" | ||
daemon_file_name = "aws-xray-daemon-linux-3.x.zip" | ||
daemon_install_command = "unzip aws-xray-daemon-linux-3.x.zip -d ./xray_daemon" | ||
daemon_start_command = "nohup sudo ./xray_daemon/xray --log-level debug --log-file ./xray_daemon/xray_log &" | ||
daemon_package_local_path = "../../distributions/aws-xray-daemon-linux-3.x.zip" |