Sensu client no longer fails to validate the client configuration when the automatic per-client subscription is the client's only subscription.
Sensu check extension executions are now properly tracked and the Sensu client now guards against multiple concurrent executions of the same extension.
Adjusted regular expression pattern to completely address scenarios where
valid subscription names were not allowed via API
/silenced/subscriptions/:subscription
endpoint, e.g.
client:foo-bar-baz
.
Added logic to ensure proxy clients receive a per-client subscription upon creation so that they can be silenced via /silenced API.
Updated API publish_check_result helper to address a condition where events could not be successfully deleted for clients configured with a signature.
Fixed regexp in API which prevented retrieval of silence entries when
requesting subscriptions containing a colon (e.g. client:foo
,
roundrobin:bar
) on the /silenced/subscriptions/:subscription
endpoint.
Fixed a condition where processing check results with an invalid signature failed to complete. This often manifest as timeouts when waiting for sensu-server processes to terminate.
Default value for client
settings has changed from nil
to {}
.
Fixed a Sensu server settings bug that cause sensu-server to required a client definition in order to start.
Subdue now ONLY applies to check scheduling via check definitions, it has
been removed from handlers (no more "at": "handler"
). The subdue
configuration syntax has changed, please refer to the 0.26 subdue
documentation.
Increased the maximum number of EventMachine timers from 100k to 200k, to accommodate very large Sensu installations that execute over 100k checks.
Only attempt to schedule standalone checks that have an interval.
Standalone checks are no longer provided by the Sensu API /checks endpoint.
Check TTL events are no longer created if the associated Sensu client has a current keepalive event.
Fixed a Sensu API /results endpoint race condition that caused incomplete response content.
Event silencing is now built into Sensu Core! The Sensu API now provides a
set of /silenced endpoints, for silencing one or more subscriptions
and/or checks. Silencing applies to all event handlers by default, the new
handler definition attribute handle_silenced
can be used to disable it
for a handler. Metric check events (OK) bypass event silencing.
Subdue now ONLY applies to check scheduling via check definitions, it has
been removed from handlers (no more "at": "handler"
). The Sensu client
standalone check execution scheduler now supports subdue. The subdue
configuration syntax has changed, please refer to the 0.26 subdue
documentation.
Event filters now support time windows, via the filter definition
attribute "when": {}
. The configuration syntax is the same as check
subdue.
Sensu Extensions are now loaded from Rubygems! The Sensu installer,
sensu-install
, can now be used to install Sensu Extensions, e.g.
sensu-install -e system-profile
. Extensions gems must be enabled via
Sensu configuration, please refer to the 0.26 extensions
documentation.
A check can now be a member of more than one aggregate, via the check
definition attribute "aggregates": []
.
Every Sensu client now creates/subscribes to its own unique client
subscription named after it, e.g. client:i-424242
. This unique client
subscription allows Sensu checks to target a single client (host) and
enables silencing events for a single client.
Fixed the Sensu API 204 status response string, changing "No Response" to the correct string "No Content".
Check results for unmatched tokens now include an executed timestamp.
API aggregates max_age now guards against check results with a nil
executed timestamp.
Reverted the Sensu API race condition fix, it was a red herring. Desired behaviour has been restored.
Custom check definition attributes are now included in check request payloads, fixing check attribute token substitution for pubsub checks.
Transport connectivity issues are now handled while querying the Transport
for pipe stats for API /info
and /health
.
Fixed a race condition bug in the Sensu API where the @redis
and
@transport
objects were not initialized before serving API requests.
Fixed a bug in the Sensu API where it was unable to set the CORS HTTP
headers when the API had not been configured (no "api": {}
definition).
The Sensu API now responds to HEAD requests for GET routes.
The Sensu API now responds to unsupported HTTP request methods with a 404 (Not Found), i.e. PUT.
The Sensu API now sets the HTTP response header "Connection" to "close". Uchiwa was experiencing intermittent EOF errors. #1340
Sensu API legacy singular resources, e.g. /check/:check_name
, have been
removed. Singular resources were never documented and have not been used
by most community tooling, e.g. Uchiwa, since the early Sensu releases.
Fixed a critical bug in Sensu client execute_check_command()
where a
check result would contain a check command with client tokens substituted,
potentially exposing sensitive/redacted client attribute values.
The Sensu API has been rewritten to use EM HTTP Server, removing Rack and Thin as API runtime dependencies. The API no longer uses Rack async, making for cleaner HTTP request logic and much improved HTTP request and response logging.
Sensu client auto de-registration on sensu-client process stop is now supported by the Sensu client itself, no longer depending on the package init script. The package init script de-registration functionality still remains, but is considered to be deprecated at this time.
Fixed a critical bug in Sensu server resume()
which caused the server to
crash when querying the state of the Sensu Transport connection before it
had been initialized. #1321
Updated references to unmatched tokens, i.e. check result output message, to better represent the new scope of token substitution. #1322
Sensu check "Aggregates 2.0" breaks the existing Sensu API aggregate endpoints.
Sensu API GET /health endpoint, failed health checks now respond with a
412
(preconditions failed) instead of a 503
.
Persistent Sensu event IDs, event occurrences for a client/check pair will now have the same event ID until the event is resolved.
Added a CLI option/argument to cause the Sensu service to validate its
compiled configuration settings and exit with the appropriate exit
code, e.g. 2
for invalid. The CLI option is --validate_config
. This
feature is now used when restarting a Sensu service to first validate the
new configuration before stopping the running service.
Improved tracking of in progress check result processing, no longer potentially losing check results when restarting the Sensu server service.
Event data check type now explicitly defaults to "standard".
Check results for proxy clients (a.k.a JIT clients) will now have a check "origin" set to the client name of the result producer.
Configurable Sensu Spawn concurrent child process limit (checks, mutators,
& pipe handlers). The default limit is still 12
and the EventMachine
threadpool size is automatically adjusted to accommodate a larger limit.
Sensu check "Aggregates 2.0".
Sensu client token substitution is now supported in every check definition attribute value, no longer just the check command.
Sensu API GET /health endpoint, failed health check now responds with a
412
(preconditions failed) instead of a 503
.
Sensu API POST /clients endpoint can now create clients in the registry that are expected to produce keepalives, and validates clients with the Sensu Settings client definition validator.
Updated Thin (used by Sensu API) to the latest version, 1.6.4.
JrJackson is now used to parse JSON when Sensu is running on JRuby.
The Sensu API now listens immediately on service start, even before it has
successfully connected to Redis and the Sensu Transport. It will now
respond with a 500
response, with a descriptive error message, when it
has not yet initialized its connections or it is reconnecting to either
Redis or the Sensu Transport. The API /info and /health endpoints will
still respond normally while reconnecting.
Fixed child process write/read deadlocks when writing to STDIN or reading from STDOUT/ERR, when the data size exceeds the pipe buffers.
Fixed child process spawn timeout deadlock, now using stdlib Timeout.
Fixed client socket check result publishing when the client has a signature. The client signature is now added to the check result payload, making it valid.
Added client socket check result check TTL validation.
The pure Ruby EventMachine reactor is used when running on Solaris.
Dropped support for Rubies < 2.0.0, as they have long been EOL and have proven to be a hindrance and security risk.
The Sensu Transport API changed. Transports are now a deferrable, they
must call succeed()
once they have fully initialized. Sensu now waits
for its transport to fully initialize before taking other actions.
Redis Sentinel support for HA Redis. Sensu services can now be configured
to query one or more instances of Redis Sentinel for a Redis master. This
feature eliminates the last need for HAProxy in highly available Sensu
configurations. To configure Sensu services to use Redis Sentinel, hosts
and ports of one or more Sentinel instances must be provided, e.g.
"sentinels": [{"host": "10.0.1.23", "port": 26479}]
.
Added a CLI option/argument to cause the Sensu service to print (output to
STDOUT) its compiled configuration settings and exit. The CLI option is
--print_config
or -P
.
Added token substitution to filter eval attributes, providing access to
event data, e.g. "occurrences": "eval: value == :::check.occurrences:::"
.
The pure Ruby EventMachine reactor is used when running on AIX.
The Sensu 0.23 packages use Ruby 2.3.
Performance improvements. Dropped MultiJson in favour of Sensu JSON, a lighter weight JSON parser abstraction that supports platform specific parsers for Sensu Core and Enterprise. The Oj JSON parser is once again used for Sensu Core. Used https://github.com/JuanitoFatas/fast-ruby and benchmarks as a guide to further changes.
Using EventMachine 1.2.0, which brings several changes and improvements: https://github.com/eventmachine/eventmachine/blob/master/CHANGELOG.md#1201-march-15-2016
FFI library loading no longer causes a load error on AIX & Solaris.
Removed unused cruft from extension API run()
and safe_run()
. Optional
options={}
was never implemented in Sensu Core and event data dup()
never provided the necessary protection that it claimed (only top level
hash object).
Performance improvements. Using frozen constants for common values and comparisons. Reduced the use of block arguments for callbacks.
Improved RabbitMQ transport channel error handling.
Fixed client signatures inspection/comparison when upgrading from a previous release.
Client registration events are optionally created and processed (handled,
etc.) when a client is first added to the client registry. To enable this
functionality, configure a "registration" handler definition on Sensu
server(s), or define a client specific registration handler in the client
definition, e.g. {"client": "registration": {"handler": "debug"}}
.
Client auto de-registration on sensu-client process stop is now supported
by the Sensu package init script. Setting CLIENT_DEREGISTER_ON_STOP=true
and CLIENT_DEREGISTER_HANDLER=example
in /etc/default/sensu
will cause
the Sensu client to publish a check result to trigger the event handler
named "example", before its process stops.
Added support for Sensu client signatures, used to sign client keepalive
and check result transport messages, for the purposes of source
(publisher) verification. The client definition attribute "signature" is
used to set the client signature, e.g. "signature": "6zvyb8lm7fxcs7yw"
.
A client signature can only be set once, the client must be deleted from
the registry before its signature can be changed or removed. Client
keepalives and check results that are not signed with the correct
signature are logged (warn) and discarded. This feature is NOT a
replacement for existing and proven security measures.
The Sensu plugin installation tool, sensu-install
, will no longer
install a plugin if a or specified version has already been installed.
The Sensu client socket now supports UTF-8 encoding.
Using the Sensu embedded Ruby for Sensu checks, mutators, and handlers has
become a common practice. The Sensu 0.21 packages changed the default
value of EMBEDDED_RUBY
from false
to true
, allowing Sensu plugins to
use the embedded Ruby by default. This change makes it easier to get
started with Sensu.
Added a Sensu plugin installation tool, sensu-install
, making it easier
to install Sensu community plugins. The sensu-install
tool will use the
appropriate Ruby when installing plugins. The tool aims to produce verbose
and useful output to help when debugging plugin installation issues.
Added the Sensu API DELETE /results/:client/:check endpoint, supporting check result deletion via the Sensu API. This feature allows users to clean up "stale" check result data for checks that have been removed.
Added the Sensu API POST /results endpoint, supporting check result input via the Sensu API. The JIT client feature added in 0.20 enabled this functionality. Services that do not have access to a local Sensu client socket can make use of this feature.
Improved the Sensu test suite to reduce the number of timeout triggered failures. These changes make Sensu development much more pleasant.
Fixed a few inline documentation typos, e.g. sbuded -> subdued.
Moved the Sensu bins (e.g. sensu-client
) from bin
to exe
to avoid
the conflict with Ruby bundler bin stubs.
Fixed Sensu API and client socket input validation, no longer accepting multi-line values.
Fixed check request publishing for checks that make use of check
extensions, e.g. "extension": "check_http_endpoints
.
Fixed the handler "filters"
bug that caused Sensu to mutate handler
definitions, removing filters for successive executions.
Fixed Sensu API POST /request endpoint check request publishing to round-robin client subscriptions.
Fixed the Windows job handle leak when spawning processes for checks.
Updated the Redis client library (em-redis-unified) to remove duplicate Ruby hash key warnings.
Removed the use of EM::Iterator
from event filtering, replacing it with
Proc
and EM::next_tick
. EM::Iterator
creates anonymous classes that
cannot be garbage collected on JRuby.
Removed sensu-em as a dependency, now using upstream EventMachine 1.0.8.
The Sensu API will remove a client immediately if there are no current events for it. The API will continue to monitor the current event count for the client to be deleted, deleting the client when there are no longer current events or after a timeout of 5 seconds.
The Sensu API will no longer crash while fetching check result data for a client that is being deleted.
Updated sensu-spawn to 1.4.0, adding a mutex to ChildProcess Unix POSIX spawn, allowing safe execution on Ruby runtimes with real threads (JRuby).
Fixed metric check output truncation when output is empty.
Improved check output truncation. Metric check output is truncated to a single line and 256 characters. Standard check output is not modified.
Fixed API /results endpoint, now including all results in a single response (unless pagination is used).
Locked amq-protocol to 1.9.2, as 2.x.x does not work on older Rubies.
Fixed pipe handler output logging on JRuby.
Improved Sensu server leader election and resignation. Changes include the use of a unique leader ID to help guard against cases where there could be multiple leaders.
Fixed bridge extensions; they now receive all event data, including events that normally do not result in an action (e.g. OK check results).
The Sensu API /clients
route/endpoint is now capable of handling missing
client data for a client in the registry.
Sensu configuration file loading will now properly follow a link once.
Resolving an event, that includes a check TTL, with the Sensu API will remove the check from TTL monitoring, until another check result with a TTL is received.
Added a timestamp to Sensu event data, recording the time of event creation.
Fixed RabbitMQ transport connection AMQP heartbeat monitoring, the AMQP library was sending heartbeat frames on closed connections.
The RabbitMQ transport now resets (close connection, etc.) when making periodic reconnect attempts. The periodic reconnect timer delay will now be incremented by 2 on every attempt, to a maximum of 20 seconds.
Sensu services now optionally load connection and client configuration from environment variables. This feature makes it easier to operate Sensu in containerized environments, e.g. Docker. Sensu services read configuration from the following variables: SENSU_TRANSPORT_NAME, RABBITMQ_URL, REDIS_URL, SENSU_CLIENT_NAME, SENSU_CLIENT_ADDRESS, SENSU_CLIENT_SUBSCRIPTIONS, SENSU_API_PORT
The Sensu event action is now correctly set to "create" for metric check events.
Updated MultiJson and Childprocess to the latest versions, which include improvements and bug fixes.
Sensu now sets the SENSU_LOADED_TEMPFILE
environment variable to a
temporary file path, a file containing the colon delimited list of loaded
configuration files for the Sensu service
(e.g./tmp/sensu_client_loaded_files
). This new temporary file and
environment variable (SENSU_LOADED_TEMPFILE
) replaced
SENSU_CONFIG_FILES
, which has been removed, due to the exec ARG_MAX
(E2BIG) error when spawning processes after loading many configuration
files (e.g. > 2000).
Updated sensu-em to fix UDP handlers when running on JRuby, open files were not being closed/released properly.
Now using an EventMachine timer for the TCP handler connection timeout, as
pending_connect_timeout()
and comm_inactivity_timeout()
are not
currently supported on all platforms.
Updated Thin and UUID tools to the latest versions, which include improvements and bug fixes.
Redis Sensu transport, a built-in alternative to the default RabbitMQ
transport. The Redis transport is currently considered experimental.
Configuring the transport name to be redis
will enable the Redis
transport instead of RabbitMQ, e.g. {"transport": {"name": "redis"}}
.
Round-robin client subscriptions, allowing check requests to be sent to a
single client in a subscription in a round-robin fashion. To create a
round-robin subscription, start its name with roundrobin:
to specify the
type, e.g. "roundrobin:elasticsearch". Any check that targets the
"roundrobin:elasticsearch" subscription will have its check requests sent
to clients in a round-robin fashion.
Stale check result detection, using a defined check ttl
and stored check
results. Sensu is now able to monitor check results, ensuring that checks
with a defined TTL (time to live) continue to be executed by clients. For
example, a standalone check could have an interval of 30 seconds and a ttl
of 50 seconds, Sensu would expect a result at least once every 50 seconds.
Check results API routes/endpoints: /results
, /results/:client
, and
/results/:client/:check
. These new check result API routes/endpoints
enable new tooling, such as green light dashboards.
POSIX spawn libraries are now loaded upfront/immediately, not at child process creation. This removes the possibility of load race conditions when real threads are used.
Many Ruby EventMachine fixes and improvements, including FD_CLOEXEC for the Sensu client UDP socket.
Fixed event resolution for flapping events.
Check source is now published in check requests if configured. Including the check source in check requests fixes JIT clients for standard (pubsub) check executions and adds context to client check execution log events.
JIT clients now have a Sensu version, set to the Sensu server version.
Check results written to the Sensu client socket(s) now have a default executed timestamp, equal to the current Unix/epoch time.
Check source is now validated for check results written to the Sensu client socket(s), using the same regular expression as the configuration attribute validator.
The latest versions of Ruby Sinatra and Async Sinatra are now used, which include many improvements and bug fixes.
Added a caret to the beginning of API routes/endpoints that use regular
expressions, fixing a bug that caused the wrong route/endpoint to be
called, e.g. /clients/client
.
Dynamic (or JIT) client creation (in the registry) for check results for a
nonexistent client or a check source. Sensu clients can now monitor an
external resource on its behalf, using a check source
to create a JIT
client for the resource, used to store the execution history and provide
context within event data. JIT client data in the registry can be
managed/updated via the Sensu API, POST /clients
.
Storing the latest check result for every client/check pair. This data is
currently exposed via the API at /clients/:client/history
and will be
used by several upcoming features.
The Sensu API now listens on TCP port 4567
by default.
Sensu server leader election lock timestamps now include milliseconds to reduce the chance of a conflict when attempting to elect a new leader.
Sensu transport "reconnect_on_error" now defaults to true
. For the
RabbitMQ transport, this means AMQP channel errors will result in a
reconnect. The Sensu transport will always reconnect when there is a loss
of connectivity.
The Sensu client sockets (TCP/UDP) are now stopped/closed before the process is stopped.
Sensu server "master" election is now "leader" election.
Configuration file encoding is now forced to 8-bit ASCII and UTF-8 BOMs are removed if present.
Fixed a bug where the Sensu server was unable to stop due to the handling event count not being decremented when events were filtered.
Check requests can now include a check "extension" to run, instead of a command.
Always merge check requests with local check definitions if they exist.
Improved Sensu client keepalive event check output.
Hashed initial check request/execution scheduling splay, consistent over process restarts/reloads.
Handler output with multiple lines is now logged as a single log event.
Support for Sensu filter extensions.
Check definitions can now specify a Sensu check extension to run, "extension", instead of a command.
Sensu transport "reconnect_on_error" configuration option, to enable transport reconnect in the event of an unexpected error. This is set to false by default, as some errors are unrecoverable. The Sensu transport will always reconnect when there is a loss of connectivity.
Sensu Redis "reconnect_on_error" configuration option, to enable Redis reconnect in the event of an unexpected error. This is set to false by default, as some errors are unrecoverable. The Redis client will always reconnect when there is a loss of connectivity.
Fixed TLS/SSL on Windows.
Fixed event filtering with event action, eg. "action": "create"
.
Restructured and documented Sensu core with YARD.
Bumped MultiJSON to 1.11.0, to make adapters read IO objects prior to load.
Fixed RabbitMQ transport configuration backwards compatibility.
RabbitMQ transport now supports multiple broker connection options, enabling connection fail-over to brokers in a cluster without using a load balancer.
Client socket now supports sending a result via a TCP stream. This feature allows check results to have larger output (metrics, backtraces, etc).
API now supports CORS (configurable).
Check "source" attribute validation; it must be a string, event data consumers no longer have to validate it.
Child process manager now supports check output larger than the max OS buffer size. The parent process was waiting on the child to exit before closing its write end of the pipe.
Client & server are now guarding against invalid JSON transport payloads.
Fixed event occurrence count.
API GET /events now provides all event data, the same data passed to event handlers.
AMQP handler type ("amqp") has been replaced by "transport".
Standalone check results are no longer merged with check definitions residing on the server(s).
Removed the generic extension type.
Extension stop() no longer takes a callback, and is called when the eventmachine reactor is stopped.
Abstracted the transport layer, opening Sensu up to alternative messaging services.
Event bridge extension type, allowing all events to be relayed to other services.
Client keepalives now contain the Sensu version.
Support for nested handler sets (not deep).
Setting validation reports all invalid definitions before Sensu exits.
Clients now only load instances of check extensions, and servers load everything but check extensions.
Fixed standalone check scheduling, no longer mutating definitions.
Fixed command token substitution, allowing for the use of colons and working value defaults.
Log events are flushed when the eventmachine reactor stops.
Dropped the Oj JSON parser, heap allocation issues and memory leaks.
Client RabbitMQ queues are no longer server named (bugs), they are now composed of the client name, Sensu version, and the timestamp at creation.
Server master election lock updates and queries are more frequent.
The "profiler" extension type Sensu::Extension::Profiler
is now "generic"
Sensu::Extension::Generic
.
Fixed handler severity filtering, check history is an array of strings.
Fixed filter "eval:" on Ruby 2.1.0, and logging errors.
Fixed handler severity filtering when event action is "resolve". Events with an action of "resolve" will be negated if the severity conditions have not been met since the last OK status.
The pipe handler and mutator concurrency limit is now imposed by
EM::Worker
. A maximum of 12 processes may be spawned at a time.
API routes now have an optional trailing slash.
RabbitMQ initial connection timeout increased from 10 to 20 seconds.
RabbitMQ connection closed errors are now rescued when attempting to publish to an exchange, while Sensu is reconnecting.
API GET /stashes
now returns stash expiration information, time
remaining in seconds. eg. [{"path": "foo", "content":{"bar": "baz"},
"expire": 3598}].
Fixed a config loading bug where Sensu was not ignoring files without a valid JSON object.
Fixed handling event
log line data for extensions.
Deprecated API endpoints, /check/request
and /event/resolve
, have been
removed. Please use /request
and /resolve
.
API stashes can now expire, automatically removing themselves after N
seconds, eg. '{"path": "foo", "content":{"bar": "baz"}, "expire": 600}'.
Added additional AMQP library version constraints.
Improved API POST data validation.
Fixed redacting sensitive information in log lines during configuration loading.
Fixed AMQP library dependency version resolution.
Changed to an older version of the JSON parser, until the source of a memory leak is identified.
Sensu profiler extension support.
Added logger() to the extension API, providing access to the Sensu logger.
Updated "em-redis-unified" dependency version lock, fixing Redis reconnect when using authentication and/or select database.
WARNING: Extensions compatible with previous versions of Sensu will NO LONGER FUNCTION until they are updated for Sensu 0.11.x! Extensions are an experimental feature and not widely used.
Sensu settings are now part of the extension API & are no longer passed as an argument to run.
TCP handlers no longer have a socket timeout, instead they have a handler timeout for consistency.
You can specify the Sensu log severity level using the -L (--log_level) CLI argument, providing a valid level (eg. warn).
You can specify custom sensitive Sensu client key/values to be redacted from log events and keepalives, eg. "client": { "redact": [ "secret_access_key" ] }.
You can configure the Sensu client socket (UDP & TCP), bind & port, eg. "client": { "socket": { "bind": "0.0.0.0", "port": 4040 } }.
Handlers & mutators can now have a timeout, in seconds.
You can configure the RabbitMQ channel prefetch value (advanced), eg. "rabbitmq": { "prefetch": 100 }.
Sensu passes a dup of event data to mutator & handler extensions to prevent mutation.
Extension runs are wrapped in a begin/rescue block, a safety net.
UDP handler now binds to "0.0.0.0".
Faster JSON parser.
AMQP connection heartbeats will no longer attempt to use a closed channel.
Missing AMQP connection heartbeats will result in a reconnect.
The keepalive & result queues will now auto-delete when there are no active consumers. This change stops the creation of a keepalive/result backlog, stale data that may overwhelm the recovering consumers.
Improved Sensu client socket check validation.
AMQP connection will time out if the vhost is missing, there is a lack of permissions, or authentication fails.
Fixed redacting passwords in client data, correct value is now provided to check command token substitution.
You can specify multiple Sensu service configuration directories, using the -d (--config_dir) CLI argument, providing a comma delimited list.
A post initialize hook ("post_init()") was added to the extension API, enabling setup (connections, etc.) within the event loop.
Catches nil exit statuses, returned from check execution.
Empty command token substitution defaults now work. eg. "-f :::bar|:::"
Specs updated to run on OS X, bash compatibility.
Client & check names must not contain spaces or special characters. The valid characters are: a-z, A-Z, 0-9, "_", ".", and "-".
"command_executed" was removed from check results, as it may contain sensitive information, such as credentials.
Passwords in client data (keepalives) and log events are replaced with "REDACTED", reducing the possibility of exposure. The following attributes will have their values replaced: "password", "passwd", and "pass".
Fixed nil check status when check does not exit.
Fixed the built-in debug handler output encoding (JSON).
The Sensu API now provides /health, an endpoint for connection & queue monitoring. Monitor Sensu health with services like Pingdom.
Sensu clients can configure their own keepalive handler(s) & thresholds.
Command substitution tokens can have default values (eg. :::foo.bar|default:::).
Check result (& event) data now includes "command_executed", the command after token substitution.
Validating check results, as bugs in older Sensu clients may produce invalid or malformed results.
Improved stale client monitoring, to better handle client deletions.
Improved check validation, names must not contain spaces or special characters, & an "interval" is not required when "publish" is false.
The Sensu API now provides client history, providing a list of executed checks, their status histories, and last execution timestamps. The client history endpoint is /clients/<client-name>/history, which returns a JSON body.
The Sensu API can now bind to a specific address. To bind to an address, use the API configuration key "bind", with a string value (eg. "127.0.0.1").
A stop hook was added to the Sensu extension API, enabling gracefull stop for extensions. The stop hook is called before the event loop comes to a halt.
The Sensu client now supports check extensions, checks the run within the Sensu Ruby VM, for aggresive service monitoring & metric collection.
The Sensu API stashes route changed, GET /stashes now returns an array of stash objects, with support for pagination. The API no longer uses POST for multi-get.
Sensu services no longer have config file or directory defaults. Configuration paths a left to packaging.
All Sensu API 201 & 202 status responses now return a body.
The Sensu server now "pauses" when reconnecting to RabbitMQ. Pausing the Sensu server when reconnecting to RabbitMQ fixes an issue when it is also reconnecting to Redis.
Keepalive checks now produce results with a zero exit status, fixing keepalive check history.
Sensu runs on Ruby 2.0.0p0.
Replaced the JSON parser with a faster implementation.
Replaced the Sensu logger with a more lightweight & EventMachine friendly implementation. No more TTY detection with colours.
Improved config validation.
API aggregate age filter parameter.
Removed /info "health" in favour of RabbitMQ & Redis "connected".
No longer using the default AMQP exchange or publishing directly to queues.
Removed API health filter, as the Redis connection now recovers.
Fixed config & extension directory loading on Windows.
Client socket handles non-ascii input.
Handlers can be subdued like checks, suppression windows.
Extensions have access to settings.
Client queue names are now determined by the broker (RabbitMQ).
Improved zombie reaping.
RabbitMQ keepalives & results queue message and consumer counts available via the API (/info).
Aggregate results available via the API when using a parameter (?results=true).
Event filters; filtering events for handlers, using event attribute matching.
TCP handler socket timeout, which defaults to 10 seconds.
Check execution timeout.
Server extensions (mutators & handlers).
Server is now using basic AMQP QoS (prefetch), just enough back pressure.
Improved check execution scheduling.
Fixed server execute command method error handling.
Events with a resolve action bypass handler severity filtering.
Check flap detection configuration validation.
Aggregates, pooling and summarizing check results, very handy for monitoring a horizontally scaled or distributed system.
Event handler severities, only handle events that have specific severities.
Fixed flap detection.
Gracefully handle possible failed RabbitMQ authentication.
Catch and log AMQP channel errors, which cause the channel to close.
Fixed API event resolution handling, for events created by standalone checks.
Minor performance improvements.
Event data mutators, manipulate event data and its format prior to sending to a handler.
TCP and UDP handler types, for writing event data to sockets.
API resources now support singular & plural, Rails friendly.
Client safe mode, require local check definition in order to execute a check, disable for simpler deployment (default).
AMQP handlers can no longer use "send_only_check_output": true
, but
instead have access to the built-in mutators "mutator": "only_check_output"
and
"mutator": "only_check_output_split"
.
Ruby 1.8.7-p249 is no longer supported, as the AMQP library no longer does. Please use the Sensu APT/YUM packages which contain an embedded Ruby.
Client expects check requests to contain a command, be sure to upgrade servers prior to upgrading clients.
Check subdue options have been modified, "start" is now "begin".
Improved RabbitMQ and Redis connection recovery.
Fixed API POST input validation.
Redis client connection heartbeat.
Improved graceful process termination.
Improved client socket ping/pong.
Strict dependency version locking.
Adjusted logging level for metric events.