1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-26 16:16:09 +02:00

Add InfluxDB exmples

This commit is contained in:
Pavel Odintsov 2015-08-04 16:15:44 +03:00
parent 1990a394dd
commit 84fb90293b
3 changed files with 9 additions and 3 deletions

View File

@ -41,7 +41,7 @@ Features:
- Can trigger block script if certain IP loads network with a large amount of packets/bytes/flows per second
- Thresholds could be configured in per subnet basis with hostgroups feature
- Could [announce blocked IPs](docs/EXABGP_INTEGRATION.md) to BGP router with [ExaBGP](https://github.com/Exa-Networks/exabgp)
- Have integration with [Graphite](docs/GRAPHITE_INTEGRATION.md)
- Full integration with [Graphite](docs/GRAPHITE_INTEGRATION.md) and [InfluxDB](docs/INFLUXDB_INTEGRATION.md)
- Deep packet inspection for attack traffic
- netmap support (open source; wire speed processing; only Intel hardware NICs or any hypervisor VM type)
- Could filter out NetFLOW v5 flows or sFLOW packets with script implemented in LUA (useful for port exclude)

View File

@ -1,8 +1,10 @@
### InfluxDB integration
You could install InfluxDB from [binary packages](https://influxdb.com/download/index.html)
InfluxDB is a very fast time series database written in awesome Go language. You could find some performance tests for InfluxDB and Graphite [here](https://groups.google.com/forum/#!topic/influxdb/0VeUQCqzgVg).
For Debian 8 Jessie I could offer part of manual here:
You could install InfluxDB from [binary packages](https://influxdb.com/download/index.html).
For Debian 8 Jessie I could offer part of this manual here:
```bash
wget https://s3.amazonaws.com/influxdb/influxdb_0.9.2_amd64.deb
sudo dpkg -i influxdb_0.9.2_amd64.deb
@ -51,3 +53,5 @@ name: fastnetmon.outgoing.pps
time mean
1970-01-01T00:00:00Z 334968.38950276235
```
Or you could install [Grafana](http://grafana.org) and make awesome Dashboard ;)

View File

@ -170,6 +170,8 @@ exabgp_announce_whole_subnet = no
exabgp_flow_spec_announces = no
# Graphite monitoring
# We also have support for InfluxDB, please check our reference:
# https://github.com/FastVPSEestiOu/fastnetmon/blob/master/docs/INFLUXDB_INTEGRATION.md
graphite = off
graphite_host = 127.0.0.1
graphite_port = 2003