Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / templates / munstrap / README.md @ a0f3aded

Historique | Voir | Annoter | Télécharger (995 octets)

1
Munstrap
2
========
3

    
4
Alternative Munin 2.x templates based on Twitter Bootstrap 3
5

    
6
![Sample](sample.jpg)
7

    
8
Installation
9
------------
10

    
11
Get Munstrap:
12

    
13
```
14
cd /etc/munin
15
git clone https://github.com/jonnymccullagh/munstrap.git
16
```
17

    
18
Replace the Munin stock template by Munstrap (don't worry, there is a backup of the old files):
19

    
20
```
21
cp -rb munstrap/templates .
22
cp -rb munstrap/static .
23
```
24

    
25
Clean the old generated files:
26

    
27
```
28
rm -rf /var/www/munin/*
29
```
30

    
31
Take a coffee and wait some minutes for the html generation by Munin.
32

    
33
Upgrades
34
--------
35

    
36
Get the last changes from Munstrap:
37

    
38
```
39
cd /etc/munin/munstrap
40
git pull
41
```
42

    
43
Replace the old version by the new one:
44

    
45
```
46
cd /etc/munin
47
rm -rf templates static
48
cp -r munstrap/templates .
49
cp -r munstrap/static .
50
```
51

    
52
Revert to stock
53
---------------
54

    
55
```
56
cd /etc/munin
57
rm -rf templates static
58
mv templates~ templates
59
mv static~ static
60
```
61

    
62
Samples
63
-------
64

    
65
View of a specific node:
66
![Node view](sample-node.jpg)
67

    
68
Zoom feature:
69
![Zoom view](sample-zoom.jpg)