Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
137 lines
3.6 KiB
Nix
137 lines
3.6 KiB
Nix
# The declarations in this file build the Datadog agent's core
|
|
# integrations. These integrations are tracked in a separate
|
|
# repository[1] outside of the agent's primary repository and provide
|
|
# checks for various kinds of services.
|
|
#
|
|
# Not all services are relevant for all users, however. As some of
|
|
# them depend on various tools and Python packages it is nonsensical
|
|
# to build *all* integrations by default.
|
|
#
|
|
# A set of default integrations is defined and built either way.
|
|
# Additional integrations can be specified by overriding
|
|
# `extraIntegrations` in datadog-integrations-core.
|
|
#
|
|
# In practice the syntax for using this with additional integrations
|
|
# is not the most beautiful, but it works. For example to use
|
|
# datadog-agent from the top-level with the `ntp`-integration
|
|
# included, one could say:
|
|
#
|
|
# let
|
|
# integrationsWithNtp = datadog-integrations-core {
|
|
# # Extra integrations map from the integration name (as in the
|
|
# # integrations-core repository) to a function that receives the
|
|
# # Python package set and returns the required dependencies.g
|
|
# ntp = (ps: [ ps.ntplib ]);
|
|
# };
|
|
#
|
|
# in ddAgentWithNtp = datadog-agent.overrideAttrs(_ : {
|
|
# python = integrationsWithNtp.python;
|
|
# });
|
|
#
|
|
# The NixOS module 'datadog-agent' provides a simplified interface to
|
|
# this. Please see the module itself for more information.
|
|
#
|
|
# [1]: https://github.com/DataDog/integrations-core
|
|
|
|
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
extraIntegrations ? { },
|
|
}:
|
|
|
|
let
|
|
inherit (lib) attrValues mapAttrs;
|
|
version = "7.70.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DataDog";
|
|
repo = "integrations-core";
|
|
tag = version;
|
|
hash = "sha256-3H8nQpy/m53ZjtDfe6s89yowBXnPt+1ARfWxcx+JwQM=";
|
|
};
|
|
|
|
# Build helper to build a single datadog integration package.
|
|
buildIntegration =
|
|
{ pname, ... }@args:
|
|
python3Packages.buildPythonPackage (
|
|
args
|
|
// {
|
|
inherit src version;
|
|
name = "datadog-integration-${pname}-${version}";
|
|
pyproject = true;
|
|
|
|
sourceRoot = "${src.name}/${args.sourceRoot or pname}";
|
|
buildInputs = with python3Packages; [
|
|
hatchling
|
|
setuptools
|
|
];
|
|
doCheck = false;
|
|
}
|
|
);
|
|
|
|
# Base package depended on by all other integrations.
|
|
datadog_checks_base = buildIntegration {
|
|
pname = "checks-base";
|
|
sourceRoot = "datadog_checks_base";
|
|
|
|
dependencies = with python3Packages; [
|
|
binary
|
|
cachetools
|
|
cryptography
|
|
immutables
|
|
jellyfish
|
|
lazy-loader
|
|
prometheus-client
|
|
protobuf
|
|
pydantic
|
|
python-dateutil
|
|
pyyaml
|
|
requests
|
|
requests-toolbelt
|
|
requests-unixsocket
|
|
simplejson
|
|
uptime
|
|
wrapt
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"datadog_checks.base"
|
|
"datadog_checks.base.checks"
|
|
"datadog_checks.checks"
|
|
];
|
|
};
|
|
|
|
# Default integrations that should be built:
|
|
defaultIntegrations = {
|
|
disk = (ps: [ ps.psutil ]);
|
|
mongo = (ps: [ ps.pymongo ]);
|
|
network = (ps: [ ps.psutil ]);
|
|
nginx = (ps: [ ]);
|
|
postgres = (
|
|
ps: with ps; [
|
|
pg8000
|
|
psycopg2
|
|
semver
|
|
]
|
|
);
|
|
process = (ps: [ ps.psutil ]);
|
|
};
|
|
|
|
# All integrations (default + extra):
|
|
integrations = defaultIntegrations // extraIntegrations;
|
|
builtIntegrations = mapAttrs (
|
|
pname: fdeps:
|
|
buildIntegration {
|
|
inherit pname;
|
|
propagatedBuildInputs = (fdeps python3Packages) ++ [ datadog_checks_base ];
|
|
}
|
|
) integrations;
|
|
|
|
in
|
|
builtIntegrations
|
|
// {
|
|
inherit datadog_checks_base;
|
|
python = python3Packages.python.withPackages (_: (attrValues builtIntegrations));
|
|
}
|