32 lines
1.2 KiB
Go
32 lines
1.2 KiB
Go
/*
|
|
httpprocwatchd provides HTTP interface to a list of process' statuses
|
|
formatted as JSON.
|
|
Copyright (c) 2021 Alexander "Arav" Andreev <me@arav.top>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
// ErrPgrepNotFound occurs when pgrep program is not found.
|
|
var ErrPgrepNotFound = errors.New("pgrep not found")
|
|
|
|
// ErrNotFound occurs when a process is not presented in a list
|
|
var ErrNotFound = errors.New("process is not on list")
|
|
|
|
// ErrIsOnList occurs when a process is already presented in a list
|
|
var ErrIsOnList = errors.New("process is already on list")
|