Go to file
2019-04-26 13:09:16 +02:00
docs chore(release): 1.0.0 [skip ci] 2019-04-25 20:23:29 +00:00
prometheus fix(FreeBSD): elegantly prevent service hang 2019-04-26 13:09:16 +02:00
test/integration/default ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
.gitignore ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
.travis.yml ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
AUTHORS.md chore(release): 1.0.0 [skip ci] 2019-04-25 20:23:29 +00:00
CHANGELOG.md chore(release): 1.0.0 [skip ci] 2019-04-25 20:23:29 +00:00
commitlint.config.js ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
FORMULA chore(release): 1.0.0 [skip ci] 2019-04-25 20:23:29 +00:00
Gemfile ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
kitchen.yml ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
LICENSE ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
pillar.example feat(prometheus): basic setup based on template-formula 2019-04-25 22:14:39 +02:00
pre-commit_semantic-release.sh ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
release-rules.js ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00
release.config.js ci(travis): use structure of template-formula 2019-04-25 22:14:39 +02:00

prometheus-formula ================

Travis CI Build Status Semantic Release

Manage Prometheus.

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.package ^^^^^^^^^^^^^^^^^^^^

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.