forked from DataDog/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regions.config.js
123 lines (123 loc) · 2.98 KB
/
regions.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
export default {
allowedRegions: ['us', 'us3', 'eu', 'gov'],
dd_datacenter: {
us: 'US',
us3: 'US3',
eu: 'EU',
gov: 'US1-FED'
},
dd_site: {
us: 'datadoghq.com',
us3: 'us3.datadoghq.com',
eu: 'datadoghq.eu',
gov: 'ddog-gov.com'
},
dd_full_site: {
us: 'app.datadoghq.com',
us3: 'us3.datadoghq.com',
eu: 'app.datadoghq.eu',
gov: 'app.ddog-gov.com'
},
dd_site_name: {
us: 'US',
us3: 'US3',
eu: 'EU',
gov: 'Government'
},
tcp_endpoint: {
us: 'agent-intake.logs.datadoghq.com',
us3: 'agent-intake.logs.us3.datadoghq.com',
eu: 'agent-intake.logs.datadoghq.eu',
gov: 'not supported'
},
tcp_endpoint_port: {
us: '10514',
us3: '10514',
eu: '443',
gov: 'not supported'
},
tcp_endpoint_port_ssl: {
us: '10516',
us3: '10516',
eu: '1883',
gov: 'not supported'
},
web_integrations_endpoint: {
us: 'intake.logs.datadoghq.com',
us3: 'intake.logs.datadoghq.com',
eu: 'tcp-intake.logs.datadoghq.eu',
gov: 'not supported'
},
web_integrations_port: {
us: '10516',
us3: '10516',
eu: '443',
gov: 'not supported'
},
web_integrations_unencrypted_port: {
us: '10514',
us3: '10514',
eu: '1883',
gov: 'not supported'
},
agent_http_endpoint: {
us: 'agent-http-intake.logs.datadoghq.com',
us3: 'agent-http-intake.logs.us3.datadoghq.com',
eu: 'agent-http-intake.logs.datadoghq.eu',
gov: 'agent-http-intake.logs.ddog-gov.com'
},
agent_http_port: {
us: '443',
us3: '443',
eu: '443',
gov: '443'
},
http_endpoint: {
us: 'http-intake.logs.datadoghq.com',
us3: 'http-intake.logs.us3.datadoghq.com',
eu: 'http-intake.logs.datadoghq.eu',
gov: 'http-intake.logs.ddog-gov.com'
},
http_port: {
us: '443',
us3: '443',
eu: '443',
gov: '443'
},
lambda_endpoint: {
us: 'lambda-intake.logs.datadoghq.com',
us3: 'not supported',
eu: 'lambda-intake.logs.datadoghq.eu',
gov: 'not supported'
},
lambda_port: {
us: '443',
us3: 'not supported',
eu: '443',
gov: 'not supported'
},
lambda_http_endpoint: {
us: 'lambda-http-intake.logs.datadoghq.com',
us3: 'lambda-http-intake.logs.us3.datadoghq.com',
eu: 'lambda-http-intake.logs.datadoghq.eu',
gov: 'lambda-http-intake.logs.ddog-gov.com'
},
lambda_http_port: {
us: '443',
us3: '443',
eu: '443',
gov: '443'
},
functions_endpoint: {
us: 'functions-intake.logs.datadoghq.com',
us3: 'not supported',
eu: 'not supported',
gov: 'not supported'
},
functions_port: {
us: '443',
us3: 'not supported',
eu: 'not supported',
gov: 'not supported'
}
};