Chilkat Online Tools

Powershell / MongoDB Atlas / Get Measurements of a Database for a MongoDB Process

Back to Collection Items

Add-Type -Path "C:\chilkat\ChilkatDotNet47-9.5.0-x64\ChilkatDotNet47.dll"

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$http = New-Object Chilkat.Http

$http.DigestAuth = $true
$http.Login = "username"
$http.Password = "password"

$queryParams = New-Object Chilkat.JsonObject
$queryParams.UpdateString("granularity","PT1M")
$queryParams.UpdateString("period","PT1M")

$resp = $http.QuickRequestParams("GET","https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/databases/{{DATABASE-NAME}}/measurements",$queryParams)
if ($http.LastMethodSuccess -eq $false) {
    $($http.LastErrorText)
    exit
}

$($resp.StatusCode)
$($resp.BodyStr)

Curl Command

curl -G -d "granularity=PT1M"
	-d "period=PT1M"
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/databases/{{DATABASE-NAME}}/measurements

Postman Collection Item JSON

{
  "name": "Get Measurements of a Database for a MongoDB Process",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/processes/{{PROCESS-HOST}}:{{PROCESS-PORT}}/databases/{{DATABASE-NAME}}/measurements?granularity=PT1M&period=PT1M",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "processes",
        "{{PROCESS-HOST}}:{{PROCESS-PORT}}",
        "databases",
        "{{DATABASE-NAME}}",
        "measurements"
      ],
      "query": [
        {
          "key": "granularity",
          "value": "PT1M"
        },
        {
          "key": "period",
          "value": "PT1M"
        }
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/process-databases-measurements/"
  },
  "response": [
  ]
}