07dbfc8d63
* Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash prometheus-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") ./prometheus/osfamilymap.yaml 1:89 error line too long (116 > 88 characters) (line-length) 1:24 error trailing spaces (trailing-spaces) 13:2 error syntax error: found character '%' that cannot start any token 24:89 error line too long (90 > 88 characters) (line-length) 25:89 error line too long (167 > 88 characters) (line-length) ./prometheus/defaults.yaml 6:13 error too many spaces inside braces (braces) 6:35 error too many spaces inside braces (braces) 7:11 error too many spaces inside braces (braces) 7:25 error too many spaces inside braces (braces) 8:22 warning truthy value should be one of [false, true] (truthy) 9:25 warning truthy value should be one of [false, true] (truthy) 49:85 error trailing spaces (trailing-spaces) 103:20 warning truthy value should be one of [false, true] (truthy) 104:25 warning truthy value should be one of [false, true] (truthy) 108:16 warning truthy value should be one of [false, true] (truthy) 113:24 warning missing starting space in comment (comments) pillar.example 31:6 warning missing starting space in comment (comments) 32:8 warning missing starting space in comment (comments) 32:7 warning comment not indented like content (comments-indentation) 51:5 warning comment not indented like content (comments-indentation) 65:89 error line too long (110 > 88 characters) (line-length) 68:29 error too many spaces after colon (colons) 68:34 warning too few spaces before comment (comments) 68:89 error line too long (106 > 88 characters) (line-length) 69:34 warning too few spaces before comment (comments) 69:89 error line too long (98 > 88 characters) (line-length) 75:9 error wrong indentation: expected 10 but found 8 (indentation) 76:11 error wrong indentation: expected 12 but found 10 (indentation) 77:13 warning comment not indented like content (comments-indentation) 79:89 error line too long (101 > 88 characters) (line-length) 81:9 warning comment not indented like content (comments-indentation) 86:89 error line too long (103 > 88 characters) (line-length) 91:11 error wrong indentation: expected 12 but found 10 (indentation) 106:15 error wrong indentation: expected 16 but found 14 (indentation) 108:41 warning too few spaces before comment (comments) 118:89 error line too long (96 > 88 characters) (line-length) 139:13 error wrong indentation: expected 14 but found 12 (indentation) 143:7 error wrong indentation: expected 8 but found 6 (indentation) 145:9 error wrong indentation: expected 10 but found 8 (indentation) 157:6 warning missing starting space in comment (comments) 158:20 error too many spaces inside braces (braces) 158:47 error too many spaces inside braces (braces) ``` |
||
---|---|---|
bin | ||
docs | ||
prometheus | ||
test/integration/default | ||
.gitignore | ||
.travis.yml | ||
.yamllint | ||
AUTHORS.md | ||
CHANGELOG.md | ||
commitlint.config.js | ||
FORMULA | ||
Gemfile | ||
kitchen.yml | ||
LICENSE | ||
pillar.example | ||
pre-commit_semantic-release.sh | ||
release-rules.js | ||
release.config.js |
prometheus-formula ================
Manage Prometheus on MacOS, GNU/Linux and FreeBSD.
Table of Contents
General notes
See the full SaltStack Formulas installation and usage instructions.
If you want to use this formula, please pay attention to the
FORMULA
file and/or git tag
, which contains
the currently released version. This formula is versioned according to
Semantic Versioning.
See Formula Versioning Section for more details.
Contributing to this repo
Please see https://github.com/saltstack-formulas/prometheus-formula/blob/master/docs/CONTRIBUTING.rst
Available states
prometheus
^^^^^^^^^^^^
Meta-state (This is a state that includes other states).
This installs the prometheus package, manages the prometheus configuration file and then starts the associated prometheus service.
prometheus.archive
^^^^^^^^^^^^^^^^^^^^
This state will install the prometheus from archive file only.
prometheus.archive.alternatives
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This state will install the prometheus linux alternatives for archives only.
prometheus.package
^^^^^^^^^^^^^^^^^^^^
This state will install the prometheus package only.
prometheus.package.repo
^^^^^^^^^^^^^^^^^^^^^^^^^
This state will install the prometheus package only.
prometheus.config
^^^^^^^^^^^^^^^^^^^
This state will configure the prometheus service and has a dependency
on prometheus.install
via include list.
prometheus.service
^^^^^^^^^^^^^^^^^^^^
This state will start the prometheus service and has a dependency on
prometheus.config
via include list.
prometheus.clean
^^^^^^^^^^^^^^^^^^
Meta-state (This is a state that includes other states).
this state will undo everything performed in the
prometheus
meta-state in reverse order, i.e. stops the
service, removes the configuration file and then uninstalls the
package.
prometheus.service.clean
^^^^^^^^^^^^^^^^^^^^^^^^^^
This state will stop the prometheus service and disable it at boot time.
prometheus.config.clean
^^^^^^^^^^^^^^^^^^^^^^^^^
This state will remove the configuration of the prometheus service
and has a dependency on prometheus.service.clean
via
include list.
prometheus.package.clean
^^^^^^^^^^^^^^^^^^^^^^^^^^
This state will remove the prometheus package and has a depency on
prometheus.config.clean
via include list.
prometheus.package.archive.clean
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This state will uninstall the prometheus archive-extracted directory only.
prometheus.package.archive.alternatives.clean
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This state will uninstall the prometheus linux alternatives for archives only.
prometheus.package.repo.clean
^^^^^^^^^^^^^^^^^^^^^^^^^
This state will uninstall the prometheus upstream package repository only.
prometheus.exporters
This state will manage prometheus exporters according to Pillar
prometheus:exporters
. It includes sub-states like
prometheus.exporters.node
. If you don't want to use Pillar
data for this you may use the sub-states directly.