Skip to content

Commit 82bc332

Browse files
committed
Merge branch 'master' into annabfenske/feature-flags-js-react-docs
2 parents 896d9b3 + 4bd4520 commit 82bc332

File tree

734 files changed

+35410
-65023
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

734 files changed

+35410
-65023
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ data/private_action_runner_version.json @Datadog/documenta
7676
# Serverless
7777

7878
/content/en/serverless/ @DataDog/serverless @DataDog/documentation
79-
/layouts/shortcodes/latest-lambda-layer-version.html @DataDog/documentation
79+
/layouts/shortcodes/latest-lambda-layer-version.html @DataDog/serverless-onboarding-enablement @DataDog/documentation
8080

8181
# Database Management
8282
/content/en/database_monitoring/ @DataDog/database-monitoring @DataDog/documentation

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ static/cdocs
311311
content/en/**/*.ast.json
312312
layouts/shortcodes/mdoc/en/**/*.ast.json
313313
*.tempAst.json
314+
.cdocs_temp
314315

315316
# Cursor editor configuration
316317
.cursor/

assets/scripts/components/instantsearch/getHitData.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ export function getHitData(hit, searchQuery = '') {
55
const title = hit.title ? hit.title : hit.type;
66
const cleanRelPermalink =
77
hit.language == 'en' ? hit.relpermalink : hit.relpermalink.replace(`/${hit.language}/`, '');
8-
98
const matchingWordsArray = getFilteredMatchingWords(searchQuery).map((word) => replaceSpecialCharacters(word));
109
const joinedMatchingWordsFromSearch = matchingWordsArray.join('|');
1110
const regexQry = new RegExp(`(${joinedMatchingWordsFromSearch})`, 'gi');
12-
const highlightTitle = hit._highlightResult.title.value || title;
13-
const highlightContent = hit._highlightResult.content.value || '';
14-
const highlightSectionHeader = hit._highlightResult.section_header?.value || '';
11+
const highlightTitle = hit._highlightResult?.title?.value || title;
12+
const highlightContent = hit._highlightResult?.content?.value || '';
13+
const highlightSectionHeader = hit._highlightResult?.section_header?.value || '';
1514

1615
return {
1716
relpermalink: cleanRelPermalink,

assets/scripts/config/regions.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,33 @@ export default {
598598
ap2: '',
599599
gov: ''
600600
},
601+
kotlin_multiplatform_site_config: {
602+
us: '',
603+
us3: '\n .useSite(DatadogSite.US3)\n .trackCrashes(true)',
604+
us5: '\n .useSite(DatadogSite.US5)\n .trackCrashes(true)',
605+
eu: '\n .useSite(DatadogSite.EU1)\n .trackCrashes(true)',
606+
ap1: '\n .useSite(DatadogSite.AP1)\n .trackCrashes(true)',
607+
ap2: '\n .useSite(DatadogSite.AP2)\n .trackCrashes(true)',
608+
gov: '\n .useSite(DatadogSite.US1_FED)\n .trackCrashes(true)'
609+
},
610+
reactnative_sdk_init: {
611+
us: '',
612+
us3: '',
613+
us5: '\n\nawait DdSdkReactNative.initialize(config);',
614+
eu: '',
615+
ap1: '',
616+
ap2: '',
617+
gov: ''
618+
},
619+
roku_site: {
620+
us: 'us1',
621+
us3: 'us3',
622+
us5: 'us5',
623+
eu: 'eu1',
624+
ap1: 'ap1',
625+
ap2: 'ap2',
626+
gov: 'us1_fed'
627+
},
601628
cursor_mcp_install_deeplink: {
602629
us: 'cursor://anysphere.cursor-deeplink/mcp/install?name=datadog-onboarding-us1&config=eyJ1cmwiOiJodHRwczovL21jcC5kYXRhZG9naHEuY29tL2FwaS91bnN0YWJsZS9tY3Atc2VydmVyL21jcD90b29sc2V0cz1vbmJvYXJkaW5nIiwidHlwZSI6Im9hdXRoIn0=',
603630
us3: 'cursor://anysphere.cursor-deeplink/mcp/install?name=datadog-onboarding-us3&config=eyJ1cmwiOiJodHRwczovL21jcC51czMuZGF0YWRvZ2hxLmNvbS9hcGkvdW5zdGFibGUvbWNwLXNlcnZlci9tY3A/dG9vbHNldHM9b25ib2FyZGluZyIsInR5cGUiOiJvYXV0aCJ9',

config/_default/menus/api.en.yaml

Lines changed: 109 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2416,9 +2416,9 @@ menu:
24162416
url: /api/latest/security-monitoring/
24172417
identifier: security-monitoring
24182418
generated: true
2419-
- name: Returns list of Secrets rules
2420-
url: '#returns-list-of-secrets-rules'
2421-
identifier: security-monitoring-returns-list-of-secrets-rules
2419+
- name: Returns a list of Secrets rules
2420+
url: '#returns-a-list-of-secrets-rules'
2421+
identifier: security-monitoring-returns-a-list-of-secrets-rules
24222422
parent: security-monitoring
24232423
generated: true
24242424
params:
@@ -2753,6 +2753,18 @@ menu:
27532753
- ListSecurityMonitoringRules
27542754
unstable: []
27552755
order: 4
2756+
- name: Get a suppression's version history
2757+
url: '#get-a-suppressions-version-history'
2758+
identifier: security-monitoring-get-a-suppressions-version-history
2759+
parent: security-monitoring
2760+
generated: true
2761+
params:
2762+
versions:
2763+
- v2
2764+
operationids:
2765+
- GetSuppressionVersionHistory
2766+
unstable: []
2767+
order: 0
27562768
- name: Update a suppression rule
27572769
url: '#update-a-suppression-rule'
27582770
identifier: security-monitoring-update-a-suppression-rule
@@ -3104,8 +3116,9 @@ menu:
31043116
- v2
31053117
operationids:
31063118
- CreateJiraIssues
3107-
unstable: []
3108-
order: 7
3119+
unstable:
3120+
- v2
3121+
order: 47
31093122
- name: Attach security findings to a Jira issue
31103123
url: '#attach-security-findings-to-a-jira-issue'
31113124
identifier: security-monitoring-attach-security-findings-to-a-jira-issue
@@ -3116,8 +3129,9 @@ menu:
31163129
- v2
31173130
operationids:
31183131
- AttachJiraIssue
3119-
unstable: []
3120-
order: 8
3132+
unstable:
3133+
- v2
3134+
order: 48
31213135
- name: Attach security findings to a case
31223136
url: '#attach-security-findings-to-a-case'
31233137
identifier: security-monitoring-attach-security-findings-to-a-case
@@ -3129,7 +3143,7 @@ menu:
31293143
operationids:
31303144
- AttachCase
31313145
unstable: []
3132-
order: 5
3146+
order: 45
31333147
- name: Create cases for security findings
31343148
url: '#create-cases-for-security-findings'
31353149
identifier: security-monitoring-create-cases-for-security-findings
@@ -3141,7 +3155,7 @@ menu:
31413155
operationids:
31423156
- CreateCases
31433157
unstable: []
3144-
order: 4
3158+
order: 44
31453159
- name: Detach security findings from their case
31463160
url: '#detach-security-findings-from-their-case'
31473161
identifier: security-monitoring-detach-security-findings-from-their-case
@@ -3153,7 +3167,7 @@ menu:
31533167
operationids:
31543168
- DetachCase
31553169
unstable: []
3156-
order: 6
3170+
order: 46
31573171
- name: Get a finding
31583172
url: '#get-a-finding'
31593173
identifier: security-monitoring-get-a-finding
@@ -5098,6 +5112,22 @@ menu:
50985112
unstable:
50995113
- v2
51005114
order: 4
5115+
- name: APM
5116+
url: /api/latest/apm/
5117+
identifier: apm
5118+
generated: true
5119+
- name: Get service list
5120+
url: '#get-service-list'
5121+
identifier: apm-get-service-list
5122+
parent: apm
5123+
generated: true
5124+
params:
5125+
versions:
5126+
- v2
5127+
operationids:
5128+
- GetServiceList
5129+
unstable: []
5130+
order: 1
51015131
- name: APM Retention Filters
51025132
url: /api/latest/apm-retention-filters/
51035133
identifier: apm-retention-filters
@@ -7598,6 +7628,19 @@ menu:
75987628
unstable:
75997629
- v2
76007630
order: 5
7631+
- name: Get rules for a deployment gate
7632+
url: '#get-rules-for-a-deployment-gate'
7633+
identifier: deployment-gates-get-rules-for-a-deployment-gate
7634+
parent: deployment-gates
7635+
generated: true
7636+
params:
7637+
versions:
7638+
- v2
7639+
operationids:
7640+
- GetDeploymentGateRules
7641+
unstable:
7642+
- v2
7643+
order: 9
76017644
- name: Create deployment gate
76027645
url: '#create-deployment-gate'
76037646
identifier: deployment-gates-create-deployment-gate
@@ -8323,8 +8366,7 @@ menu:
83238366
- v2
83248367
operationids:
83258368
- DeleteIncidentImpact
8326-
unstable:
8327-
- v2
8369+
unstable: []
83288370
order: 9
83298371
- name: Create an incident impact
83308372
url: '#create-an-incident-impact'
@@ -8336,8 +8378,7 @@ menu:
83368378
- v2
83378379
operationids:
83388380
- CreateIncidentImpact
8339-
unstable:
8340-
- v2
8381+
unstable: []
83418382
order: 7
83428383
- name: List an incident's impacts
83438384
url: '#list-an-incidents-impacts'
@@ -8349,8 +8390,7 @@ menu:
83498390
- v2
83508391
operationids:
83518392
- ListIncidentImpacts
8352-
unstable:
8353-
- v2
8393+
unstable: []
83548394
order: 6
83558395
- name: 'Create, update, and delete incident attachments'
83568396
url: '#create,-update,-and-delete-incident-attachments'
@@ -9400,6 +9440,54 @@ menu:
94009440
url: /api/latest/on-call/
94019441
identifier: on-call
94029442
generated: true
9443+
- name: Get an On-Call notification channel for a user
9444+
url: '#get-an-on-call-notification-channel-for-a-user'
9445+
identifier: on-call-get-an-on-call-notification-channel-for-a-user
9446+
parent: on-call
9447+
generated: true
9448+
params:
9449+
versions:
9450+
- v2
9451+
operationids:
9452+
- GetUserNotificationChannel
9453+
unstable: []
9454+
order: 14
9455+
- name: Delete an On-Call notification channel for a user
9456+
url: '#delete-an-on-call-notification-channel-for-a-user'
9457+
identifier: on-call-delete-an-on-call-notification-channel-for-a-user
9458+
parent: on-call
9459+
generated: true
9460+
params:
9461+
versions:
9462+
- v2
9463+
operationids:
9464+
- DeleteUserNotificationChannel
9465+
unstable: []
9466+
order: 13
9467+
- name: Create an On-Call notification channel for a user
9468+
url: '#create-an-on-call-notification-channel-for-a-user'
9469+
identifier: on-call-create-an-on-call-notification-channel-for-a-user
9470+
parent: on-call
9471+
generated: true
9472+
params:
9473+
versions:
9474+
- v2
9475+
operationids:
9476+
- CreateUserNotificationChannel
9477+
unstable: []
9478+
order: 16
9479+
- name: List On-Call notification channels for a user
9480+
url: '#list-on-call-notification-channels-for-a-user'
9481+
identifier: on-call-list-on-call-notification-channels-for-a-user
9482+
parent: on-call
9483+
generated: true
9484+
params:
9485+
versions:
9486+
- v2
9487+
operationids:
9488+
- ListUserNotificationChannels
9489+
unstable: []
9490+
order: 15
94039491
- name: Set On-Call team routing rules
94049492
url: '#set-on-call-team-routing-rules'
94059493
identifier: on-call-set-on-call-team-routing-rules
@@ -11458,8 +11546,7 @@ menu:
1145811546
- v2
1145911547
operationids:
1146011548
- SyncTeams
11461-
unstable:
11462-
- v2
11549+
unstable: []
1146311550
order: 19
1146411551
- name: Get team sync configurations
1146511552
url: '#get-team-sync-configurations'
@@ -11471,8 +11558,7 @@ menu:
1147111558
- v2
1147211559
operationids:
1147311560
- GetTeamSync
11474-
unstable:
11475-
- v2
11561+
unstable: []
1147611562
order: 18
1147711563
- name: Create team connections
1147811564
url: '#create-team-connections'
@@ -11484,8 +11570,7 @@ menu:
1148411570
- v2
1148511571
operationids:
1148611572
- CreateTeamConnections
11487-
unstable:
11488-
- v2
11573+
unstable: []
1148911574
order: 2
1149011575
- name: List team connections
1149111576
url: '#list-team-connections'
@@ -11497,8 +11582,7 @@ menu:
1149711582
- v2
1149811583
operationids:
1149911584
- ListTeamConnections
11500-
unstable:
11501-
- v2
11585+
unstable: []
1150211586
order: 1
1150311587
- name: Delete team connections
1150411588
url: '#delete-team-connections'
@@ -11510,8 +11594,7 @@ menu:
1151011594
- v2
1151111595
operationids:
1151211596
- DeleteTeamConnections
11513-
unstable:
11514-
- v2
11597+
unstable: []
1151511598
order: 3
1151611599
- name: Get a team hierarchy link
1151711600
url: '#get-a-team-hierarchy-link'

0 commit comments

Comments
 (0)