Compare commits
4 Commits
release-2.
...
9ff168317e
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ff168317e | |||
| a6a3a8b180 | |||
| e1238b1ba0 | |||
| b545b99135 |
11
README.md
11
README.md
@@ -17,6 +17,7 @@ Table of contents
|
|||||||
- [1.1. What kind of data](#11-what-kind-of-data)
|
- [1.1. What kind of data](#11-what-kind-of-data)
|
||||||
- [1.2. Data-Usage](#12-data-usage)
|
- [1.2. Data-Usage](#12-data-usage)
|
||||||
- [1.3. Tools used](#13-tools-used)
|
- [1.3. Tools used](#13-tools-used)
|
||||||
|
- [1.4. Architecture](#14-architecture)
|
||||||
- [2. Usage/Installation](#2-usageinstallation)
|
- [2. Usage/Installation](#2-usageinstallation)
|
||||||
- [2.1. Prerequisites](#21-prerequisites)
|
- [2.1. Prerequisites](#21-prerequisites)
|
||||||
- [2.2. Choosing an Export-Method](#22-choosing-an-export-method)
|
- [2.2. Choosing an Export-Method](#22-choosing-an-export-method)
|
||||||
@@ -81,6 +82,14 @@ e.g.
|
|||||||
The program uses `tcpdump` for listening in a subProcess and then extract the metadata when packets arrive.
|
The program uses `tcpdump` for listening in a subProcess and then extract the metadata when packets arrive.
|
||||||
|
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## 1.4. Architecture
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
The system heavily uses NodeJS-Streams to read, transform and pass data around.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
# 2. Usage/Installation
|
# 2. Usage/Installation
|
||||||
@@ -256,7 +265,7 @@ Variable|Description
|
|||||||
Variable|Default|Description
|
Variable|Default|Description
|
||||||
---|---|---
|
---|---|---
|
||||||
`LOGLEVEL` | INFO | Loglevel
|
`LOGLEVEL` | INFO | Loglevel
|
||||||
`WIFI_INTERFACE` | wlan0 | Token with write-access
|
`WIFI_INTERFACE` | wlan0 | Wifi-Interface name in Monitor-Mode
|
||||||
~~`HOSTNAME`~~ | ~~Device's Hostname~~ | ~~Hostname to use as global hostname-tag~~ *(Unused)*
|
~~`HOSTNAME`~~ | ~~Device's Hostname~~ | ~~Hostname to use as global hostname-tag~~ *(Unused)*
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|||||||
9
build/docker-multiarch.sh
Executable file
9
build/docker-multiarch.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
TAG="ruakij/rfmon-to-influx"
|
||||||
|
PLATFORM="linux/amd64,linux/arm64/v8,linux/arm/v7"
|
||||||
|
EXTRA_ARGS=""
|
||||||
|
|
||||||
|
docker buildx build \
|
||||||
|
--platform $PLATFORM \
|
||||||
|
--tag $TAG \
|
||||||
|
$EXTRA_ARGS \
|
||||||
|
.
|
||||||
7
build/docker-ownarch.sh
Normal file
7
build/docker-ownarch.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
TAG="ruakij/rfmon-to-influx"
|
||||||
|
EXTRA_ARGS=""
|
||||||
|
|
||||||
|
docker build \
|
||||||
|
--tag $TAG \
|
||||||
|
$EXTRA_ARGS \
|
||||||
|
.
|
||||||
BIN
docs/img/1.4.architecture.png
Normal file
BIN
docs/img/1.4.architecture.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 147 KiB |
@@ -47,13 +47,6 @@ class PacketStreamFactory extends Transform{
|
|||||||
}
|
}
|
||||||
|
|
||||||
_transform(chunk, encoding, next){
|
_transform(chunk, encoding, next){
|
||||||
if(!chunk){
|
|
||||||
const err = "Chunk was invalid!";
|
|
||||||
logger.error(err);
|
|
||||||
next(err);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let packet = new Packet();
|
let packet = new Packet();
|
||||||
|
|
||||||
const lines = chunk.split("\n");
|
const lines = chunk.split("\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user