Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"id": 6029219956940210,
"definition": {
"type": "image",
"url": "https://www.blazemeter.com/sites/default/themes/custom/blazemeter/logo.svg",
"url": "/static/images/logos/blazemeter_large.svg",
"url_dark_theme": "",
"sizing": "contain",
"margin": "sm",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"id": 8959109568455754,
"definition": {
"type": "image",
"url": "https://www.blazemeter.com/sites/default/themes/custom/blazemeter/logo.svg",
"url": "/static/images/logos/blazemeter_large.svg",
"url_dark_theme": "",
"sizing": "contain",
"margin": "sm",
Expand Down
Binary file modified blazemeter/images/blazemeter_functional_test_results_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified blazemeter/images/blazemeter_performance_test_results_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion mongo/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ files:
type: boolean
example: false
- name: schemas
hidden: true
deprecation:
Agent version: 7.69.0
Migration: Use `collect_schemas` instead.
Expand Down
48 changes: 48 additions & 0 deletions mongo/datadog_checks/mongo/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,54 @@ instances:
#
# collect_search_indexes: false

## DEPRECATED: Use `collect_schemas` instead.
## Configure collection of MongoDB schemas (inferred) by sampling documents.
##
##
## <<< DEPRECATED >>>
##
## Agent version: 7.69.0
## Migration: Use `collect_schemas` instead.
#
# schemas:

## @param enabled - boolean - optional - default: true
## Enable collection of schemas. Requires `dbm: true`.
#
# enabled: true

## @param collection_interval - number - optional - default: 3600
## Set the schemas collection interval in seconds. Each collection involves sampling documents
## from collections and inferring schemas.
#
# collection_interval: 3600

## @param sample_size - number - optional - default: 10
## Set the sample size for each collection. The sample size is the number of documents to sample
## from each collection.
## NOTE: Increasing the sample size for better schema inference accuracy may impact performance.
#
# sample_size: 10

## @param max_collections - number - optional
## Set the maximum number of collections to collect schemas from per interval. The maxium number of collections
## per database is bounded by `database_autodiscovery.max_collections_per_database`. By setting this option, you
## are adding an additional limit to the total number of collections across all monitored databases that schemas
## will be collected from. By default, this option is not set.
#
# max_collections: 300

## @param max_depth - number - optional - default: 5
## Set the maximum depth of nested documents to sample.
#
# max_depth: 5

## @param collect_search_indexes - boolean - optional - default: false
## Set to `true` to collect search indexes for each collection.
## NOTE: This option is only applicable to MongoDB Atlas clusters.
#
# collect_search_indexes: false

## @param replica_check - boolean - optional - default: true
## Whether or not to read from available replicas.
## Disable this if any replicas are inaccessible to the Agent. This option is not supported for sharded clusters.
Expand Down
1 change: 0 additions & 1 deletion mysql/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,6 @@ files:
type: number
example: 60
- name: schemas_collection
hidden: true
deprecation:
Agent version: 7.69.0
Migration: Use `collect_schemas` instead.
Expand Down
28 changes: 28 additions & 0 deletions mysql/datadog_checks/mysql/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,34 @@ instances:
#
# max_execution_time: 60

## DEPRECATED: Use `collect_schemas` instead.
## Configure collection of schemas (databases).
## Only tables and schemas for which the user has been granted SELECT privileges are collected.
##
##
## <<< DEPRECATED >>>
##
## Agent version: 7.69.0
## Migration: Use `collect_schemas` instead.
#
# schemas_collection:

## @param enabled - boolean - optional - default: false
## Enable schema collection. Requires `dbm: true`. Defaults to false.
#
# enabled: false

## @param collection_interval - number - optional - default: 600
## Set the database schema collection interval (in seconds). Defaults to 600 seconds.
#
# collection_interval: 600

## @param max_execution_time - number - optional - default: 60
## Set the maximum time for schema collection (in seconds). Defaults to 60 seconds.
## Capped by `schemas_collection.collection_interval`
#
# max_execution_time: 60

## Configure collection of query metrics
#
# query_metrics:
Expand Down
Loading
Loading