InfluxDB: Difference between revisions
(Replaced content with "InfluxDB 0.8 =Chronograf= ''Chronograf is a single binary web application that you can deploy behind your firewall to do ad hoc exploration of your time series data ...") |
No edit summary |
||
| Line 1: | Line 1: | ||
[[InfluxDB 0.8]] |
Vers la page de la version 0.8 [[InfluxDB 0.8]] |
||
http://influxdb.com/ |
|||
https://github.com/influxdb/influxdb |
|||
open-source distributed time series database with no external dependencies. |
|||
(metrics, events, and analytics) |
|||
developped in [[Go]] language |
|||
Voir https://speakerdeck.com/pauldix/introducing-influxdb-an-open-source-distributed-time-series-database |
|||
Demo sur http://play.influxdb.com/ ([https://github.com/influxdb/play.influxdb.org source code]) |
|||
=InfluxDB @ AIR= |
|||
* [[SmartCampus]] |
|||
=Installation= |
|||
http://influxdb.com/download/ |
|||
==On Linux (Debian)== |
|||
<pre> |
|||
# for 64-bit systems |
|||
wget http://influxdb.s3.amazonaws.com/influxdb_0.9.3_amd64.deb |
|||
sudo dpkg -i influxdb_0.9.3_amd64.deb |
|||
</pre> |
|||
==On OS X== |
|||
<pre> |
|||
brew update |
|||
brew install influxdb |
|||
</pre> |
|||
=Démarrage= |
|||
<pre> |
|||
sudo /etc/init.d/influxdb start |
|||
</pre> |
|||
Naviguez sur http://localhost:8083/ |
|||
username : root & password : root |
|||
Pensez à changer ces valeurs dans /usr/local/etc/influxdb.conf quand vous mettez influxdb en production |
|||
=Premiers Pas= |
|||
==Via l'interface Web== |
|||
Depuis l'interface web http://localhost:8083/, Créez une base : mydb |
|||
Revision as of 08:29, 13 September 2015
Vers la page de la version 0.8 InfluxDB 0.8
https://github.com/influxdb/influxdb
open-source distributed time series database with no external dependencies.
(metrics, events, and analytics)
developped in Go language
Voir https://speakerdeck.com/pauldix/introducing-influxdb-an-open-source-distributed-time-series-database
Demo sur http://play.influxdb.com/ (source code)
InfluxDB @ AIR
Installation
On Linux (Debian)
# for 64-bit systems wget http://influxdb.s3.amazonaws.com/influxdb_0.9.3_amd64.deb sudo dpkg -i influxdb_0.9.3_amd64.deb
On OS X
brew update brew install influxdb
Démarrage
sudo /etc/init.d/influxdb start
Naviguez sur http://localhost:8083/ username : root & password : root
Pensez à changer ces valeurs dans /usr/local/etc/influxdb.conf quand vous mettez influxdb en production
Premiers Pas
Via l'interface Web
Depuis l'interface web http://localhost:8083/, Créez une base : mydb
Chronograf
Chronograf is a single binary web application that you can deploy behind your firewall to do ad hoc exploration of your time series data in InfluxDB.
Installation
wget https://s3.amazonaws.com/get.influxdb.org/chronograf/chronograf_0.1.0_amd64.deb sudo dpkg -i chronograf_0.1.0_amd64.deb sudo service chronograf start