Skip to content

Commit

Permalink
sync config
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zhengda committed Oct 25, 2024
1 parent ad6723c commit f730104
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions mongo/datadog_checks/mongo/config_models/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class Aws(BaseModel):
arbitrary_types_allowed=True,
frozen=True,
)
cluster_identifier: Optional[str] = None
instance_endpoint: Optional[str] = None
documentdb_cluster_identifier: Optional[str] = None
documentdb_instance_endpoint: Optional[str] = None


class Field(BaseModel):
Expand Down
8 changes: 4 additions & 4 deletions mongo/datadog_checks/mongo/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -356,23 +356,23 @@ instances:
#
# aws:

## @param instance_endpoint - string - optional - default: mydocdb.c0xa1xvklawc.us-east-1.docdb.amazonaws.com
## @param documentdb_instance_endpoint - string - optional - default: mydocdb.c0xa1xvklawc.us-east-1.docdb.amazonaws.com
## Equal to the Endpoint.Address of the instance the agent is connecting to.
## This value is optional if the value of `host` is already configured to the instance endpoint.
##
## For more information on instance endpoints,
## see the AWS docs https://docs.aws.amazon.com/documentdb/latest/developerguide/API_Endpoint.html
#
# instance_endpoint: mydocdb.c0xa1xvklawc.us-east-1.docdb.amazonaws.com
# documentdb_instance_endpoint: mydocdb.c0xa1xvklawc.us-east-1.docdb.amazonaws.com

## @param cluster_identifier - string - optional - default: mydocdb
## @param documentdb_cluster_identifier - string - optional - default: mydocdb
## Equal to the Cluster identifier of the instance the agent is connecting to.
## This value is optional if the value of `cluster_name` is already configured to the cluster identifier.
##
## For more information on cluster identifiers,
## see the AWS docs https://docs.aws.amazon.com/documentdb/latest/developerguide/API_DBCluster.html
#
# cluster_identifier: mydocdb
# documentdb_cluster_identifier: mydocdb

## @param server - string - optional
## Specify the MongoDB URI, with database to use for reporting (defaults to "admin")
Expand Down

0 comments on commit f730104

Please sign in to comment.