neilmunday / Salt-Minion-Inventory

Salt Minion Inventory provides a web based interface to your SaltStack minions to view their state.
GNU General Public License v3.0
36 stars 4 forks source link
bootstrap javascript jquery minion monitoring mysql php python saltstack web

Salt-Minion-Inventory

Provides a web based interface to your SaltStack minions to view their state, hardware, software and package information.

Bootstrap, Datatables.net and jQuery are used to create the user interface.

Data about the minions are stored in a MySQL database.

SaltStack events, reactors and a runner are used to keep the data up to date.

Minions only report their state, packages etc. if they have changed. Minions will cache their data's md5sum value to /var/tmp/salt_inventory_audit.cache

Screen Shots

Overview:

Overview

Minions:

Minions

Package list for a minion:

Packages

Minion info:

Minion Info Summary

Minion Info Packages

Package diff for two minions:

Package Diff

Requirements

Notes:

Installation

SaltStack Onedir

If you have are using SaltStack's Onedir installation option, you will need to perform the following steps:

  1. Install your operating system's MySQL/MariaDB development libraries, e.g.
sudo dnf install mariadb-devel
  1. Install the required Python modules:
sudo salt-pip install configparser
sudo salt-pip install mysqlclient

MySQL Database

Create a database, e.g. salt_minion to store the minion information like so:

mysql -u root < database.sql

Create a user for the database:

GRANT USAGE ON *.* TO 'salt_minion'@'%' IDENTIFIED BY PASSWORD 'salt_minion_password';

GRANT ALL PRIVILEGES ON `salt\_minion`.* TO 'salt_minion'@'%' WITH GRANT OPTION;

Salt Configuration

Copy the contents of /srv directory to the /srv directory on your SaltStack master. You may want to exclude the top.sls files from the pillar and salt directories as these are just examples that show how to include the required files.

Create a directory to store the runner on the SaltMaster:

mkdir -p /var/lib/salt/runners

Copy runners/inventory.py and runners/inventory.ini into the directory. Note: change the MySQL variables to match the credentials that you used when creating the database above in inventory.ini.

Edit /etc/salt/master to enable the runner, presence events and reactors for responding to events:

extension_modules: /var/lib/salt

presence_events: True

reactor:
  - 'salt/presence/present':
    - /srv/reactor/inventory/present.sls
  - 'inventory/audit':
    - /srv/reactor/inventory/audit.sls

By default minions will run audit themselves once every six hours. This can be changed by editing /srv/pillar/inventory.sls

Now restart the SaltMaster:

systemctl restart salt-master

Web Interface

Copy the contents of the html directory to a directory on your web server that is being served, e.g. /var/www/html

Create a file in the common folder called dbcreds.php with the following contents (adjusted to match your MySQL database settings):

<?php
define("DB_HOST", "localhost");
define("DB_NAME", "salt_minion");
define("DB_PASS", "salt_minion_password");
define("DB_USER", "salt_minion");
?>

Salt Commands

To force a minion to run an audit, run the following command:

salt minion01 inventory.audit force=True

Debugging

If you experience problems then check the following files:

Check the events that are being triggered and the results by watching for events on the Salt master:

salt-run state.event pretty=True

Run the inventory.audit function in debug mode:

salt -l debug '*' inventory.audit force=True

To test which minions have been detected by presence events:

salt-run manage.present

Testing

A Docker compose configuration is provided for testing purposes. See tests for further details.

Authors

Contributors

The following people have contributed code to the project:

Licensing