Skip to content

Commit a0b3b4c

Browse files
authored
[dbm] remove alpha label for settings collection (#17970)
* [dbm] remove alpha label for pg_settings * [dbm] remove alpha label for mysql and sqlserver settings
1 parent 33f85cc commit a0b3b4c

File tree

6 files changed

+62
-62
lines changed

6 files changed

+62
-62
lines changed

mysql/assets/configuration/spec.yaml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ files:
270270
Note that this runs a heavy query against your database to compute the relevant metrics
271271
for all your existing schemas. Due to the nature of these calls, if you have a
272272
high number of tables and schemas, this may have a negative impact on your database performance.
273-
Only tables and schemas for which the user has been granted SELECT privileges are collected.
273+
Only tables and schemas for which the user has been granted SELECT privileges are collected.
274274
275275
See also the MySQL metrics listing: https://docs.datadoghq.com/integrations/mysql/#metrics
276276
value:
@@ -346,7 +346,7 @@ files:
346346
example: false
347347
display_default: false
348348
- name: collect_settings
349-
description: Configure collection of performance_schema.global_variables. This is an alpha feature.
349+
description: Configure collection of performance_schema.global_variables.
350350
options:
351351
- name: enabled
352352
description: |
@@ -490,20 +490,20 @@ files:
490490
example: 10
491491
- name: aws
492492
description: |
493-
This block defines the configuration for AWS RDS and Aurora instances.
494-
495-
Complete this section if you have installed the Datadog AWS Integration
496-
(https://docs.datadoghq.com/integrations/amazon_web_services) to enrich instances
493+
This block defines the configuration for AWS RDS and Aurora instances.
494+
495+
Complete this section if you have installed the Datadog AWS Integration
496+
(https://docs.datadoghq.com/integrations/amazon_web_services) to enrich instances
497497
with MySQL integration telemetry.
498-
498+
499499
These values are only applied when `dbm: true` option is set.
500500
options:
501501
- name: instance_endpoint
502502
description: |
503-
Equal to the Endpoint.Address of the instance the agent is connecting to.
503+
Equal to the Endpoint.Address of the instance the agent is connecting to.
504504
This value is optional if the value of `host` is already configured to the instance endpoint.
505-
506-
For more information on instance endpoints,
505+
506+
For more information on instance endpoints,
507507
see the AWS docs https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html
508508
value:
509509
type: string
@@ -512,17 +512,17 @@ files:
512512
- name: gcp
513513
description: |
514514
This block defines the configuration for Google Cloud SQL instances.
515-
516-
Complete this section if you have installed the Datadog GCP Integration
517-
(https://docs.datadoghq.com/integrations/google_cloud_platform) to enrich instances
515+
516+
Complete this section if you have installed the Datadog GCP Integration
517+
(https://docs.datadoghq.com/integrations/google_cloud_platform) to enrich instances
518518
with MySQL integration telemetry.
519-
519+
520520
These values are only applied when `dbm: true` option is set.
521521
options:
522522
- name: project_id
523523
description: |
524524
Equal to the GCP resource's project ID.
525-
525+
526526
For more information on project IDs,
527527
See the GCP docs https://cloud.google.com/resource-manager/docs/creating-managing-projects
528528
value:
@@ -531,7 +531,7 @@ files:
531531
- name: instance_id
532532
description: |
533533
Equal to the GCP resource's instance ID.
534-
534+
535535
For more information on instance IDs,
536536
See the GCP docs https://cloud.google.com/sql/docs/mysql/instance-settings#instance-id-2ndgen
537537
value:
@@ -541,31 +541,31 @@ files:
541541
- name: azure
542542
description: |
543543
This block defines the configuration for Azure Database for MySQL.
544-
545-
Complete this section if you have installed the Datadog Azure Integration
546-
(https://docs.datadoghq.com/integrations/azure) to enrich instances
544+
545+
Complete this section if you have installed the Datadog Azure Integration
546+
(https://docs.datadoghq.com/integrations/azure) to enrich instances
547547
with MySQL integration telemetry.
548-
548+
549549
These values are only applied when `dbm: true` option is set.
550550
options:
551551
- name: deployment_type
552552
description: |
553-
Equal to the deployment type for the managed database.
554-
553+
Equal to the deployment type for the managed database.
554+
555555
Acceptable values are:
556-
- `flexible_server`
556+
- `flexible_server`
557557
- `single_server`
558558
- `virtual_machine`
559-
560-
For more information on deployment types,
559+
560+
For more information on deployment types,
561561
see the Azure docs https://docs.microsoft.com/en-us/azure/mysql/select-right-deployment-type
562562
value:
563563
type: string
564564
example: flexible_server
565565
- name: fully_qualified_domain_name
566566
description: |
567567
Equal to the full qualified domain name of the Azure MySQL database.
568-
568+
569569
This value is optional if the value of `host` is already configured to the fully qualified domain name.
570570
value:
571571
type: string
@@ -698,7 +698,7 @@ files:
698698
hidden: true
699699
description: |
700700
Set the database instance collection interval (in seconds). The database instance collection sends
701-
basic information about the database instance along with a signal that it still exists.
701+
basic information about the database instance along with a signal that it still exists.
702702
This collection does not involve any additional queries to the database.
703703
value:
704704
type: number

mysql/datadog_checks/mysql/data/conf.yaml.example

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ instances:
287287
## Note that this runs a heavy query against your database to compute the relevant metrics
288288
## for all your existing schemas. Due to the nature of these calls, if you have a
289289
## high number of tables and schemas, this may have a negative impact on your database performance.
290-
## Only tables and schemas for which the user has been granted SELECT privileges are collected.
290+
## Only tables and schemas for which the user has been granted SELECT privileges are collected.
291291
##
292292
## See also the MySQL metrics listing: https://docs.datadoghq.com/integrations/mysql/#metrics
293293
#
@@ -350,7 +350,7 @@ instances:
350350
#
351351
# dbm: false
352352

353-
## Configure collection of performance_schema.global_variables. This is an alpha feature.
353+
## Configure collection of performance_schema.global_variables.
354354
#
355355
# collect_settings:
356356

@@ -478,29 +478,29 @@ instances:
478478
#
479479
# collection_interval: 10
480480

481-
## This block defines the configuration for AWS RDS and Aurora instances.
481+
## This block defines the configuration for AWS RDS and Aurora instances.
482482
##
483-
## Complete this section if you have installed the Datadog AWS Integration
484-
## (https://docs.datadoghq.com/integrations/amazon_web_services) to enrich instances
483+
## Complete this section if you have installed the Datadog AWS Integration
484+
## (https://docs.datadoghq.com/integrations/amazon_web_services) to enrich instances
485485
## with MySQL integration telemetry.
486486
##
487487
## These values are only applied when `dbm: true` option is set.
488488
#
489489
# aws:
490490

491491
## @param instance_endpoint - string - optional - default: mydb.cfxgae8cilcf.us-east-1.rds.amazonaws.com
492-
## Equal to the Endpoint.Address of the instance the agent is connecting to.
492+
## Equal to the Endpoint.Address of the instance the agent is connecting to.
493493
## This value is optional if the value of `host` is already configured to the instance endpoint.
494494
##
495-
## For more information on instance endpoints,
495+
## For more information on instance endpoints,
496496
## see the AWS docs https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html
497497
#
498498
# instance_endpoint: mydb.cfxgae8cilcf.us-east-1.rds.amazonaws.com
499499

500500
## This block defines the configuration for Google Cloud SQL instances.
501501
##
502-
## Complete this section if you have installed the Datadog GCP Integration
503-
## (https://docs.datadoghq.com/integrations/google_cloud_platform) to enrich instances
502+
## Complete this section if you have installed the Datadog GCP Integration
503+
## (https://docs.datadoghq.com/integrations/google_cloud_platform) to enrich instances
504504
## with MySQL integration telemetry.
505505
##
506506
## These values are only applied when `dbm: true` option is set.
@@ -525,23 +525,23 @@ instances:
525525

526526
## This block defines the configuration for Azure Database for MySQL.
527527
##
528-
## Complete this section if you have installed the Datadog Azure Integration
529-
## (https://docs.datadoghq.com/integrations/azure) to enrich instances
528+
## Complete this section if you have installed the Datadog Azure Integration
529+
## (https://docs.datadoghq.com/integrations/azure) to enrich instances
530530
## with MySQL integration telemetry.
531531
##
532532
## These values are only applied when `dbm: true` option is set.
533533
#
534534
# azure:
535535

536536
## @param deployment_type - string - optional - default: flexible_server
537-
## Equal to the deployment type for the managed database.
537+
## Equal to the deployment type for the managed database.
538538
##
539539
## Acceptable values are:
540-
## - `flexible_server`
540+
## - `flexible_server`
541541
## - `single_server`
542542
## - `virtual_machine`
543543
##
544-
## For more information on deployment types,
544+
## For more information on deployment types,
545545
## see the Azure docs https://docs.microsoft.com/en-us/azure/mysql/select-right-deployment-type
546546
#
547547
# deployment_type: flexible_server

postgres/assets/configuration/spec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ files:
77
- name: propagate_agent_tags
88
description: |
99
Set to `true` to propagate the tags from `datadog.yaml` to the check.
10-
When set to `true`, the tags from `datadog.yaml` are added to the check's tags for all instances.
10+
When set to `true`, the tags from `datadog.yaml` are added to the check's tags for all instances.
1111
value:
1212
example: false
1313
type: boolean
@@ -275,7 +275,7 @@ files:
275275
- name: collect_wal_metrics
276276
description: |
277277
Collect metrics about WAL file age.
278-
NOTE:
278+
NOTE:
279279
For Postgres 9.6 and below, you must run the check local to your database if you want to enable this option.
280280
Starting Postgres 10, WAL file metrics are enabled by default using `pg_ls_waldir` and don't need local access.
281281
value:
@@ -527,7 +527,7 @@ files:
527527
type: number
528528
example: 3500
529529
- name: collect_settings
530-
description: Configure collection of pg_settings. This is an alpha feature.
530+
description: Configure collection of pg_settings.
531531
options:
532532
- name: enabled
533533
description: |
@@ -544,7 +544,7 @@ files:
544544
example: 600
545545
- name: ignored_settings_patterns
546546
description: |
547-
A list of setting patterns to ignore. Any setting key matching one of the value in this list will
547+
A list of setting patterns to ignore. Any setting key matching one of the value in this list will
548548
not be collected. This uses the traditional LIKE pattern-matching approach.
549549
value:
550550
type: array

postgres/datadog_checks/postgres/data/conf.yaml.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ init_config:
44

55
## @param propagate_agent_tags - boolean - optional - default: false
66
## Set to `true` to propagate the tags from `datadog.yaml` to the check.
7-
## When set to `true`, the tags from `datadog.yaml` are added to the check's tags for all instances.
7+
## When set to `true`, the tags from `datadog.yaml` are added to the check's tags for all instances.
88
#
99
# propagate_agent_tags: false
1010

@@ -214,7 +214,7 @@ instances:
214214

215215
## @param collect_wal_metrics - boolean - optional - default: false
216216
## Collect metrics about WAL file age.
217-
## NOTE:
217+
## NOTE:
218218
## For Postgres 9.6 and below, you must run the check local to your database if you want to enable this option.
219219
## Starting Postgres 10, WAL file metrics are enabled by default using `pg_ls_waldir` and don't need local access.
220220
#
@@ -405,7 +405,7 @@ instances:
405405
#
406406
# payload_row_limit: 3500
407407

408-
## Configure collection of pg_settings. This is an alpha feature.
408+
## Configure collection of pg_settings.
409409
#
410410
# collect_settings:
411411

@@ -421,7 +421,7 @@ instances:
421421
# collection_interval: 600
422422

423423
## @param ignored_settings_patterns - list of strings - optional
424-
## A list of setting patterns to ignore. Any setting key matching one of the value in this list will
424+
## A list of setting patterns to ignore. Any setting key matching one of the value in this list will
425425
## not be collected. This uses the traditional LIKE pattern-matching approach.
426426
#
427427
# ignored_settings_patterns:

sqlserver/assets/configuration/spec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,10 @@ files:
230230
example: false
231231
- name: index_usage_metrics_interval
232232
description: |
233-
Configure the interval (in seconds) for the collection of index usage statistics from the
234-
`sys.dm_db_index_usage_stats` DMV.
233+
Configure the interval (in seconds) for the collection of index usage statistics from the
234+
`sys.dm_db_index_usage_stats` DMV.
235235
Defaults to 300 seconds (5 minutes). If you intend on updating this value, it is strongly recommended
236-
to use a consistent value throughout all SQL Server agent deployments.
236+
to use a consistent value throughout all SQL Server agent deployments.
237237
value:
238238
type: integer
239239
example: 300
@@ -302,7 +302,7 @@ files:
302302
example: false
303303
display_default: false
304304
- name: collect_settings
305-
description: Configure collection of sys.configurations. This is an alpha feature.
305+
description: Configure collection of sys.configurations.
306306
options:
307307
- name: enabled
308308
description: |
@@ -713,9 +713,9 @@ files:
713713
type: number
714714
example: 1800
715715
display_default: false
716-
- name: schemas_collection
716+
- name: schemas_collection
717717
description: |
718-
Configure collection of schemas. If `database_autodiscovery` is not enabled, data is collected
718+
Configure collection of schemas. If `database_autodiscovery` is not enabled, data is collected
719719
only for the database configured with `database` parameter.
720720
options:
721721
- name: enabled
@@ -732,7 +732,7 @@ files:
732732
example: 600
733733
- name: max_execution_time
734734
description: |
735-
Set the maximum time for schema collection (in seconds). Defaults to 10 seconds.
735+
Set the maximum time for schema collection (in seconds). Defaults to 10 seconds.
736736
Capped by `schemas_collection.collection_interval`
737737
value:
738738
type: number

sqlserver/datadog_checks/sqlserver/data/conf.yaml.example

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@ instances:
217217
# include_index_usage_metrics_tempdb: false
218218

219219
## @param index_usage_metrics_interval - integer - optional - default: 300
220-
## Configure the interval (in seconds) for the collection of index usage statistics from the
221-
## `sys.dm_db_index_usage_stats` DMV.
220+
## Configure the interval (in seconds) for the collection of index usage statistics from the
221+
## `sys.dm_db_index_usage_stats` DMV.
222222
## Defaults to 300 seconds (5 minutes). If you intend on updating this value, it is strongly recommended
223-
## to use a consistent value throughout all SQL Server agent deployments.
223+
## to use a consistent value throughout all SQL Server agent deployments.
224224
#
225225
# index_usage_metrics_interval: 300
226226

@@ -280,7 +280,7 @@ instances:
280280
#
281281
# dbm: false
282282

283-
## Configure collection of sys.configurations. This is an alpha feature.
283+
## Configure collection of sys.configurations.
284284
#
285285
# collect_settings:
286286

@@ -659,7 +659,7 @@ instances:
659659
#
660660
# ignore_missing_database: false
661661

662-
## Configure collection of schemas. If `database_autodiscovery` is not enabled, data is collected
662+
## Configure collection of schemas. If `database_autodiscovery` is not enabled, data is collected
663663
## only for the database configured with `database` parameter.
664664
#
665665
# schemas_collection:
@@ -675,7 +675,7 @@ instances:
675675
# collection_interval: 600
676676

677677
## @param max_execution_time - number - optional - default: 10
678-
## Set the maximum time for schema collection (in seconds). Defaults to 10 seconds.
678+
## Set the maximum time for schema collection (in seconds). Defaults to 10 seconds.
679679
## Capped by `schemas_collection.collection_interval`
680680
#
681681
# max_execution_time: 10

0 commit comments

Comments
 (0)