https://github.com/eaudeweb/edw.recipe.responsecheck
https://github.com/eaudeweb/edw.recipe.responsecheck
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eaudeweb/edw.recipe.responsecheck
- Owner: eaudeweb
- Created: 2014-08-12T14:15:16.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-13T08:05:54.000Z (almost 12 years ago)
- Last Synced: 2026-01-02T00:41:24.085Z (6 months ago)
- Language: Python
- Size: 137 KB
- Stars: 0
- Watchers: 25
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Introduction
************
This recipe can be used to generate a bash script that can test connectivity to application servers.
.. contents::
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.