Package Details: datadog-agent 7.67.0-1

Git Clone URL: https://aur.archlinux.org/datadog-agent.git (read-only, click to copy)
Package Base: datadog-agent
Description: Datadog Agent: collect metrics and events from your systems and apps
Upstream URL: https://datadoghq.com
Keywords: agent alerts analytics metrics monitoring
Licenses: Apache
Submitter: albertvaka
Maintainer: albertvaka (ashwat)
Last Packager: albertvaka
Votes: 2
Popularity: 0.000002
First Submitted: 2019-04-17 22:25 (UTC)
Last Updated: 2025-06-24 20:45 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

albertvaka commented on 2022-05-07 00:32 (UTC)

You are right, it's a dependency. Let me add it :)

outloudvi commented on 2022-05-05 13:07 (UTC)

Note that it may need libxcrypt-compat as an optional dependency since some of its features require libcrypt.so.1. For example:

$ datadog-agent integration install -t datadog-traefik==1.0.0                
Error: could not get current version of datadog-traefik: error executing python: /opt/datadog-agent/embedded/bin/python3: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory

albertvaka commented on 2021-04-20 22:07 (UTC)

Thanks Mark, I'll include your changes together with the 7.27 update :)

mnot commented on 2021-04-19 05:17 (UTC)

Upstream now supports armv8. I've made an attempt to accommodate it here: https://gist.github.com/mnot/0bf61ce9bd3cf2f45a8f54578bbdbed1

... it seems to work for me (on a Raspberry Pi 4).

albertvaka commented on 2020-11-16 13:41 (UTC)

You might need to run the following command to make the GPG key from Datadog trusted before you can build this package:

gpg --keyserver hkp://keyserver.ubuntu.com --receive-keys A2923DFF56EDA6E76E55E492D3A80E30382E94DE

filipegiusti commented on 2020-10-08 15:54 (UTC)

Add your API KEY

sudo cp /etc/datadog-agent/{datadog.yaml.example,datadog.yaml} sudo chown dd-agent:dd-agent /etc/datadog-agent/datadog.yaml sudo vim /etc/datadog-agent/datadog.yaml

Start monitoring

systemctl start datadog-agent systemctl enable datadog-agent

mnot commented on 2019-08-23 23:55 (UTC)

Seems to work, thx!

albertvaka commented on 2019-08-23 21:46 (UTC)

I've removed all the tails and heads so we no longer rely on the specific position of anything. Thanks for your help :)

mnot commented on 2019-08-19 22:57 (UTC)

I think it's not reliable because Datadog are putting newer versions into their package signature files, which is checked in prepare(). The current approach just looks for the latest entry in that file, which can be newer than the version desired (right now, it's 6.13).

Something like this should work:

pcregrep -A 15 -M 'datadog-agent\nVersion: ${pkgver}-${_agentrel}' ${pkgname}-${pkgver}-${_agentrel}-Packages | grep ^SHA256 | awk '{print $2}'

mnot commented on 2019-07-16 18:32 (UTC)

Works for me now, thx.