-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlua-resty-ngxstats-1.0.0-1.rockspec
More file actions
42 lines (41 loc) · 1.56 KB
/
Copy pathlua-resty-ngxstats-1.0.0-1.rockspec
File metadata and controls
42 lines (41 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package = "lua-resty-ngxstats"
version = "1.0.0-1"
source = {
url = "git+https://github.com/abtreece/lua-resty-ngxstats.git",
tag = "v1.0.0"
}
description = {
summary = "OpenResty/NGINX metrics collection and Prometheus exporter",
detailed = [[
lua-resty-ngxstats is a production-ready NGINX metrics exporter
for OpenResty. It collects connection, request, server zone,
upstream, and cache metrics, outputting them in Prometheus
text exposition format.
Features:
- Prometheus text format with HELP/TYPE comments
- Connection metrics (active, accepted, handled, reading, writing, idle)
- Request metrics (total, current)
- Server zone metrics with response status codes
- HTTP method tracking (GET, POST, etc.)
- Upstream metrics with response times
- Cache metrics (hit, miss, bypass, etc.)
]],
homepage = "https://github.com/abtreece/lua-resty-ngxstats",
license = "MIT",
maintainer = "Britt Treece"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["resty.ngxstats"] = "lib/resty/ngxstats/init.lua",
["resty.ngxstats.common"] = "lib/resty/ngxstats/common.lua",
["resty.ngxstats.log"] = "lib/resty/ngxstats/log.lua",
["resty.ngxstats.prometheus"] = "lib/resty/ngxstats/prometheus.lua",
["resty.ngxstats.show"] = "lib/resty/ngxstats/show.lua",
["resty.ngxstats.status"] = "lib/resty/ngxstats/status.lua",
["resty.ngxstats.version"] = "lib/resty/ngxstats/version.lua",
}
}