Get All Hosts in One Project
On this page
Note
Groups and projects are synonymous terms. Your {PROJECT-ID}
is the
same as your project id. For existing groups, your group/project id
remains the same. This page uses the more familiar term group when
referring to descriptions. The endpoint remains as stated in the
document.
Get all MongoDB hosts in a project. Use the CLUSTER-ID query parameter to only get the hosts that belong to the specified cluster. The response sorts the hosts alphabetically by HOSTNAME:PORT.
Base URL: https://{OPSMANAGER-HOST}:{PORT}/api/public/v1.0
Resource
GET /groups/{PROJECT-ID}/hosts
GET /groups/{PROJECT-ID}/hosts?clusterId={CLUSTER-ID}
Request Path Parameters
Parameter | Type | Necessity | Description |
---|---|---|---|
PROJECT-ID | string | Required | Unique identifier of the project that owns this MongoDB host. |
Request Query Parameters
Name | Type | Necessity | Description | Default |
---|---|---|---|---|
pageNum | number | Optional | One-based integer that returns a subsection of results. |
|
itemsPerPage | number | Optional | Number of items to return per page, up to a maximum of 500. |
|
pretty | boolean | Optional | Flag that indicates whether the response body should be in a prettyprint format. |
|
envelope | boolean | Optional | Flag that indicates whether or not to wrap the response in an envelope. Some API clients cannot access the HTTP response headers or
status code. To remediate this, set For endpoints that return a list of results, the |
|
Parameter | Type | Necessity | Description |
---|---|---|---|
CLUSTER-ID | string | Required | Unique identifier of the cluster in which this MongoDB process belongs. |
Request Body Parameters
This endpoint doesn't use HTTP request body parameters.
Response
Response Document
The response JSON document includes an array of result objects, an array of link objects and a count of the total number of result objects retrieved.
Name | Type | Description |
---|---|---|
| array | Array includes one object for each item detailed in the
|
| array | Array includes one or more links to sub-resources and/or related resources. The relations between URLs are explained in the Web Linking Specification. |
| number | Integer count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated. |
results
Embedded Document
Each result is one host.
Name | Type | Description |
---|---|---|
aliases | array of strings | Array of alternate hostname and port combinations that Ops Manager discovered for the MongoDB process. These combinations can include hostnames, FQDNs, IPv4 addresses, and IPv6 addresses. |
alertsEnabled | boolean |
|
authMechanismName | string | Authentication mechanism used to connect to this MongoDB process. This displays only one of the following values:
|
clusterId | string | Unique identifier of the cluster to which the MongoDB process belongs. |
created | date | Date Ops Manager created or first discovered this MongoDB process. |
groupId | string | Unique identifier of the group that owns this host. |
hasStartupWarnings | boolean |
|
hidden | boolean |
|
hiddenSecondary | boolean |
|
hostEnabled | boolean |
|
hostname | string | Primary hostname as Ops Manager can best determine. This can be a hostname, an FQDN, an IPv4 address, or an IPv6 address. |
id | string | Unique identifier. |
ipAddress | string | IPv4 or IPv6 address associated with the |
journalingEnabled | boolean |
|
lastDataSizeBytes | number | Uncompressed size of the host's databases on disk in
bytes excluding indexes. |
lastIndexSizeBytes | number | Uncompressed size of the host's database indexes on disk in bytes. This number does not include the size of the index for the local database. |
lastPing | date | Timestamp in ISO 8601 date and time format in UTC when the last ping for this MongoDB process was received. |
lastRestart | date | Timestamp in ISO 8601 date and time format in UTC when this process last restarted. If the
MongoDB process has never been restarted, the |
links | array | Array that includes one or more links to sub-resources and/or
related resources. The relations between URLs are explained
in the Web Linking Specification. At minimum, a
|
logsEnabled | boolean |
|
lowUlimit | boolean |
|
port | number | Port on which the MongoDB process listens. |
profilerEnabled | boolean |
|
replicaSetName | string | Name of the replica set this process belongs to. Only present if this process is part of a replica set. |
replicaStateName | string | Current state of this MongoDB process within a replica set. Only present if this process is part of a replica set. See Replica Set Member States for possible values. |
shardName | string | Name of the shard to which this process belongs. Only present if the process is part of a sharded cluster. |
secondaryDelaySecs | number | Number of seconds this replica set member's data
trails the primary. If this value is set to |
sslEnabled | boolean |
|
systemInfo | object | Object that contains RAM and CPU information for this MongoDB process' server as reported by the operating system or container. |
systemInfo.memSizeMB | number | Amount of RAM in megabytes. |
systemInfo.numCores | number | Number of CPU cores. |
typeName | string | Type for this MongoDB process. Possible values are:
The type for new hosts added to Ops Manager will be |
uptimeMsec | number | Number of milliseconds since this process last restarted. |
version | string | Version of MongoDB running for this process. |
Note
Some hosts don't return clusterId. This occurs when a mongos
process routes data operations to shards that don't store data.
Ops Manager doesn't assign a clusterId to some non-data bearing nodes.
Example Request
curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" --digest \ --header "Accept: application/json" \ --include \ --request GET "https://{OPSMANAGER-HOST}:{PORT}/api/public/v1.0/groups/{PROJECT-ID}/hosts?pretty=true"
Example Response
Response Header
401 Unauthorized Content-Type: application/json;charset=ISO-8859-1 Date: {dateInUnixFormat} WWW-Authenticate: Digest realm="MMS Public API", domain="", nonce="{nonce}", algorithm=MD5, op="auth", stale=false Content-Length: {requestLengthInBytes} Connection: keep-alive
200 OK Vary: Accept-Encoding Content-Type: application/json Strict-Transport-Security: max-age=300 Date: {dateInUnixFormat} Connection: keep-alive Content-Length: {requestLengthInBytes} X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion}
Response Body
1 { 2 "totalCount" : 2, 3 "results" : [ 4 { 5 "alertsEnabled" : true, 6 "aliases": [ "{HOSTNAME}:26000", "{IP-ADDRESS}:26000" ], 7 "authMechanismName" : "SCRAM-SHA-1", 8 "clusterId" : "{CLUSTER-ID}", 9 "created" : "2024-04-22T19:56:50Z", 10 "groupId" : "{PROJECT-ID}", 11 "hasStartupWarnings" : false, 12 "hidden" : false, 13 "hostEnabled" : true, 14 "hostname" : "{HOSTNAME}", 15 "id" : "{HOST-ID}", 16 "ipAddress": "127.0.0.1", 17 "journalingEnabled" : false, 18 "lastDataSizeBytes" : 633208918, 19 "lastIndexSizeBytes" : 101420524, 20 "lastPing" : "2024-08-18T11:23:41Z", 21 "links" : [ ], 22 "logsEnabled" : false, 23 "lowUlimit" : false, 24 "muninEnabled" : false, 25 "port" : 26000, 26 "profilerEnabled" : false, 27 "replicaSetName": "rs1", 28 "replicaStateName" : "PRIMARY", 29 "sslEnabled" : true, 30 "systemInfo" : { 31 "memSizeMB" : 65536, 32 "numCores" : 16 33 }, 34 "typeName": "REPLICA_PRIMARY", 35 "uptimeMsec": 1827300394, 36 "username" : "mongo", 37 "version" : "4.4.0" 38 }, 39 { 40 41 } 42 ] 43 }
Note
Although Ops Manager returns muninEnabled in the response, Munin is unsupported as of Ops Manager 4.4.