summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 020a782789c3076674294436a47c94748342e8fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="Glances is a cross-platform curses-based system monitoring tool written in Python.">
    <meta name="keywords" content="monitoring, psutil, open-source">
    <meta name="author" content="Nicolas Hennion, Alessio Sergi, and Glances contributors">

    <title>Glances - An Eye on your system</title>

    <link rel="icon" type="image/x-icon" href="favicon.ico" />

    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
    <link rel="stylesheet" type="text/css" href="public/styles/vendors.css">
    <link rel="stylesheet" type="text/css" href="public/styles/main.css">

    <script type="text/javascript" src="public/js/vendors.js"></script>
    <script type="text/javascript" src="public/js/scripts.js"></script>
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="70">
    <nav class="navbar navbar-fixed-top" data-spy="affix" data-offset-top="20">
        <div class="container">
            <div class="navbar-header">
                <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
                    <span class="sr-only">Toggle navigation</span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                <a href="#"><img class="logo" src="public/images/glances.png" height="70"/></a>
            </div>
            <div class="collapse navbar-collapse" id="navbar">
                <ul class="nav navbar-nav navbar-right">
                    <li><a href="#features">Features</a></li>
                    <li><a href="#get-started">Get started</a></li>
                    <li><a href="#community">Community</a></li>
                    <li><a href="#documentation">Documentation</a></li>
                </ul>
            </div>
        </div>
    </nav>
    <header>
        <div class="container">
            <div class="row">
                <div class="col-md-12">
                    <p class="ad">An Eye on your system</p>
                    <br/>
                    <p>Glances is a cross-platform system monitoring tool written in Python.</p>
                    <img src="https://img.shields.io/pypi/v/glances.svg"/>
                    <br/>
                    <br/>
                    <a class="btn btn-github" href="https://github.com/nicolargo/glances">View on GitHub <span class="fa fa-github"></span></a>
                </div>
            </div>
        </div>
    </header>
    <div class="content">
        <section id="features">
            <div class="container">
                <div class="row">
                    <div class="col-xs-12">
                        <h2>Features</h2>
                    </div>
                    <div class="col-xs-12 col-sm-9 col-sm-push-3">
                        <div class="slider">
                            <img class="screenshot img-responsive" src="public/images/screenshot-wide.png" alt="">
                            <img class="screenshot img-responsive" src="public/images/screenshot-web.png" alt="">
                            <img class="screenshot img-responsive" src="public/images/screenshot-web2.png" alt="">
                            <img class="screenshot img-responsive" src="public/images/grafana.png" alt="">
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-3 col-sm-pull-9">
                        <ul class="plugin-list list-unstyled">
                            <li>CPU</li>
                            <li>Memory</li>
                            <li>Load</li>
                            <li>Process list</li>
                            <li>Network interface</li>
                            <li>Disk I/O</li>
                            <li>IRQ / Raid</li>
                            <li>Sensors</li>
                            <li>Filesystem<span class="hidden-xs"> (and folders)</span></li>
                            <li>Container (Docker and Podman supported)</li>
                            <li>Monitor</li>
                            <li>Alert</li>
                            <li>System info</li>
                            <li>Uptime</li>
                            <li>Quicklook<span class="hidden-xs"> (CPU, MEM, LOAD)</span></li>
                        </ul>
                    </div>
                </div>
                <div class="row">
                    <ul class="list-unstyled">
                        <li class="feature col-sm-6 col-lg-3">
                            <div class="feature-text">
                                <h3><span class="fa fa-cube" aria-hidden="true"></span>&nbsp;Cross-platform</h3>
                                <p>
                                    Written in Python, Glances will run on almost any plaftorm : GNU/Linux, FreeBSD, OS X and Windows.
                                </p>
                            </div>
                        </li>
                        <li class="feature col-sm-6 col-lg-3">
                            <div class="feature-text">
                                <h3><span class="fa fa-cogs" aria-hidden="true"></span>&nbsp;API</h3>
                                <p>
                                    Glances includes a XML-RPC server and a RESTful JSON API which can be used by another client software.
                                </p>
                            </div>
                        </li>
                        <li class="feature col-sm-6 col-lg-3">
                            <div class="feature-text">
                                <h3><span class="fa fa-globe" aria-hidden="true"></span>&nbsp;Web UI</h3>
                                <p>
                                    No terminal at hand ? Use the built-in Web UI and monitor your system from any device.
                                </p>
                            </div>
                        </li>
                        <li class="feature col-sm-6 col-lg-3">
                            <div class="feature-text">
                                <h3><span class="fa fa-upload" aria-hidden="true"></span>&nbsp;Export</h3>
                                <p>
                                    Export all system statistics to CSV, InfluxDB, Cassandra, OpenTSDB, StatsD, ElasticSearch or even RabbitMQ. Glances also provides a dedicated Grafana dashboard.
                                </p>
                            </div>
                        </li>
                    </ul>
                </div>
            </div>
        </section>
        <section id="get-started">
            <div class="container">
                <div class="row">
                    <div class="col-xs-12">
                        <h2>Get started</h2>

                        <p>Glances is on PyPI. By using PyPI, you are sure to have the latest stable version.</p>

                        <p>To install a minimal version:</p>

                        <pre>$ pip install --user glances</pre>

                        <p>For a full installation (all plugins):</p>

                        <pre>$ pip install --user glances[all]</pre>

                        <p>Others methods ? Read the <a href="https://github.com/nicolargo/glances/blob/master/README.rst">official installation documentation</a>.</p>
                    </div>
                </div>
            </div>
        </section>
        <section id="community">
            <div class="container">
                <div class="row">
                    <div class="col-xs-12">
                        <h2>Community</h2>
                        <p class="head">
                            Get help from others users or from the Glances developers and stay in touch with us. But never forget : always RTFM!
                        </p>
                        <ul class="row list-inline text-center">
                            <li class="col-xs-6 col-sm-4">
                                <a class="link-round" href="https://gitter.im/nicolargo/glances">
                                    <span class="fa fa-comments round" aria-hidden="true"></span>
                                    <h3>Chat for developers</h3>
                                </a>
                            </li>
                            <li class="col-xs-6 col-sm-4">
                                <a class="link-round" href="https://groups.google.com/forum/?hl=en#!forum/glances-users">
                                    <span class="fa fa-envelope round" aria-hidden="true"></span>
                                    <h3>Users' mailing list</h3>
                                </a>
                            </li>
                            <li class="col-xs-12 col-sm-4">
                                <a class="link-round" href="https://twitter.com/nicolargo">
                                    <span class="fa fa-twitter round" aria-hidden="true"></span>
                                    <h3>Twitter</h3>
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </section>
        <section id="documentation">
            <div class="container">
                <div class="row">
                    <div class="col-xs-12">
                        <h2>Documentation</h2>
                        <p class="head">
                            You want more informations or contribute to the Glances project ? Look at our user manual and the development wiki.
                        </p>
                        <ul class="row list-inline text-center">
                            <li class="col-xs-6">
                                <a class="link-round" href="http://glances.readthedocs.org/en/latest/">
                                    <span class="fa fa-book" aria-hidden="true"></span>
                                    <h3>Read the doc</h3>
                                </a>
                            </li>
                            <li class="col-xs-6">
                                <a class="link-round" href="https://github.com/nicolargo/glances/wiki">
                                    <span class="fa fa-file-text-o round" aria-hidden="true"></span>
                                    <h3>Wiki</h3>
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </section>
    </div>
    <footer>
        <div class="container">
            <div class="row">
                <div class="col-sm-offset-3 col-sm-6">
                    <p>© Copyright 2016 Nicolargo / Design by <a href="https://www.nclshart.net/">nclsHart</a></p>
                </div>
            </div>
        </div>
        <script>var _gaq=_gaq||[];_gaq.push(['_setAccount','UA-115490-11']);_gaq.push(['_trackPageview']);_gaq.push(['_trackPageLoadTime']);(function(){var ga=document.createElement('script');ga.type='text/javascript';ga.async=true;ga.src=('https:'==document.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js';var s=document.getElementsByTagName(