mirror of
https://github.com/jimeh/macos-battery-exporter.git
synced 2026-02-19 09:26:40 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1d4f70d98 | ||
|
7b2e98e150
|
|||
|
3c272d6d3d
|
|||
|
dc62db2ace
|
|||
|
|
39e3b69c82 | ||
|
148994ca50
|
|||
|
436e4a4b01
|
|||
|
24bd7d6af3
|
2
.github/.release-please-manifest.json
vendored
2
.github/.release-please-manifest.json
vendored
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "0.0.4"
|
||||
".": "0.0.6"
|
||||
}
|
||||
|
||||
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -16,6 +16,7 @@ jobs:
|
||||
- name: Print version
|
||||
run: |
|
||||
./bin/macos-battery-exporter -v
|
||||
./bin/macos-battery-exporter
|
||||
|
||||
lint:
|
||||
name: Lint
|
||||
|
||||
@@ -44,6 +44,6 @@ brews:
|
||||
system "#{bin}/macos-battery-exporter -v"
|
||||
repository:
|
||||
owner: jimeh
|
||||
name: homebrew-macos-battery-exporter
|
||||
name: homebrew-tap
|
||||
branch: main
|
||||
token: "{{ .Env.BREW_TAP_TOKEN }}"
|
||||
|
||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,5 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
## [0.0.6](https://github.com/jimeh/macos-battery-exporter/compare/v0.0.5...v0.0.6) (2023-12-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **output:** write log output to stderr by default instead of stdout ([7b2e98e](https://github.com/jimeh/macos-battery-exporter/commit/7b2e98e150f9ee6d630023879395df0912047667))
|
||||
|
||||
## [0.0.5](https://github.com/jimeh/macos-battery-exporter/compare/v0.0.4...v0.0.5) (2023-12-16)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **go:** rename prom package to suitable prombat ([436e4a4](https://github.com/jimeh/macos-battery-exporter/commit/436e4a4b01d96654b7012f795f2d305ca4084681))
|
||||
|
||||
## [0.0.4](https://github.com/jimeh/macos-battery-exporter/compare/v0.0.3...v0.0.4) (2023-12-16)
|
||||
|
||||
|
||||
|
||||
41
README.md
41
README.md
@@ -10,14 +10,15 @@
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/jimeh/macos-battery-exporter/releases"><img src="https://img.shields.io/github/v/tag/jimeh/macos-battery-exporter?label=release" alt="GitHub tag (latest SemVer)"></a>
|
||||
<a href="https://pkg.go.dev/github.com/jimeh/macos-battery-exporter"><img src="https://img.shields.io/badge/%E2%80%8B-reference-387b97.svg?logo=go&logoColor=white" alt="Go Reference"></a>
|
||||
<a href="https://github.com/jimeh/macos-battery-exporter/issues"><img src="https://img.shields.io/github/issues-raw/jimeh/macos-battery-exporter.svg?style=flat&logo=github&logoColor=white" alt="GitHub issues"></a>
|
||||
<a href="https://github.com/jimeh/macos-battery-exporter/pulls"><img src="https://img.shields.io/github/issues-pr-raw/jimeh/macos-battery-exporter.svg?style=flat&logo=github&logoColor=white" alt="GitHub pull requests"></a>
|
||||
<a href="https://github.com/jimeh/macos-battery-exporter/blob/main/LICENSE"><img src="https://img.shields.io/github/license/jimeh/macos-battery-exporter.svg?style=flat" alt="License Status"></a>
|
||||
</p>
|
||||
|
||||
A Prometheus exporter for macOS which exposes most useful details available from
|
||||
`ioreg`. Includes a lot more details than what `node_exporter` supports via it's
|
||||
`node_power_supply_*` metrics.
|
||||
A Prometheus exporter for macOS battery information, exposing wide range of
|
||||
details available from `ioreg` about batteries. Includes a lot more details than
|
||||
what `node_exporter` supports via its `node_power_supply_*` metrics.
|
||||
|
||||
## Installation
|
||||
|
||||
@@ -28,12 +29,11 @@ Binary releases are available on the
|
||||
|
||||
### Homebrew
|
||||
|
||||
You can install it from the
|
||||
[`jimeh/macos-battery-exporter`](https://github.com/jimeh/homebrew-macos-battery-exporter)
|
||||
You can install it from the [`jimeh/tap`](https://github.com/jimeh/homebrew-tap)
|
||||
Tap:
|
||||
|
||||
```bash
|
||||
brew install jimeh/macos-battery-exporter/macos-battery-exporter
|
||||
brew install jimeh/tap/macos-battery-exporter
|
||||
```
|
||||
|
||||
#### Service
|
||||
@@ -89,19 +89,22 @@ macos-battery-exporter
|
||||
macos_battery_cell_disconnect_count{serial="ZTMDHJEZ8JKMYVAJKU"} 0
|
||||
# HELP macos_battery_charge_rate_amps Current charge rate in Ah.
|
||||
# TYPE macos_battery_charge_rate_amps gauge
|
||||
macos_battery_charge_rate_amps{serial="ZTMDHJEZ8JKMYVAJKU"} -0.927
|
||||
macos_battery_charge_rate_amps{serial="ZTMDHJEZ8JKMYVAJKU"} -1.004
|
||||
# HELP macos_battery_charge_rate_watts Current charge rate in Wh.
|
||||
# TYPE macos_battery_charge_rate_watts gauge
|
||||
macos_battery_charge_rate_watts{serial="ZTMDHJEZ8JKMYVAJKU"} -10.297116
|
||||
macos_battery_charge_rate_watts{serial="ZTMDHJEZ8JKMYVAJKU"} -12.712648
|
||||
# HELP macos_battery_count Total number of batteries.
|
||||
# TYPE macos_battery_count gauge
|
||||
macos_battery_count 1
|
||||
# HELP macos_battery_current_capacity_amps Current charge capacity in Ah.
|
||||
# TYPE macos_battery_current_capacity_amps gauge
|
||||
macos_battery_current_capacity_amps{serial="ZTMDHJEZ8JKMYVAJKU"} 1.127
|
||||
macos_battery_current_capacity_amps{serial="ZTMDHJEZ8JKMYVAJKU"} 5.39
|
||||
# HELP macos_battery_current_capacity_watts Current charge capacity in Wh.
|
||||
# TYPE macos_battery_current_capacity_watts gauge
|
||||
macos_battery_current_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 12.518716
|
||||
macos_battery_current_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 68.24818
|
||||
# HELP macos_battery_current_percentage Current battery charge percentage.
|
||||
# TYPE macos_battery_current_percentage gauge
|
||||
macos_battery_current_percentage{serial="ZTMDHJEZ8JKMYVAJKU"} 18
|
||||
macos_battery_current_percentage{serial="ZTMDHJEZ8JKMYVAJKU"} 91
|
||||
# HELP macos_battery_cycle_count Current battery cycle count.
|
||||
# TYPE macos_battery_cycle_count counter
|
||||
macos_battery_cycle_count{serial="ZTMDHJEZ8JKMYVAJKU"} 15
|
||||
@@ -110,7 +113,7 @@ macos_battery_cycle_count{serial="ZTMDHJEZ8JKMYVAJKU"} 15
|
||||
macos_battery_design_capacity_amps{serial="ZTMDHJEZ8JKMYVAJKU"} 6.249
|
||||
# HELP macos_battery_design_capacity_watts Design capacity in Wh.
|
||||
# TYPE macos_battery_design_capacity_watts gauge
|
||||
macos_battery_design_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 69.413892
|
||||
macos_battery_design_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 79.124838
|
||||
# HELP macos_battery_fully_charged Indicates if the battery is fully charged.
|
||||
# TYPE macos_battery_fully_charged gauge
|
||||
macos_battery_fully_charged{serial="ZTMDHJEZ8JKMYVAJKU"} 0
|
||||
@@ -125,19 +128,19 @@ macos_battery_info{built_in="true",device_name="ayzo3hgs",serial="ZTMDHJEZ8JKMYV
|
||||
macos_battery_is_charging{serial="ZTMDHJEZ8JKMYVAJKU"} 0
|
||||
# HELP macos_battery_max_capacity_amps Design capacity in Ah.
|
||||
# TYPE macos_battery_max_capacity_amps gauge
|
||||
macos_battery_max_capacity_amps{serial="ZTMDHJEZ8JKMYVAJKU"} 6.262
|
||||
macos_battery_max_capacity_amps{serial="ZTMDHJEZ8JKMYVAJKU"} 6.271
|
||||
# HELP macos_battery_max_capacity_watts Design capacity in Wh.
|
||||
# TYPE macos_battery_max_capacity_watts gauge
|
||||
macos_battery_max_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 69.558296
|
||||
macos_battery_max_capacity_watts{serial="ZTMDHJEZ8JKMYVAJKU"} 79.403402
|
||||
# HELP macos_battery_temperature_celsius Current battery temperature in °C.
|
||||
# TYPE macos_battery_temperature_celsius gauge
|
||||
macos_battery_temperature_celsius{serial="ZTMDHJEZ8JKMYVAJKU"} 30.47
|
||||
macos_battery_temperature_celsius{serial="ZTMDHJEZ8JKMYVAJKU"} 30.53
|
||||
# HELP macos_battery_time_remaining_seconds Estimated time remaining until battery is fully charged or discharged.
|
||||
# TYPE macos_battery_time_remaining_seconds gauge
|
||||
macos_battery_time_remaining_seconds{serial="ZTMDHJEZ8JKMYVAJKU"} 3540
|
||||
macos_battery_time_remaining_seconds{serial="ZTMDHJEZ8JKMYVAJKU"} 14040
|
||||
# HELP macos_battery_voltage_volts Current battery voltage in V.
|
||||
# TYPE macos_battery_voltage_volts gauge
|
||||
macos_battery_voltage_volts{serial="ZTMDHJEZ8JKMYVAJKU"} 11.108
|
||||
macos_battery_voltage_volts{serial="ZTMDHJEZ8JKMYVAJKU"} 12.662
|
||||
```
|
||||
|
||||
### Write to File
|
||||
@@ -155,3 +158,7 @@ macos-battery-exporter -s
|
||||
```bash
|
||||
curl http://localhost:9108/metrics
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT](https://github.com/jimeh/macos-battery-exporter/blob/main/LICENSE)
|
||||
|
||||
148
main.go
148
main.go
@@ -5,104 +5,170 @@ package main
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"io"
|
||||
"log/slog"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/jimeh/macos-battery-exporter/prom"
|
||||
"github.com/jimeh/macos-battery-exporter/prombat"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
"github.com/prometheus/common/expfmt"
|
||||
)
|
||||
|
||||
var (
|
||||
name = "macos-battery-exporter"
|
||||
version = "0.0.0-dev"
|
||||
commit = "unknown"
|
||||
)
|
||||
|
||||
outputFlag = flag.String(
|
||||
type configuration struct {
|
||||
Output string
|
||||
Server bool
|
||||
Bind string
|
||||
Port int
|
||||
Namespace string
|
||||
LogLevel string
|
||||
LogDevice string
|
||||
PrintVersion bool
|
||||
}
|
||||
|
||||
func configure() (*configuration, *flag.FlagSet, error) {
|
||||
fs := flag.NewFlagSet(name, flag.ExitOnError)
|
||||
fs.Usage = func() {
|
||||
fmt.Fprintf(fs.Output(),
|
||||
"usage: %s [<options>]\n\n", fs.Name(),
|
||||
)
|
||||
fs.PrintDefaults()
|
||||
}
|
||||
|
||||
config := &configuration{}
|
||||
|
||||
fs.StringVar(&config.Output,
|
||||
"o", "", "Output file to write to in Prometheus format",
|
||||
)
|
||||
serverFlag = flag.Bool("s", false, "Run as a Prometheus metrics server")
|
||||
bindFlag = flag.String(
|
||||
fs.BoolVar(&config.Server,
|
||||
"s", false, "Run as a Prometheus metrics server",
|
||||
)
|
||||
fs.StringVar(&config.Bind,
|
||||
"b", "127.0.0.1", "Bind address to run server on",
|
||||
)
|
||||
portFlag = flag.Int("p", 9108, "Port to run server on")
|
||||
namespaceFlag = flag.String(
|
||||
"n", prom.DefaultNamespace, "Namespace for metrics",
|
||||
fs.IntVar(&config.Port, "p", 9108, "Port to run server on")
|
||||
fs.StringVar(&config.Namespace,
|
||||
"n", prombat.DefaultNamespace, "Namespace for metrics",
|
||||
)
|
||||
logLevelFlag = flag.String("l", "info", "Log level")
|
||||
versionFlag = flag.Bool("v", false, "Print version and exit")
|
||||
)
|
||||
fs.StringVar(&config.LogLevel,
|
||||
"l", "info", "Log level",
|
||||
)
|
||||
fs.StringVar(&config.LogDevice,
|
||||
"d", "stderr", "Log output device (stderr or stdout)",
|
||||
)
|
||||
fs.BoolVar(&config.PrintVersion,
|
||||
"v", false, "Print version and exit",
|
||||
)
|
||||
|
||||
err := fs.Parse(os.Args[1:])
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
return config, fs, nil
|
||||
}
|
||||
|
||||
func main() {
|
||||
if err := mainE(); err != nil {
|
||||
log.Fatal(err)
|
||||
slog.Error(err.Error())
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
func mainE() error {
|
||||
flag.Parse()
|
||||
|
||||
err := setupSLog(*logLevelFlag)
|
||||
config, _, err := configure()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if *versionFlag {
|
||||
fmt.Printf("macos-battery-exporter %s (%s)\n", version, commit)
|
||||
err = setupSLog(config.LogDevice, config.LogLevel)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if config.PrintVersion {
|
||||
fmt.Printf("%s %s (%s)\n", name, version, commit)
|
||||
return nil
|
||||
}
|
||||
|
||||
if *serverFlag {
|
||||
opts := prom.ServerOptions{
|
||||
Bind: *bindFlag,
|
||||
Port: *portFlag,
|
||||
}
|
||||
|
||||
return prom.RunServer(
|
||||
*namespaceFlag,
|
||||
prometheus.DefaultRegisterer.(*prometheus.Registry),
|
||||
opts,
|
||||
)
|
||||
if config.Server {
|
||||
return runServer(config)
|
||||
}
|
||||
|
||||
registry := prometheus.NewRegistry()
|
||||
err = registry.Register(prom.NewCollector(*namespaceFlag))
|
||||
metrics, err := renderMetrics(config)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if config.Output != "" {
|
||||
return writeToFile(metrics, config.Output)
|
||||
}
|
||||
|
||||
fmt.Print(metrics)
|
||||
return nil
|
||||
}
|
||||
|
||||
func runServer(config *configuration) error {
|
||||
opts := prombat.ServerOptions{
|
||||
Bind: config.Bind,
|
||||
Port: config.Port,
|
||||
}
|
||||
|
||||
return prombat.RunServer(
|
||||
config.Namespace,
|
||||
prometheus.DefaultRegisterer.(*prometheus.Registry),
|
||||
opts,
|
||||
)
|
||||
}
|
||||
|
||||
func renderMetrics(config *configuration) (string, error) {
|
||||
registry := prometheus.NewRegistry()
|
||||
err := registry.Register(prombat.NewCollector(config.Namespace))
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
gatherers := prometheus.Gatherers{registry}
|
||||
metricFamilies, err := gatherers.Gather()
|
||||
if err != nil {
|
||||
return err
|
||||
return "", err
|
||||
}
|
||||
|
||||
var sb strings.Builder
|
||||
for _, mf := range metricFamilies {
|
||||
_, err := expfmt.MetricFamilyToText(&sb, mf)
|
||||
if err != nil {
|
||||
return err
|
||||
return "", err
|
||||
}
|
||||
}
|
||||
|
||||
if *outputFlag != "" {
|
||||
return writeToFile(sb.String(), *outputFlag)
|
||||
}
|
||||
|
||||
fmt.Print(sb.String())
|
||||
|
||||
return nil
|
||||
return sb.String(), nil
|
||||
}
|
||||
|
||||
func setupSLog(levelStr string) error {
|
||||
func setupSLog(device string, levelStr string) error {
|
||||
var w io.Writer
|
||||
switch device {
|
||||
case "stderr":
|
||||
w = os.Stderr
|
||||
case "stdout":
|
||||
w = os.Stdout
|
||||
default:
|
||||
return fmt.Errorf("invalid log device: %s", device)
|
||||
}
|
||||
|
||||
var level slog.Level
|
||||
err := level.UnmarshalText([]byte(levelStr))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
handler := slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
|
||||
handler := slog.NewTextHandler(w, &slog.HandlerOptions{
|
||||
Level: level,
|
||||
})
|
||||
logger := slog.New(handler)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//go:build darwin
|
||||
|
||||
package prom
|
||||
package prombat
|
||||
|
||||
import (
|
||||
"log/slog"
|
||||
@@ -1,6 +1,6 @@
|
||||
//go:build darwin
|
||||
|
||||
package prom
|
||||
package prombat
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@@ -14,23 +14,17 @@ import (
|
||||
|
||||
const DefaultNamespace = "macos"
|
||||
|
||||
type Registry interface {
|
||||
prometheus.Registerer
|
||||
prometheus.Gatherer
|
||||
}
|
||||
|
||||
type ServerOptions struct {
|
||||
Bind string
|
||||
Port int
|
||||
ReadTimeout time.Duration
|
||||
WriteTimeout time.Duration
|
||||
IdleTimeout time.Duration
|
||||
Logger *slog.Logger
|
||||
}
|
||||
|
||||
type Server struct {
|
||||
*http.Server
|
||||
registry Registry
|
||||
registry *prometheus.Registry
|
||||
mux *http.ServeMux
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user