Post tagged: OpenStack

High memory usage with collectd

collectd itself is intended as lightweight collecting agent for metrics and events. In larger infrastructure, the data is sent over the network to a central point, where data is stored and processed further.

This introduces a potential issue: what happens, if the remote endpoint to write data to is not …

Config snippets for collectd configured by TripleO

This is mostly a brain dump for myself for later reference, but may be also useful for others.

As I wrote in an earlier post, collectd is configured on OpenStack TripleO driven deployments by a config file.

parameter_defaults:
    CollectdExtraPlugins:
        - write_http
    ExtraConfig:
        collectd::plugin::write_http::nodes:
            collectd:
                url …

Configuring collectd plugins with TripleO

A way of deploying OpenStack is to use TripleO. This takes the an approach to deploy a small OpenStack environment, and then to take OpenStack provided infrastructure and tools to deploy the actual production environment. This is actually done by an addition to the openstack command line client:

openstack overcloud …

Operational Tools in CentOS

A while ago, we proposed the OpsTools SIG. Its idea is to provide tools for operators, system administrators, etc.

Now we have a repository for testing purposes:

yum install http://buildlogs.centos.org/centos/7/opstools/x86_64/common/centos-release-opstools-1-2.el7.noarch.rpm

Documentation can be found on GitHub, and …

Disable "Resource Usage"-dashboard in Horizon

When using Horizon as Admin user, you probably saw the metering dashboard, also known as "Resource Usage".

It internally uses Ceilometer; Ceilometer continuously collects data from configured data sources. In a cloud environment, this can quickly grow enormously. When someone visits the metering dashboard in Horizon, Ceilometer then will accumulate …

Caching in Horizon with Redis

Redis is a in-memory data structure store, which can be used as cache and session backend.

I thought to give it a try for Horizon. Installation is quite simple, either pip install django-redis or dnf --enablerepo=rawhide install python-django-redis.

Then change openstack_dashboard/local/local_settings.py aka. /etc/openstack-dashboard …

OpenStack Summit Tokyo

Over the past week, I attended the OpenStack Summit in Tokyo.

My primary focus was on Horizon sessions. Nevertheless, I was lucky to have one or two glimpses at more touristic spots in Tokyo.

temple in the area

Plugins

The first work session for Horizon started on Wednesday with plugins. Previously, there has been …

Fedora 22 will contain Django-1.8

One of the new features in upcoming Fedora 22 will be Django-1.8. Django project released its most recent version earlier this month, and it's going to be a long term supported version after Django-1.4 became a bit ancient nowadays. Fedora had release 1.6 in which is now …