- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Using Raspbian
Begin with the update of your local cache
sudo apt-get update
Then install sysstat
.
sudo apt-get install sysstat
Navigate to the Agent Install Screen in Datadog and select “from source”
Execute the installation command.
DD_API_KEY=<YOUR-API-KEY> sh -c "$(curl -L https://raw.githubusercontent.com/DataDog/dd-agent/master/packaging/datadog-agent/source/setup_agent.sh)"
Note: The installation process may take up to 30 minutes on some models of Raspberry PI.
Example output after successful installation:
The Agent runs in the foreground. Some users find benefit in creating a systemd
service for the Agent like this:
#/etc/systemd/system/datadog.service
[Unit]
Description=Datadog Agent
[Service]
ExecStart=/path/to/.datadog-agent/bin/agent
[Install]
WantedBy=multi-user.target
Then, run:
systemctl daemon-reload
sudo systemctl enable datadog
systemctl start datadog
The Datadog Agent is installed in the working directory where you ran the installation command, for example: /home/pi/.datadog-agent/
.
Example of metrics being ingested from your Raspberry PI device:
Note: Datadog does not officially support Raspbian.