Skip to content

PrtgAPI 0.9.14

Compare
Choose a tag to compare
@lordmilko lordmilko released this 25 Nov 10:31

Improvements

General

  • Implemented ClusterNode property on Log objects

C#

  • Implemented FlagEnum.Create static methods for creating FlagEnum<T> objects

PowerShell

  • Implemented support for specifying null or empty passwords to New-Credential
  • Implemented -Hashtable parameter on New-SensorFactoryDefinition. Allows generating complex sensor factory definitions in a single go that would normally require multiple New-SensorFactoryDefinition invocations
    C:\> Get-Sensor -Tags wmimem* | fdef @{name={$_.Device}},@{name="Line at 40.2 [msec]";value=40.2}
  • Implemented PowerShell type conversion on cmdlet parameters that internally get passed to other cmdlets (such as New-Sensor -Factory ..., which involves internally invoking New-SensorFactoryDefinition)

Bugfixes

General

  • Fix API requests involving cookies not working when a user incorrectly specifies to use http:// instead of https:// against a HTTPS PRTG server (Fix #181)
  • Fixed notification action property categories (Email, SMS, etc) not triggering lazy loads on NotificationAction objects retrieved notification triggers
  • Fix ServerStatus.DateTime crashing when the server DateTime format differs from the client format (e.g. US vs UK time format)

PowerShell

  • Fix Get-Sensor not retrieving sensors from groups via intermediate devices when specifying -Recurse:$false (Fix #159)