- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Datadog에 속한 IP 접두사 목록 보기
GET https://ip-ranges.ap1.datadoghq.com/https://ip-ranges.datadoghq.eu/https://ip-ranges.ddog-gov.com/https://ip-ranges.datadoghq.com/https://ip-ranges.us3.datadoghq.com/https://ip-ranges.us5.datadoghq.com/
Get information about Datadog IP ranges.
OK
IP ranges.
항목
유형
설명
agents
object
Available prefix information for the Agent endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
api
object
Available prefix information for the API endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
apm
object
Available prefix information for the APM endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
global
object
Available prefix information for all Datadog endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
logs
object
Available prefix information for the Logs endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
modified
string
Date when last updated, in the form YYYY-MM-DD-hh-mm-ss
.
orchestrator
object
Available prefix information for the Orchestrator endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
process
object
Available prefix information for the Process endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
remote-configuration
object
Available prefix information for the Remote Configuration endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
synthetics
object
Available prefix information for the Synthetics endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv4_by_location
object
List of IPv4 prefixes by location.
<any-key>
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
prefixes_ipv6_by_location
object
List of IPv6 prefixes by location.
<any-key>
[string]
List of IPv6 prefixes.
synthetics-private-locations
object
Available prefix information for the Synthetics Private Locations endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
version
int64
Version of the IP list.
webhooks
object
Available prefix information for the Webhook endpoints.
prefixes_ipv4
[string]
List of IPv4 prefixes.
prefixes_ipv6
[string]
List of IPv6 prefixes.
{
"agents": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"api": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"apm": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"global": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"logs": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"modified": "2019-10-31-20-00-00",
"orchestrator": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"process": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"remote-configuration": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"synthetics": {
"prefixes_ipv4": [],
"prefixes_ipv4_by_location": {
"<any-key>": []
},
"prefixes_ipv6": [],
"prefixes_ipv6_by_location": {
"<any-key>": []
}
},
"synthetics-private-locations": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
},
"version": 11,
"webhooks": {
"prefixes_ipv4": [],
"prefixes_ipv6": []
}
}
Too many requests
Error response object.
{
"errors": [
"Bad Request"
]
}
// List IP Ranges returns "OK" response
use datadog_api_client::datadog;
use datadog_api_client::datadogV1::api_ip_ranges::IPRangesAPI;
#[tokio::main]
async fn main() {
let configuration = datadog::Configuration::new();
let api = IPRangesAPI::with_config(configuration);
let resp = api.get_ip_ranges().await;
if let Ok(value) = resp {
println!("{:#?}", value);
} else {
println!("{:#?}", resp.unwrap_err());
}
}
First install the library and its dependencies and then save the example to src/main.rs
and run following commands:
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com" cargo run