<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/prometheus-node-exporter-lua, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2025-12-31T07:12:36Z</updated>
<entry>
<title>treewide: fix spelling and grammar in Makefiles</title>
<updated>2025-12-31T07:12:36Z</updated>
<author>
<name>George Sapkin</name>
</author>
<published>2025-12-26T04:26:18Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=de64f871b0f00b885039997eb46f914bdac687a5'/>
<id>urn:sha1:de64f871b0f00b885039997eb46f914bdac687a5</id>
<content type='text'>
Fix spelling and grammar in package definitions, configs, comments and
other strings.

Signed-off-by: George Sapkin &lt;george@sapk.in&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: remove bmx6 leftovers</title>
<updated>2025-12-30T09:31:14Z</updated>
<author>
<name>Josef Schlehofer</name>
</author>
<published>2025-12-29T07:30:46Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=cab93eb528329628cfe7b5e883f35e106afe650b'/>
<id>urn:sha1:cab93eb528329628cfe7b5e883f35e106afe650b</id>
<content type='text'>
It looks like I forgot to remove this file while dropping
package prometheus-node-exporter-lua-bmx6.

Fixes: 9c2bf859005ada11c17835f74826b356cdb0fb7b ("prometheus-node-exporter-lua: drop bmx6 package")

Signed-off-by: Josef Schlehofer &lt;pepe.schlehofer@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: remove zero values</title>
<updated>2025-12-09T00:14:54Z</updated>
<author>
<name>Markus Hube</name>
</author>
<published>2025-11-22T09:47:35Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=803a75452547abbb9d183690ea4952ed7901a2c7'/>
<id>urn:sha1:803a75452547abbb9d183690ea4952ed7901a2c7</id>
<content type='text'>
depending on the configuration there may be multiple
interfaces creating multiple time series always
reporting 0 value. omiting them from the export saves
resources. most notably cpu. this is limited to
counter types

Signed-off-by: Markus Hube &lt;markus.hube@t-online.de&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: Fix broken textfile collector</title>
<updated>2025-07-16T15:11:22Z</updated>
<author>
<name>Rob Hoelz</name>
</author>
<published>2025-07-15T02:23:35Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=86e20d37a890a18e30a5bc9a398bd3f729b8f630'/>
<id>urn:sha1:86e20d37a890a18e30a5bc9a398bd3f729b8f630</id>
<content type='text'>
A recent change (00d420e80) removed the `output` function, which textfile.lua was
using to output metrics.  So use the underlying output handle instead

Signed-off-by: Rob Hoelz &lt;rob@hoelz.ro&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: use buffered io, remove concat</title>
<updated>2025-06-29T18:54:56Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2025-06-29T16:21:54Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=00d420e8013d3bbf0d457eb89718014724333c47'/>
<id>urn:sha1:00d420e8013d3bbf0d457eb89718014724333c47</id>
<content type='text'>
netclass collector scrape time goes from 230ms to 170ms

Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: mwan3: speed up</title>
<updated>2025-06-24T22:53:43Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2025-06-24T20:10:41Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=caeb4c1834b68c37647143363bf643b8f79040cc'/>
<id>urn:sha1:caeb4c1834b68c37647143363bf643b8f79040cc</id>
<content type='text'>
Request only 'interfaces' status, as we don't use 'connected' and
'policies' status. On my router with 5 wans / 2 tracking IPs per wan,
scrape time goes from 1.90s to 1.30s (still pretty slow but better)

Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: add HTTPS support</title>
<updated>2025-06-23T17:53:38Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2025-06-23T14:19:03Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=73f9b9ab79ee6e2ceedcc0387d66b994bdc6de9c'/>
<id>urn:sha1:73f9b9ab79ee6e2ceedcc0387d66b994bdc6de9c</id>
<content type='text'>
With valid 'cert'/'key' config, prometheus-node-exporter-lua
will respond to https instead of http on 'listen_port'.

Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: remove '#!' / exec bit</title>
<updated>2025-06-23T17:53:38Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2025-06-23T12:05:41Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=377f537aa3cb73c38d3412d75c428a66d669e8d0'/>
<id>urn:sha1:377f537aa3cb73c38d3412d75c428a66d669e8d0</id>
<content type='text'>
collectors do not need to be executable.

Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: fix hostapd_ubus_stations &amp; hostapd_stations</title>
<updated>2025-06-23T11:50:18Z</updated>
<author>
<name>Michael Payne</name>
</author>
<published>2025-03-31T09:30:49Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=28c085f7c3f253f34593860e9c56f948d98ae887'/>
<id>urn:sha1:28c085f7c3f253f34593860e9c56f948d98ae887</id>
<content type='text'>
hostapd exposes the `hostapd-auth` ubus object. In both
hostapd_ubus_stations.lua and hostapd_stations.lua this object is
incorrectly matched as if it were a wifi phy such as `hostapd.phy0-ap0`.
Using the literal period to find interfaces (^hostapd%.) instead of the
pattern-matching period (hostapd.) fixes this.

fix formatting consistency

Signed-off-by: Michael Payne &lt;10254938+mikepayne02@users.noreply.github.com&gt;
[fix version conflict]
Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>prometheus-node-exporter-lua: add nftables named counters collector</title>
<updated>2025-06-23T09:42:01Z</updated>
<author>
<name>Sergey Shatunov</name>
</author>
<published>2025-04-15T13:19:56Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=51137e588271ac294b86c4ad369e5fb110db75a5'/>
<id>urn:sha1:51137e588271ac294b86c4ad369e5fb110db75a5</id>
<content type='text'>
Signed-off-by: Sergey Shatunov &lt;me@aur.rocks&gt;
[bump version, remove #!]
Signed-off-by: Etienne Champetier &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
</feed>
