-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into daniel.lavie/USMON-830-kafka-fetch-latency
- Loading branch information
Showing
91 changed files
with
2,260 additions
and
415 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
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
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,22 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Publish Docker" type="ShConfigurationType" folderName="docker"> | ||
<option name="SCRIPT_TEXT" value="" /> | ||
<option name="INDEPENDENT_SCRIPT_PATH" value="true" /> | ||
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/.run/bash_runner.sh" /> | ||
<option name="SCRIPT_OPTIONS" value="" /> | ||
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" /> | ||
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" /> | ||
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" /> | ||
<option name="INTERPRETER_PATH" value="/bin/bash" /> | ||
<option name="INTERPRETER_OPTIONS" value="" /> | ||
<option name="EXECUTE_IN_TERMINAL" value="true" /> | ||
<option name="EXECUTE_SCRIPT_FILE" value="true" /> | ||
<envs> | ||
<env name="SCRIPT_TO_RUN" value=".run/deploy_image.sh" /> | ||
<env name="IMAGE_NAME" value="<your-name>" /> | ||
<env name="IMAGE_VERSION" value="<version>" /> | ||
<env name="INCLUDE_AWS_ECR_LOGIN_PASSWORD" value="true" /> | ||
</envs> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
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,28 @@ | ||
#!/usr/bin/bash -ex | ||
|
||
# This script logs into the Docker registry, builds a Docker image, and pushes it to Amazon ECR. | ||
|
||
# Ensure AWS_ECR_LOGIN_PASSWORD is set | ||
if [[ -z $AWS_ECR_LOGIN_PASSWORD ]]; then | ||
echo "AWS_ECR_LOGIN_PASSWORD environment variable is not set" | ||
exit 1 | ||
fi | ||
|
||
# Ensure IMAGE_NAME and IMAGE_VERSION are set | ||
if [[ -z $IMAGE_NAME || -z $IMAGE_VERSION ]]; then | ||
echo "IMAGE_NAME and IMAGE_VERSION environment variables must be set" | ||
exit 1 | ||
fi | ||
|
||
# Docker registry and image details | ||
AWS_ACCOUNT_ID="601427279990" | ||
REGION="us-east-1" | ||
REPOSITORY_NAME="usm-agent" | ||
|
||
# Login to Amazon ECR | ||
echo $AWS_ECR_LOGIN_PASSWORD | docker login --username AWS --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$REGION.amazonaws.com" | ||
|
||
# Build and push the Docker image | ||
inv -e process-agent.build-dev-image \ | ||
--image "$AWS_ACCOUNT_ID.dkr.ecr.$REGION.amazonaws.com/$REPOSITORY_NAME/$IMAGE_NAME:$IMAGE_VERSION" \ | ||
--base-image datadog/agent-dev:master-py3 --push |
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 |
---|---|---|
|
@@ -2569,8 +2569,8 @@ core,go4.org/intern,BSD-3-Clause,"Copyright (c) 2020, Brad Fitzpatrick" | |
core,go4.org/mem,Apache-2.0,Copyright 2020 The Go4 AUTHORS | ||
core,go4.org/netipx,BSD-3-Clause,Alex Willmer <[email protected]> | Copyright (c) 2020 The Inet.af AUTHORS. All rights reserved | Matt Layher <[email protected]> | Tailscale Inc. | Tobias Klauser <[email protected]> | ||
core,go4.org/unsafe/assume-no-moving-gc,BSD-3-Clause,"Copyright (c) 2020, Brad Fitzpatrick" | ||
core,golang.org/x/arch/arm64/arm64asm,BSD-3-Clause,Copyright (c) 2015 The Go Authors. All rights reserved | ||
core,golang.org/x/arch/x86/x86asm,BSD-3-Clause,Copyright (c) 2015 The Go Authors. All rights reserved | ||
core,golang.org/x/arch/arm64/arm64asm,BSD-3-Clause,Copyright 2015 The Go Authors | ||
core,golang.org/x/arch/x86/x86asm,BSD-3-Clause,Copyright 2015 The Go Authors | ||
core,golang.org/x/crypto/argon2,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/crypto/bcrypt,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/crypto/blake2b,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
|
@@ -2646,9 +2646,9 @@ core,golang.org/x/oauth2/google/internal/stsexchange,BSD-3-Clause,Copyright (c) | |
core,golang.org/x/oauth2/internal,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/oauth2/jws,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/oauth2/jwt,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sync/errgroup,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sync/semaphore,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sync/singleflight,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sync/errgroup,BSD-3-Clause,Copyright 2009 The Go Authors | ||
core,golang.org/x/sync/semaphore,BSD-3-Clause,Copyright 2009 The Go Authors | ||
core,golang.org/x/sync/singleflight,BSD-3-Clause,Copyright 2009 The Go Authors | ||
core,golang.org/x/sys/cpu,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sys/execabs,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/sys/plan9,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
|
@@ -2691,7 +2691,7 @@ core,golang.org/x/text/transform,BSD-3-Clause,Copyright (c) 2009 The Go Authors. | |
core,golang.org/x/text/unicode/bidi,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/text/unicode/norm,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/text/width,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/time/rate,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved | ||
core,golang.org/x/time/rate,BSD-3-Clause,Copyright 2009 The Go Authors | ||
core,golang/go,BSD-3-Clause,Copyright (c) 2009 The Go Authors. All rights reserved. | ||
core,gomodules.xyz/jsonpatch/v2,Apache-2.0,Copyright (c) 2015 The Authors | ||
core,gonum.org/v1/gonum/blas,BSD-3-Clause,Alexander Egurnov <[email protected]> | Andrei Blinnikov <[email protected]> | Andrew Brampton <[email protected]> | Bailey Lissington <[email protected]> | Bill Gray <[email protected]> | Bill Noon <[email protected]> | Brendan Tracey <[email protected]> | Brent Pedersen <[email protected]> | Bulat Khasanov <[email protected]> | Chad Kunde <[email protected]> | Chan Kwan Yin <[email protected]> | Chih-Wei Chang <[email protected]> | Chong-Yeol Nah <[email protected]> | Chris Tessum <[email protected]> | Christophe Meessen <[email protected]> | Christopher Waldon <[email protected]> | Clayton Northey <[email protected]> | Copyright ©2013 The Gonum Authors. All rights reserved | Dan Kortschak <[email protected]> <[email protected]> | Dan Lorenc <[email protected]> | Daniel Fireman <[email protected]> | Dario Heinisch <[email protected]> | David Kleiven <[email protected]> | David Samborski <[email protected]> | Davor Kapsa <[email protected]> | DeepMind Technologies | Delaney Gillilan <[email protected]> | Dezmond Goff <[email protected]> | Dong-hee Na <[email protected]> | Dustin Spicuzza <[email protected]> | Egon Elbre <[email protected]> | Ekaterina Efimova <[email protected]> | Eng Zer Jun <[email protected]> | Ethan Burns <[email protected]> | Ethan Reesor <[email protected]> | Evert Lammerts <[email protected]> | Evgeny Savinov <[email protected]> | Fabian Wickborn <[email protected]> | Facundo Gaich <[email protected]> | Fazlul Shahriar <[email protected]> | Francesc Campoy <[email protected]> | Google Inc | Gustaf Johansson <[email protected]> | Hossein Zolfi <[email protected]> | Iakov Davydov <[email protected]> | Igor Mikushkin <[email protected]> | Iskander Sharipov <[email protected]> | Jalem Raj Rohit <[email protected]> | James Bell <[email protected]> | James Bowman <[email protected]> | James Holmes <[email protected]> | Janne Snabb <[email protected]> | Jeremy Atkinson <[email protected]> | Jes Cok <[email protected]> | Jinesi Yelizati <[email protected]> | Jon Richards <[email protected]> | Jonas Kahler <[email protected]> | Jonas Schulze <[email protected]> | Jonathan Bluett-Duncan <[email protected]> | Jonathan J Lawlor <[email protected]> | Jonathan Reiter <[email protected]> | Jonathan Schroeder <[email protected]> | Joost van Amersfoort <[email protected]> | Jordan Stoker <[email protected]> | Joseph Watson <[email protected]> | Josh Wilson <[email protected]> | Julien Roland <[email protected]> | Kai Trukenmüller <[email protected]> | Kent English <[email protected]> | Kevin C. Zimmerman <[email protected]> | Kirill Motkov <[email protected]> | Konstantin Shaposhnikov <[email protected]> | Leonid Kneller <[email protected]> | Lyron Winderbaum <[email protected]> <[email protected]> <[email protected]> | Marco Leogrande <[email protected]> | Mark Canning <[email protected]> | Mark Skilbeck <[email protected]> | Martin Diz <[email protected]> | Matthew Connelly <[email protected]> | Matthieu Di Mercurio <[email protected]> | Max Halford <[email protected]> | Maxim Sergeev <[email protected]> | Microsoft Corporation | MinJae Kwon <[email protected]> | Nathan Edwards <[email protected]> | Nick Potts <[email protected]> | Nils Wogatzky <[email protected]> | Olivier Wulveryck <[email protected]> | Or Rikon <[email protected]> | Patricio Whittingslow <[email protected]> | Patrick DeVivo <[email protected]> | Pontus Melke <[email protected]> | Renee French | Rishi Desai <[email protected]> | Robin Eklind <[email protected]> | Roger Welin <[email protected]> | Roman Werpachowski <[email protected]> | Rondall Jones <[email protected]> | Sam Zaydel <[email protected]> | Samuel Kelemen <[email protected]> | Saran Ahluwalia <[email protected]> | Scott Holden <[email protected]> | Scott Kiesel <[email protected]> | Sebastien Binet <[email protected]> | Shawn Smith <[email protected]> | Sintela Ltd | Spencer Lyon <[email protected]> | Steve McCoy <[email protected]> | Taesu Pyo <[email protected]> | Takeshi Yoneda <[email protected]> | Tamir Hyman <[email protected]> | The University of Adelaide | The University of Minnesota | The University of Washington | Thomas Berg <[email protected]> | Tobin Harding <[email protected]> | Valentin Deleplace <[email protected]> | Vincent Thiery <[email protected]> | Vladimír Chalupecký <[email protected]> | Will Tekulve <[email protected]> | Yasuhiro Matsumoto <[email protected]> | Yevgeniy Vahlis <[email protected]> | Yucheng Zhu <[email protected]> | Yunomi <[email protected]> | Zoe Juozapaitis | antichris <[email protected]> | source{d} <[email protected]> | ||
|
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
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
Oops, something went wrong.