Newton Release Notes

7.0.5

Corrections de bugs

  • A local cache is used when polling instance metrics to minimise calls Nova API. A new option is added resource_cache_expiry to configure a time to live for cache before it expires. This resolves issue where migrated instances are not removed from cache.

7.0.1

Nouvelles fonctionnalités

  • Ceilometer sets up the HTTPProxyToWSGI middleware in front of Ceilometer. The purpose of this middleware is to set up the request URL correctly in case there is a proxy (for instance, a loadbalancer such as HAProxy) in front of Ceilometer. So, for instance, when TLS connections are being terminated in the proxy, and one tries to get the versions from the / resource of Ceilometer, one will notice that the protocol is incorrect; It will show “http” instead of “https”. So this middleware handles such cases. Thus helping Keystone discovery work correctly. The HTTPProxyToWSGI is off by default and needs to be enabled via a configuration value.

7.0.0

Prelude

Ceilometer backends are no more only databases but also REST API like Gnocchi. So ceilometer-dbsync binary name doesn’t make a lot of sense and have been renamed ceilometer-upgrade. The new binary handles database schema upgrade like ceilometer-dbsync does, but it also handle any changes needed in configured ceilometer backends like Gnocchi.

Nouvelles fonctionnalités

  • Added support for magnum bay CRUD events, event_type is “magnum.bay.*”.

  • In the [dispatcher_http] section of ceilometer.conf, verify_ssl can be set to True to use system-installed certificates (default value) or False to ignore certificate verification (use in development only!). verify_ssl can also be set to the location of a certificate file e.g. /some/path/cert.crt (use for self-signed certs) or to a directory of certificates. The value is passed as the “verify” option to the underlying requests method, which is documented at http://docs.python-requests.org/en/master/user/advanced/#ssl-cert-verification

  • Add two new meters, including memory.bandwidth.total and memory.bandwidth.local, to get memory bandwidth statistics based on Intel CMT feature.

  • Add four new meters, including perf.cpu.cycles for the number of cpu cycles one instruction needs, perf.instructions for the count of instructions, perf.cache_references for the count of cache hits and cache_misses for the count of caches misses.

  • Add support of batch recording metering data to mongodb backend, since the pymongo support insert_many interface which can be used to batch record items, in « big-data » scenarios, this change can improve the performance of metering data recording.

  • Since the Glance v1 APIs won’t be maintained any more, this change add the support of glance v2 in images pollsters.

Notes de mises à jours

  • The options “requeue_event_on_dispatcher_error” and “requeue_sample_on_dispatcher_error” have been enabled and removed.

  • Batching is enabled by default now when coordinated workers are enabled. Depending on load, it is recommended to scale out the number of pipeline_processing_queues to improve distribution. batch_size should also be configured accordingly.

  • The option “glance_page_size” has been removed because it’s not actually needed.

Notes dépréciées

  • The event database dispatcher is now deprecated. It has been moved to a new project, alongside the Ceilometer API for /v2/events, called Panko.

  • The Kwapi pollsters are deprecated and will be removed in the next major version of Ceilometer.

  • For backward compatibility reason we temporary keep ceilometer-dbsync, at least for one major version to ensure deployer have time update their tooling.

Erreurs critiques

  • The previous configuration options default for “requeue_sample_on_dispatcher_error” and “requeue_event_on_dispatcher_error” allowed to lose data very easily: if the dispatcher failed to send data to the backend (e.g. Gnocchi is down), then the dispatcher raised and the data were lost forever. This was completely unacceptable, and nobody should be able to configure Ceilometer in that way. »

Corrections de bugs

  • [bug 1578128] Add a tool that allow users to drop the legacy alarm and alarm_history tables.

  • [bug 1597618] Add the full support of snmp v3 user security model.

  • Fix to improve handling messages in environments heavily backed up. Previously, notification handlers greedily grabbed messages from queues which could cause ordering issues. A fix was applied to sequentially process messages in a single thread to prevent ordering issues.

  • [bug 1491509] Patch to unify timestamp in samples polled by pollsters. Set the time point polling starts as timestamp of samples, and drop timetamping in pollsters.