- 增加中央与边缘完整配置和部署脚本 - 引入 VictoriaMetrics 数据源与 remote_write 故障排查说明 - 新增 edge-agent 配置脚本、ONVIF 自建 exporter 与 ping 监控示例 Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
826 B
Modula-2
25 lines
826 B
Modula-2
module github.com/distributed-prometheus/onvif-exporter
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/prometheus/client_golang v1.19.0
|
|
github.com/use-go/onvif v0.0.9
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/beevik/etree v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/elgs/gostrgen v0.0.0-20161222160715-9d61ae07eeae // indirect
|
|
github.com/gofrs/uuid v3.2.0+incompatible // indirect
|
|
github.com/juju/errors v0.0.0-20220331221717-b38fca44723b // indirect
|
|
github.com/prometheus/client_model v0.6.0 // indirect
|
|
github.com/prometheus/common v0.50.0 // indirect
|
|
github.com/prometheus/procfs v0.13.0 // indirect
|
|
github.com/rs/zerolog v1.26.1 // indirect
|
|
golang.org/x/net v0.21.0 // indirect
|
|
golang.org/x/sys v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.32.0 // indirect
|
|
)
|