-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into auto-generate/update-latest-dependencies
- Loading branch information
Showing
1,136 changed files
with
374 additions
and
1,600 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 |
---|---|---|
@@ -1 +1 @@ | ||
463 | ||
464 |
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,42 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require 'net/http' | ||
require 'uri' | ||
require 'json' | ||
|
||
# Disable exiting on command failure | ||
begin | ||
# Check if test agent is running | ||
summary_uri = URI.parse('http://testagent:9126/test/trace_check/summary') | ||
summary_response = Net::HTTP.get_response(summary_uri) | ||
|
||
if summary_response.code == '200' | ||
puts 'APM Test Agent is running. (HTTP 200)' | ||
else | ||
puts 'APM Test Agent is not running and was not used for testing. No checks failed.' | ||
exit 0 | ||
end | ||
|
||
# Check for test failures | ||
failures_uri = URI.parse('http://testagent:9126/test/trace_check/failures') | ||
failures_response = Net::HTTP.get_response(failures_uri) | ||
|
||
case failures_response.code | ||
when '200' | ||
puts 'All APM Test Agent Check Traces returned successful! (HTTP 200)' | ||
puts 'APM Test Agent Check Traces Summary Results:' | ||
puts JSON.pretty_generate(JSON.parse(summary_response.body)) | ||
when '404' | ||
puts 'Real APM Agent running in place of TestAgent, no checks to validate!' | ||
else | ||
puts "APM Test Agent Check Traces failed with response code: #{failures_response.code}" | ||
puts 'Failures:' | ||
puts failures_response.body | ||
puts 'APM Test Agent Check Traces Summary Results:' | ||
puts JSON.pretty_generate(JSON.parse(summary_response.body)) | ||
exit 1 | ||
end | ||
rescue => e | ||
puts "An error occurred: #{e.message}" | ||
exit 1 | ||
end |
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 @@ | ||
FROM ghcr.io/datadog/images-rb/engines/ruby:2.7-centos-gcc |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
FROM ghcr.io/datadog/images-rb/engines/ruby:3.0-centos-gcc |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
FROM ghcr.io/datadog/images-rb/engines/ruby:3.1-centos-gcc |
Oops, something went wrong.