Puppet Class: gnocchi::storage::file

Defined in:
manifests/storage/file.pp

Overview

gnocchi::storage::file

File driver for Gnocchi

Parameters

file_basepath

(optional) Path used to store gnocchi data files. Defaults to ‘/var/lib/gnocchi’.

Parameters:

  • file_basepath (Any) (defaults to: '/var/lib/gnocchi')


28
29
30
31
32
33
34
35
36
37
38
39
# File 'manifests/storage/file.pp', line 28

class gnocchi::storage::file(
  $file_basepath = '/var/lib/gnocchi',
) {

  include gnocchi::deps

  gnocchi_config {
    'storage/driver':        value => 'file';
    'storage/file_basepath': value => $file_basepath;
  }

}