├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Media └── logo.png ├── README.md ├── TestArtifacts ├── OVFModules │ ├── OVF.Example1 │ │ ├── ConfigurationData.psd1 │ │ ├── Diagnostics │ │ │ └── Simple │ │ │ │ └── storage.capacity.tests.ps1 │ │ └── OVF.Example1.psd1 │ ├── OVF.Example2 │ │ ├── Diagnostics │ │ │ ├── Comprehensive │ │ │ │ └── more.services.tests.ps1 │ │ │ └── Simple │ │ │ │ └── critical.services.tests.ps1 │ │ └── OVF.Example2.psd1 │ └── ovf.example.modules.psdeploy.ps1 ├── inline_test.ps1 ├── moretests │ └── myother.watchmen.ps1 ├── multipleovf.watchmen.ps1 ├── my.watchmentests.ps1 ├── notify.ps1 ├── ovf_pipeline_test.ps1 └── singleovf.watchmen.ps1 ├── Tests ├── Help.tests.ps1 ├── Manifest.Tests.ps1 ├── Meta.tests.ps1 ├── MetaFixers.psm1 └── Public │ ├── Email.tests.ps1 │ ├── EventLog.tests.ps1 │ ├── FromSource.tests.ps1 │ ├── Get-WatchmenTest.tests.ps1 │ ├── InfluxDB.tests.ps1 │ ├── Invoke-WatchmenTest.tests.ps1 │ ├── LogFile.tests.ps1 │ ├── Notifies.tests.ps1 │ ├── Parameters.tests.ps1 │ ├── PowerShell.tests.ps1 │ ├── Slack.tests.ps1 │ ├── Syslog.tests.ps1 │ ├── Test.tests.ps1 │ ├── TestType.tests.ps1 │ ├── Version.ps1 │ └── When.tests.ps1 ├── Watchmen ├── OperationValidation.Format.ps1xml ├── Private │ ├── Assert-InWatchmen.ps1 │ ├── Convert-TestResult.ps1 │ ├── ConvertFrom-PlaceholderString.ps1 │ ├── Get-OvfTestInfo.ps1 │ ├── Get-TestFromScript.ps1 │ ├── GetOperationValidation.ps1 │ ├── Initialize-Watchmen.ps1 │ ├── Install-OvfModule.ps1 │ ├── Invoke-OvfTest.ps1 │ ├── Invoke-WatchmeNotifier.ps1 │ ├── InvokeOperationValidation.ps1 │ ├── New-OperationValidationFailure.ps1 │ ├── New-OperationValidationInfo.ps1 │ ├── New-OperationValidationResult.ps1 │ └── Notifiers │ │ ├── Invoke-NotifierEmail.ps1 │ │ ├── Invoke-NotifierEventLog.ps1 │ │ ├── Invoke-NotifierInfluxDB.ps1 │ │ ├── Invoke-NotifierLogFile.ps1 │ │ ├── Invoke-NotifierPowerShell.ps1 │ │ ├── Invoke-NotifierSlack.ps1 │ │ └── Invoke-NotifierSyslog.ps1 ├── Public │ ├── Email.ps1 │ ├── EventLog.ps1 │ ├── Get-WatchmenTest.ps1 │ ├── InfluxDB.ps1 │ ├── Invoke-WatchmenTest.ps1 │ ├── LogFile.ps1 │ ├── Notifies.ps1 │ ├── PowerShell.ps1 │ ├── Slack.ps1 │ ├── Syslog.ps1 │ ├── TestType.ps1 │ ├── WatchmenOptions.ps1 │ ├── WatchmenTest.ps1 │ ├── When.ps1 │ ├── fromsource.ps1 │ ├── parameters.ps1 │ ├── test.ps1 │ └── version.ps1 ├── Watchmen.psd1 ├── Watchmen.psm1 └── en-US │ └── Watchmen-help.xml ├── appveyor.yml ├── docs ├── concepts.md ├── functions │ ├── Get-WatchmenTest.md │ ├── Help-Email.md │ ├── Help-EventLog.md │ ├── Help-FromSource.md │ ├── Help-InfluxDB.md │ ├── Help-LogFile.md │ ├── Help-Notifies.md │ ├── Help-Parameters.md │ ├── Help-PowerShell.md │ ├── Help-Slack.md │ ├── Help-Syslog.md │ ├── Help-Test.md │ ├── Help-TestType.md │ ├── Help-Version.md │ ├── Help-WatchmenOptions.md │ ├── Help-WatchmenTest.md │ ├── Help-When.md │ └── Invoke-WatchmenTest.md └── index.md ├── mkdocs.yml ├── module.psdeploy.ps1 └── psake.ps1 /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Media/logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/README.md -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example1/ConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example1/ConfigurationData.psd1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example1/Diagnostics/Simple/storage.capacity.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example1/Diagnostics/Simple/storage.capacity.tests.ps1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example1/OVF.Example1.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example1/OVF.Example1.psd1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example2/Diagnostics/Comprehensive/more.services.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example2/Diagnostics/Comprehensive/more.services.tests.ps1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example2/Diagnostics/Simple/critical.services.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example2/Diagnostics/Simple/critical.services.tests.ps1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/OVF.Example2/OVF.Example2.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/OVF.Example2/OVF.Example2.psd1 -------------------------------------------------------------------------------- /TestArtifacts/OVFModules/ovf.example.modules.psdeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/OVFModules/ovf.example.modules.psdeploy.ps1 -------------------------------------------------------------------------------- /TestArtifacts/inline_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/inline_test.ps1 -------------------------------------------------------------------------------- /TestArtifacts/moretests/myother.watchmen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/moretests/myother.watchmen.ps1 -------------------------------------------------------------------------------- /TestArtifacts/multipleovf.watchmen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/multipleovf.watchmen.ps1 -------------------------------------------------------------------------------- /TestArtifacts/my.watchmentests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/my.watchmentests.ps1 -------------------------------------------------------------------------------- /TestArtifacts/notify.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "I'm a script: $($args[0])" 2 | -------------------------------------------------------------------------------- /TestArtifacts/ovf_pipeline_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/ovf_pipeline_test.ps1 -------------------------------------------------------------------------------- /TestArtifacts/singleovf.watchmen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/TestArtifacts/singleovf.watchmen.ps1 -------------------------------------------------------------------------------- /Tests/Help.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Help.tests.ps1 -------------------------------------------------------------------------------- /Tests/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Meta.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Meta.tests.ps1 -------------------------------------------------------------------------------- /Tests/MetaFixers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/MetaFixers.psm1 -------------------------------------------------------------------------------- /Tests/Public/Email.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Email.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/EventLog.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/EventLog.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/FromSource.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/FromSource.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Get-WatchmenTest.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Get-WatchmenTest.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/InfluxDB.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/InfluxDB.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Invoke-WatchmenTest.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Invoke-WatchmenTest.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/LogFile.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/LogFile.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Notifies.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Notifies.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Parameters.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Parameters.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/PowerShell.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/PowerShell.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Slack.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Slack.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Syslog.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Syslog.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Test.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Test.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/TestType.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/TestType.tests.ps1 -------------------------------------------------------------------------------- /Tests/Public/Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/Version.ps1 -------------------------------------------------------------------------------- /Tests/Public/When.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Tests/Public/When.tests.ps1 -------------------------------------------------------------------------------- /Watchmen/OperationValidation.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/OperationValidation.Format.ps1xml -------------------------------------------------------------------------------- /Watchmen/Private/Assert-InWatchmen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Assert-InWatchmen.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Convert-TestResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Convert-TestResult.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/ConvertFrom-PlaceholderString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/ConvertFrom-PlaceholderString.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Get-OvfTestInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Get-OvfTestInfo.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Get-TestFromScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Get-TestFromScript.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/GetOperationValidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/GetOperationValidation.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Initialize-Watchmen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Initialize-Watchmen.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Install-OvfModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Install-OvfModule.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Invoke-OvfTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Invoke-OvfTest.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Invoke-WatchmeNotifier.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Invoke-WatchmeNotifier.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/InvokeOperationValidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/InvokeOperationValidation.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/New-OperationValidationFailure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/New-OperationValidationFailure.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/New-OperationValidationInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/New-OperationValidationInfo.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/New-OperationValidationResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/New-OperationValidationResult.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierEmail.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierEventLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierEventLog.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierInfluxDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierInfluxDB.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierLogFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierLogFile.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierPowerShell.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierSlack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierSlack.ps1 -------------------------------------------------------------------------------- /Watchmen/Private/Notifiers/Invoke-NotifierSyslog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Private/Notifiers/Invoke-NotifierSyslog.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Email.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Email.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/EventLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/EventLog.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Get-WatchmenTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Get-WatchmenTest.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/InfluxDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/InfluxDB.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Invoke-WatchmenTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Invoke-WatchmenTest.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/LogFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/LogFile.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Notifies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Notifies.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/PowerShell.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Slack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Slack.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/Syslog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/Syslog.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/TestType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/TestType.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/WatchmenOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/WatchmenOptions.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/WatchmenTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/WatchmenTest.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/When.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/When.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/fromsource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/fromsource.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/parameters.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/test.ps1 -------------------------------------------------------------------------------- /Watchmen/Public/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Public/version.ps1 -------------------------------------------------------------------------------- /Watchmen/Watchmen.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Watchmen.psd1 -------------------------------------------------------------------------------- /Watchmen/Watchmen.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/Watchmen.psm1 -------------------------------------------------------------------------------- /Watchmen/en-US/Watchmen-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/Watchmen/en-US/Watchmen-help.xml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/concepts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/functions/Get-WatchmenTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Get-WatchmenTest.md -------------------------------------------------------------------------------- /docs/functions/Help-Email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Email.md -------------------------------------------------------------------------------- /docs/functions/Help-EventLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-EventLog.md -------------------------------------------------------------------------------- /docs/functions/Help-FromSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-FromSource.md -------------------------------------------------------------------------------- /docs/functions/Help-InfluxDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-InfluxDB.md -------------------------------------------------------------------------------- /docs/functions/Help-LogFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-LogFile.md -------------------------------------------------------------------------------- /docs/functions/Help-Notifies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Notifies.md -------------------------------------------------------------------------------- /docs/functions/Help-Parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Parameters.md -------------------------------------------------------------------------------- /docs/functions/Help-PowerShell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-PowerShell.md -------------------------------------------------------------------------------- /docs/functions/Help-Slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Slack.md -------------------------------------------------------------------------------- /docs/functions/Help-Syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Syslog.md -------------------------------------------------------------------------------- /docs/functions/Help-Test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Test.md -------------------------------------------------------------------------------- /docs/functions/Help-TestType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-TestType.md -------------------------------------------------------------------------------- /docs/functions/Help-Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-Version.md -------------------------------------------------------------------------------- /docs/functions/Help-WatchmenOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-WatchmenOptions.md -------------------------------------------------------------------------------- /docs/functions/Help-WatchmenTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-WatchmenTest.md -------------------------------------------------------------------------------- /docs/functions/Help-When.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Help-When.md -------------------------------------------------------------------------------- /docs/functions/Invoke-WatchmenTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/functions/Invoke-WatchmenTest.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /module.psdeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/module.psdeploy.ps1 -------------------------------------------------------------------------------- /psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devblackops/watchmen/HEAD/psake.ps1 --------------------------------------------------------------------------------