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
- Host: GitHub
- URL: https://github.com/bitkill/ble-aggregator
- Owner: bitkill
- Created: 2021-10-16T18:25:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T22:39:38.000Z (over 1 year ago)
- Last Synced: 2025-03-29T12:46:50.916Z (about 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 158 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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/)