117 lines
3.7 KiB
Markdown
117 lines
3.7 KiB
Markdown
# Yanic
|
|
```
|
|
__ __ _
|
|
\ \ / /_ _ _ __ (_) ___
|
|
\ V / _` | '_ \| |/ __|
|
|
| | (_| | | | | | (__
|
|
|_|\__,_|_| |_|_|\___|
|
|
Yet another node info collector
|
|
```
|
|
|
|
[![Build Status](https://travis-ci.org/FreifunkBremen/yanic.svg?branch=master)](https://travis-ci.org/FreifunkBremen/yanic)
|
|
[![CircleCI](https://circleci.com/gh/FreifunkBremen/yanic/tree/master.svg?style=shield)](https://circleci.com/gh/FreifunkBremen/yanic/tree/master)
|
|
[![Coverage Status](https://coveralls.io/repos/github/FreifunkBremen/yanic/badge.svg?branch=master)](https://coveralls.io/github/FreifunkBremen/yanic?branch=master)
|
|
[![codecov](https://codecov.io/gh/FreifunkBremen/yanic/branch/master/graph/badge.svg)](https://codecov.io/gh/FreifunkBremen/yanic)
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/FreifunkBremen/yanic)](https://goreportcard.com/report/github.com/FreifunkBremen/yanic)
|
|
|
|
`yanic` is a respondd client that fetches, stores and publishes information about a Freifunk network. The goals:
|
|
* Generating JSON for [Meshviewer](https://github.com/ffrgb/meshviewer)
|
|
* Storing statistics in [InfluxDB](https://influxdata.com/) or [Graphite](https://graphiteapp.org/) to be analyzed by [Grafana](http://grafana.org/)
|
|
* Provide a little webserver for a standalone installation with a meshviewer
|
|
|
|
## How it works
|
|
|
|
In the first step Yanic sends a multicast message to the group `ff02:0:0:0:0:0:2:1001` and port `1001`.
|
|
Recently seen nodes that does not reply are requested via a unicast message.
|
|
|
|
## [Documentation](https://www.gitbook.com/book/freifunkbremen/yanic/details)
|
|
* [Webview](https://freifunkbremen.gitbooks.io/yanic/content/)
|
|
* [PDF](https://www.gitbook.com/download/pdf/book/freifunkbremen/yanic)
|
|
* [Mobi](https://www.gitbook.com/download/mobi/book/freifunkbremen/yanic)
|
|
* [ePUB](https://www.gitbook.com/download/epub/book/freifunkbremen/yanic)
|
|
|
|
## Configuration
|
|
Read comments in [config_example.toml](config_example.toml) for more information.
|
|
|
|
## Running
|
|
|
|
Yanic provides several commands:
|
|
|
|
### Usage
|
|
|
|
Run Yanic without any arguments to get the usage information:
|
|
|
|
```
|
|
Usage:
|
|
yanic [command]
|
|
|
|
Available Commands:
|
|
help Help about any command
|
|
import Imports global statistics from the given RRD files, requires InfluxDB
|
|
query Sends a query on the interface to the destination and waits for a response
|
|
serve Runs the yanic server
|
|
|
|
Flags:
|
|
-h, --help help for yanic
|
|
--timestamps Enables timestamps for log output
|
|
|
|
Use "yanic [command] --help" for more information about a command.
|
|
```
|
|
|
|
#### Serve
|
|
|
|
```
|
|
Usage:
|
|
yanic serve [flags]
|
|
|
|
Examples:
|
|
yanic serve --config /etc/yanic.toml
|
|
|
|
Flags:
|
|
-c, --config string Path to configuration file (default "config.toml")
|
|
-h, --help help for serve
|
|
```
|
|
|
|
#### Import
|
|
|
|
```
|
|
Usage:
|
|
yanic import <file.rrd> [flags]
|
|
|
|
Examples:
|
|
yanic import --config /etc/yanic.toml olddata.rrd
|
|
|
|
Flags:
|
|
-c, --config string Path to configuration file (default "config.toml")
|
|
-h, --help help for import
|
|
```
|
|
|
|
|
|
#### Query
|
|
|
|
```
|
|
Usage:
|
|
yanic query <interface> <destination> [flags]
|
|
|
|
Examples:
|
|
yanic query wlan0 "fe80::eade:27ff:dead:beef"
|
|
|
|
Flags:
|
|
-h, --help help for query
|
|
--wait int Seconds to wait for a response (default 1)
|
|
```
|
|
|
|
|
|
### Live
|
|
* [meshviewer](https://map.bremen.freifunk.net) **Freifunk Bremen** with a patch to show state-version of `nodes.json`
|
|
* [grafana](https://grafana.bremen.freifunk.net) **Freifunk Bremen** show data of InfluxDB
|
|
|
|
## Related projects
|
|
|
|
Collecting data from respondd:
|
|
* [HopGlass Server](https://github.com/plumpudding/hopglass-server) written in Node.js
|
|
|
|
Respondd for servers:
|
|
* [ffnord-alfred-announce](https://github.com/ffnord/ffnord-alfred-announce) from FreiFunkNord
|
|
* [respondd](https://github.com/Sunz3r/ext-respondd) from Sunz3r
|