Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/usausa/prometheus-exporter-alternative
Prometheus Exporter alternative implementation by .NET
https://github.com/usausa/prometheus-exporter-alternative
dotnet dotnet-core grafana grafana-dashboard hyper-v hyperv librehardwaremonitor omron-2jcie-bl01 prometheus prometheus-exporter prometheus-metrics smart switchbot wfwattch2
Last synced: about 2 months ago
JSON representation
Prometheus Exporter alternative implementation by .NET
- Host: GitHub
- URL: https://github.com/usausa/prometheus-exporter-alternative
- Owner: usausa
- License: mit
- Created: 2024-11-25T01:03:47.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-02T08:41:28.000Z (about 2 months ago)
- Last Synced: 2024-12-02T09:33:23.782Z (about 2 months ago)
- Topics: dotnet, dotnet-core, grafana, grafana-dashboard, hyper-v, hyperv, librehardwaremonitor, omron-2jcie-bl01, prometheus, prometheus-exporter, prometheus-metrics, smart, switchbot, wfwattch2
- Language: C#
- Homepage:
- Size: 1.81 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prometheus-exporter-alternative
Prometheus Exporter alternative implementation by .NET
![Windows](https://github.com/usausa/prometheus-exporter-alternative/blob/main/Document/windows.png)
![Summary](https://github.com/usausa/prometheus-exporter-alternative/blob/main/Document/summary.png)
![Power](https://github.com/usausa/prometheus-exporter-alternative/blob/main/Document/power.png)# Metrics
## RS-WFWATTCH2
for [RS-WFWATTCH2](https://www.ratocsystems.com/products/sensor/watt/rswfwattch2/)
```
sensor_power
sensor_current
sensor_voltage
```## SwitchBot
for [SwitchBot Meter](https://www.switchbot.jp/products/switchbot-meter)
```
sensor_rssi
sensor_temperature
sensor_humidity
sensor_co2
```for [SwitchBot Plug Mini](https://www.switchbot.jp/products/switchbot-plug-mini)
```
sensor_power
```## 2JCIE-BU
for [2JCIE-BU](https://www.fa.omron.co.jp/products/family/3724/lineup.html)
![Environment](https://github.com/usausa/prometheus-exporter-alternative/blob/main/Document/environment.png)
```
sensor_temperature
sensor_humidity
sensor_light
sensor_pressure
sensor_noise
sensor_discomfort
sensor_heat
sensor_tvoc
sensor_co2
sensor_seismic
```## Libre Hardware Monitor
```
hardware_battery_charge
hardware_battery_degradation
hardware_battery_voltage
hardware_battery_current
hardware_battery_capacity
hardware_battery_rate
hardware_battery_remaining
hardware_cpu_load
hardware_cpu_clock
hardware_cpu_temperature
hardware_cpu_voltage
hardware_cpu_current
hardware_cpu_power
hardware_gpu_load
hardware_gpu_clock
hardware_gpu_fan
hardware_gpu_temperature
hardware_gpu_power
hardware_gpu_memory
hardware_gpu_throughput
hardware_io_control
hardware_io_fan
hardware_io_temperature
hardware_io_voltage
hardware_memory_used
hardware_memory_available
hardware_memory_load
hardware_storage_used
hardware_storage_bytes
hardware_storage_speed
hardware_storage_temperature
hardware_storage_life
hardware_storage_spare
hardware_storage_amplification
hardware_network_bytes
hardware_network_speed
hardware_network_load
```## S.M.A.R.T
![Environment](https://github.com/usausa/prometheus-exporter-alternative/blob/main/Document/smart.png)
```
smart_disk_byte_per_sector
smart_nvme_value
smart_generic_value
```## Performance Counter
```
performance_* (default)
```## Hyper-V
```
hyperv_vm_count
hyperv_vm_information
hyperv_vm_state
hyperv_vm_processor_load
hyperv_vm_memory_usage
hyperv_vm_uptime
```## Ping
```
ping_result_time
```## BLE signal strength
```
ble_rssi
```## WiFi signal strength
```
wifi_rssi
```# Install
## Windows
Copy files to install directory.
* PrometheusExporter.exe
* appsettings.json```
sc create PrometheusExporter binPath=(install directory)\PrometheusExporter.exe start=auto
``````
sc start PrometheusExporter
```## Linux
(TODO)
## Prometheus
Add targets to prometheus.yml.
```yaml
- job_name: 'alternative'
scrape_interval: 10s
static_configs:
- targets: ['192.168.1.101:9228']
```