An open API service indexing awesome lists of open source software.

https://github.com/bitkill/ble-aggregator

🧮 Aggregates data from blea2mqtt
https://github.com/bitkill/ble-aggregator

Last synced: about 1 year ago
JSON representation

🧮 Aggregates data from blea2mqtt

Awesome Lists containing this project

README

          

# ᚼᛒle-aggregator

Aggregates data sent by [blea2mqtt](https://github.com/bitkill/blea2mqtt) and provides it to prometheus.

## Running the application in dev mode

You can run your application in dev mode that enables live coding using:
```shell script
./gradlew quarkusDev
```

> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.

## Packaging and running the application

The application can be packaged using:
```shell script
./gradlew build
```
It produces the `quarkus-run.jar` file in the `build/quarkus-app/` directory.
Be aware that it’s not an _über-jar_ as the dependencies are copied into the `build/quarkus-app/lib/` directory.

The application is now runnable using `java -jar build/quarkus-app/quarkus-run.jar`.

If you want to build an _über-jar_, execute the following command:
```shell script
./gradlew build -Dquarkus.package.type=uber-jar
```

The application, packaged as an _über-jar_, is now runnable using `java -jar build/*-runner.jar`.

## Creating a native executable

You can create a native executable using:
```shell script
./gradlew build -Dquarkus.package.type=native
```

Or, if you don't have GraalVM installed, you can run the native executable build in a container using:
```shell script
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true
```

You can then execute your native executable with: `./build/ble-aggregator-0.0.0-SNAPSHOT-runner`

If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.

## Related Guides

- Kotlin ([guide](https://quarkus.io/guides/kotlin)): Write your services in Kotlin

## Some PromQL sample queries

Get temperatures
```
devices_data{data_type="temperature"}
```

Get humidity
```
devices_data{data_type="humidity"}
```

Get battery
```
devices_data{data_type="battery"}
```

## Useful related applications
[mqtt-explorer](https://mqtt-explorer.com/)