Pingdom¶
The Pingdom provider implements support for the Pingdom website monitoring service.
Usage¶
The Pingdom provider is implemented as a plugin. To use it add the plugin to your init file.
It uses the format @plugin: gyro:gyro-azure-provider:<version>
.
@repository: 'https://artifactory.psdops.com/gyro-releases'
@plugin: 'gyro:gyro-pingdom-provider:0.99.0'
This lets Gyro load the Pingdom provider plugin and lets you start managing Pingdom resources using Gyro.
Authentication¶
The Pingdom provider expects credentials to be in Java properties file format. The
app-key
, email
, and password
are required.
Example credentials.props file:
app-key=iFi1Ueyaiyaihah4oeheu1walohweish
email=user@example.com
password=eic6paoHecieShooLe3eah2xiequ7ahc
Then use these credentials in .gyro/init.gyro
in your Gyro project:
@credentials pingdom::credentials
credentials-file-path: "/path/to/credentials.props"
@end