Skip to content

eaudeweb/edw.recipe.responsecheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This recipe can be used to generate a bash script that can test connectivity to application servers.

Example of usage

A simple buildout.cfg:

[buildout]
parts = checker

[checker]
recipe = edw.recipe.responsecheck
start-port = 8000
end-port = 9000
step = 2
backends = backend1 ... backend2
path = ${buildout:directory}/bin

Recipe options

Explanation:

start-port = Port to start the check.
end-port   = Port to end the check.
step       = The numeric value that the count is increased by each loop.
backends   = List of backend names separated by space character.
path       = Path to a folder where the bash script will be saved.

Note: All options must be specified.

Final result

This recipe will generate a bash script that for each specified backend will test connectivity to every port from start-port to end-port with the specified step.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages