Conventions
Always favour convention over configuration. And any configuration should have sensible defaults.
Naming Conventions
Resources
The key alert attribute name of resource
was specifically chosen
so as not to be host centric. A resource can be a hostname, but it
might also be an EC2 instance ID, a Docker container ID or some other
type of non-host unique identifier.
Environments & Services
The environment attribute is used to namespace
the alert resource. This allows you to have two resources with the same
name (eg. web01
) but that are differentiated by their environments
(eg. Production
and Development
).
Choose a set of environments and enforce them. ie. PROD
, DEV
or Production
, Development
but not both. The same for services
eg. MobileAPI
, Mobile-API
and mobile api
are all valid
but needlessly different and impossible to query for consistently
or generate aggregate metrics for.
Note that the service attribute is a list because it is common for infrastructure (ie. a resource) to be used by more than one service. That is, if a component failure occurs that problem could cause an outage in multiple services.
Event Names
It can be useful to define a convention when it comes to naming events. Possible options are:
Camel case -
DiskUtilHigh
Hierarchy -
NW:INTERFACE:DOWN
SNMP -
cpuAlarmHigh
Querying for all Disk utilisation alerts using the alerta
CLI
is then relatively straight-forward::
$ alerta query --filter event=~DiskUtil
Event Groups
Another consideration is to ensure you make use of the event group which gives you the ability to group related alerts.
Some suggested event groups with possible events are listed below.
Event Groups |
Events (examples) |
---|---|
|
failures with entire services |
|
errors from application logs |
|
disk space, time sync failing |
|
system load, swap utilisation high |
|
config mgmt tool alerts eg. Puppet or Chef |
|
web server errors |
|
unix system log messages |
|
hardware errors |
|
NFS, SAN, NAS storage infrastructure |
|
database errors, table space utilisation |
|
security/authorization messages |
|
network devices and infrastructure |
|
cloud-based services or infrastructure |
Querying for all performance-related alerts using the alerta
CLI
could then become::
$ alerta query --filter group=Performance
Severity Levels
Agree on a subset of severity levels and be consistent with what they mean. For example, if severity levels are used consistently then integrating with a paging or email system becomes easier.
Severity |
Service Level |
Notification |
---|---|---|
|
service unavailable |
immediate page out |
|
service impaired still available |
page during business hours |
|
component failure |
email only |
|
everything else |
consolidate into daily email |
Enforcing Conventions
Once a set of naming conventions are agreed, they can be enforced by
using a simple “pre-receive” plugin, similar to a git
hook.
A full working example called reject can be found in the plugins
directory of the project code repository and is installed by default.
The server configuration settings ORIGIN_BLACKLIST
and
ALLOWED_ENVIRONMENTS
can be used to tailor it for your
circumstances or it can be disabled completely.