1
0
Fork 0
HTTP service that returns a list of process' names with boolean values that respectively telling us if process is running or not. For UNIX-like OS only.
Go to file
Alexander Andreev c7fe073623
Code was restructurised again. Moved out back to root dir.
Ditched JSON configuration file. Replaced with simple key = value format. Added indented_output option to format output with indent.
2022-01-02 21:30:56 +04:00
contrib Moving aux files into contrib dir. Added PKGBULD for Archlinux. 2022-01-02 02:57:57 +04:00
.gitignore [.gitignore] Let it suite this project already. 2021-12-24 21:11:22 +04:00
LICENSE License is switched to MIT+NIGGER. :) 2022-01-02 05:13:20 +04:00
Makefile Now also store a copy of license when installing. 2022-01-02 05:32:00 +04:00
README.md Added license notice to README. 2022-01-02 05:15:29 +04:00
confguration.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00
errors.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00
go.mod Initial commit. 2021-03-13 03:17:30 +04:00
main.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00
processlist.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00
server.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00
util.go Code was restructurised again. Moved out back to root dir. 2022-01-02 21:30:56 +04:00

README.md

httpprocwatchd Ver 1.3

License: MIT+NIGGER.

This utility provides a HTTP /processes GET endpoint that returns a list of processes and if they are currently running or not.

A list of processes could be in JSON or XML format, By default JSON being returned. To get XML you need to provide a Accept: application/xml header in GET reqest.

A JSON object looks like this: { "process": true|false, ... }.

And XML <ProcessList><Process name="process">true|false</Process>...</ProcessList>.

Configuration file is a simple JSON object consisting of listen_address string field in form "[<ip|host>]:<port>". And processes array of process names.