{"id":20111304,"url":"https://github.com/openstack/puppet-ceilometer","last_synced_at":"2025-04-06T05:16:47.219Z","repository":{"id":8527705,"uuid":"10144326","full_name":"openstack/puppet-ceilometer","owner":"openstack","description":"OpenStack Ceilometer Puppet Module. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-03-14T23:20:00.000Z","size":1518,"stargazers_count":48,"open_issues_count":0,"forks_count":31,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-03-30T03:11:04.640Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-ceilometer","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-05-18T17:02:46.000Z","updated_at":"2025-03-14T23:20:03.000Z","dependencies_parsed_at":"2024-01-22T19:08:05.498Z","dependency_job_id":"b50c0890-6b34-4554-b519-6b7e540e619b","html_url":"https://github.com/openstack/puppet-ceilometer","commit_stats":{"total_commits":825,"total_committers":106,"mean_commits":7.783018867924528,"dds":0.8363636363636364,"last_synced_commit":"84019cd78c509fcef91d6dc4ffd133f513004982"},"previous_names":[],"tags_count":133,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-ceilometer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-ceilometer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-ceilometer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-ceilometer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-ceilometer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247436286,"owners_count":20938533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T18:15:30.607Z","updated_at":"2025-04-06T05:16:47.179Z","avatar_url":"https://github.com/openstack.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Team and repository tags\n========================\n\n[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-ceilometer.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\nCeilometer\n==========\n\n#### Table of Contents\n\n1. [Overview - What is the ceilometer module?](#overview)\n2. [Module Description - What does the module do?](#module-description)\n3. [Setup - The basics of getting started with ceilometer](#setup)\n4. [Implementation - An under-the-hood peek at what the module is doing](#implementation)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n7. [Release Notes - Release notes for the project](#release-notes)\n8. [Contributors - Those with commits](#contributors)\n9. [Repository - The project source code repository](#repository)\n\nOverview\n--------\n\nThe ceilometer module is part of [OpenStack](https://opendev.org/openstack), an effort by the\nOpenStack infrastructure team to provide continuous integration testing and code review for\nOpenStack and OpenStack community projects as part of the core software. The module itself\nis used to flexibly configure and manage the metering service for OpenStack.\n\nModule Description\n------------------\n\nThe ceilometer module is an attempt to make Puppet capable of managing the entirety of ceilometer.\nThis includes manifests to provision the ceilometer api, agents, and database stores. A\nceilometer_config type is supplied to assist in the manipulation of configuration files.\n\nSetup\n-----\n\n**What the ceilometer module affects**\n\n* [Ceilometer](https://docs.openstack.org/ceilometer/latest/), the metering service for OpenStack\n\n### Installing ceilometer\n\n    puppet module install openstack/ceilometer\n\n### Beginning with ceilometer\n\nTo utilize the ceilometer module's functionality you will need to declare multiple resources. This is not an exhaustive list of all the components needed. We recommend that you consult and understand the [core openstack](https://docs.openstack.org) documentation to assist you in understanding the available deployment options.\n\n```puppet\nclass { 'ceilometer':\n  telemetry_secret      =\u003e 'secrete',\n  default_transport_url =\u003e 'rabbit://ceilometer:an_even_bigger_secret@127.0.0.1:5672',\n}\nclass { 'ceilometer::keystone::auth':\n  password =\u003e 'a_big_secret',\n}\nclass { 'ceilometer::collector': }\nclass { 'ceilometer::agent::polling': }\nclass { 'ceilometer::agent::notification': }\nclass { 'ceilometer::db::sync': }\nclass { 'ceilometer::keystone::authtoken':\n  password =\u003e 'a_big_secret',\n  auth_url =\u003e 'http://127.0.0.1:5000/',\n}\n```\n\nImplementation\n--------------\n\n### ceilometer\n\nceilometer is a combination of Puppet manifests and Ruby code to deliver configuration and\nextra functionality through types and providers.\n\n### Types\n\n#### ceilometer_config\n\nThe `ceilometer_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/ceilometer/ceilometer.conf` file.\n\n```puppet\nceilometer_config { 'DEFAULT/http_timeout' :\n  value =\u003e 600,\n}\n```\n\nThis will write `http_timeout=600` in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `ceilometer.conf`\n\n##### value\n\nThe value of the setting to be defined.\n\n##### secret\n\nWhether to hide the value from Puppet logs. Defaults to `false`.\n\n##### ensure_absent_val\n\nIf value is equal to ensure_absent_val then the resource will behave as if `ensure =\u003e absent` was specified. Defaults to `\u003cSERVICE DEFAULT\u003e`\n\nLimitations\n-----------\n\n* The ceilometer modules have only been tested on RedHat and Ubuntu family systems.\n\nDevelopment\n-----------\n\nDeveloper documentation for the entire puppet-openstack project\n\n* https://docs.openstack.org/puppet-openstack-guide/latest/\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-ceilometer\n\nContributors\n------------\n\n* https://github.com/openstack/puppet-ceilometer/graphs/contributors\n\nRepository\n----------\n\n* https://opendev.org/openstack/puppet-ceilometer\n\n\n\nThis is the ceilometer module.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-ceilometer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-ceilometer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-ceilometer/lists"}