Skip to content

cdhunt/posh-pingdom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

posh-pingdom

API Wrapper for Pingdom

https://www.pingdom.com/features/api/documentation/

Implemented Interfaces

  • Get-PingdomActions API
  • Get-PingdomAnalysis API
  • Get-PingdomAnalysisRaw API
  • Get-PingdomCheck API
  • New-PingdomCheck API
  • Set-PingdomCheck API
  • Set-PingdomBulkCheck API

Examples

# View A List of Checks
$secpasswd = ConvertTo-SecureString 'password' -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential ('username', $secpasswd)

$authParams = @{Credential = $cred
            ApiKey = "abc123xyz456"}

$checks = Get-PingdomCheck @authParams

$checks.checks | select Name, Hostname, @{n="LastTestTime";e={ConvertFrom-UnixTimestamp -TimeStamp $_.lasttesttime}}, Status | ft -AutoSize

About

API Wrapper for Pingdom

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages