Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand list of error categories #332

Merged
merged 2 commits into from
May 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions docs/specs/categories.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,21 @@ implicit expected `level` values, indicated by '(**LEVEL**)' in the hierarchy be

* _system_: Basic system operation
* _base_: Baseline system operational messages
* _start_: System is in the process of (re)starting and essentially offline
* _ready_: System is fully ready for operation
* _start_ (**NOTICE**): System is in the process of (re)starting and essentially offline
* _shutdown_ (**NOTICE**): System is shutting down
* _ready_: (**NOTICE**): System is fully ready for operation
* _comms_: Baseline message handling
* _config_: Configuration message handling
* _receive_: Receiving a config message
* _parse_: Parsing a receved message
* _apply_: Application of a parsed config message
* _receive_: (**DEBUG**) Receiving a config message
* _parse_: (**DEBUG**) Parsing a received message
* _apply_: (**NOTICE**) Application of a parsed config message
* _network_: Network (IP) message handling
* _connect_: (**NOTICE**) Connected to the network
* _disconnect_: (**NOTICE**) Disconnected from a network
* _auth_: Authentication to local application (e.g. web server, SSH)
* _login_: (**NOTICE**) Successful login. The entry message should include the username and application
* _logout_: (**NOTICE**) Successful logout
* _fail_: (**WARNING**) Failed authentication attempt. The entry message should include the application
* _pointset_: Handling managing data point conditions
* _point_: Conditions relating to a specific point, the entry `message` field should
start with "Point _pointname_" followed by descriptive information.
Expand Down