Version Bump (2.0.4)

This commit is contained in:
Nemo 2019-05-25 01:20:49 +05:30
parent 903d174717
commit 630d327f39
3 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,9 @@
# CHANGELOG # CHANGELOG
# 2.0.4
- Upgrade puppeteer to 1.16.0
# 2.0.3 # 2.0.3
- Upgrade puppeteer to 1.15.0 - Upgrade puppeteer to 1.15.0

View File

@ -1,12 +1,12 @@
# prometheus-act-exporter # prometheus-act-exporter
[![](https://images.microbadger.com/badges/version/captn3m0/prometheus-act-exporter:2.0.0-beta.svg)](https://microbadger.com/images/captn3m0/prometheus-act-exporter:2.0.0-beta) [![npm version](https://badge.fury.io/js/prometheus-act-exporter.svg)](https://badge.fury.io/js/prometheus-act-exporter) [![License: WTFPL](https://img.shields.io/badge/License-WTFPL-blue.svg)](http://www.wtfpl.net/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![](https://images.microbadger.com/badges/version/captn3m0/prometheus-act-exporter:2.0.4.svg)](https://microbadger.com/images/captn3m0/prometheus-act-exporter:2.0.4) [![npm version](https://badge.fury.io/js/prometheus-act-exporter.svg)](https://badge.fury.io/js/prometheus-act-exporter) [![License: WTFPL](https://img.shields.io/badge/License-WTFPL-blue.svg)](http://www.wtfpl.net/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
Exposes your current ACT FUP usage as prometheus metrics. Scrapes the data from the ACT Portal website by using puppeteer. Exposes your current ACT FUP usage as prometheus metrics. Scrapes the data from the ACT Portal website by using puppeteer.
- Supports flexibytes - Supports flexibytes
- Reports aggregate metrics as well - Reports aggregate metrics as well
- Only tested for ACT Bangalore connections. - Only tested for ACT Bangalore connections.
## Metrics ## Metrics
@ -43,7 +43,7 @@ act_fup_aggregate_total_bytes 900000000
Install it with `npm i prometheus-act-exporter`. Install it with `npm i prometheus-act-exporter`.
```js ```js
const act = require('prometheus-act-exporter') const act = require("prometheus-act-exporter");
let m = await act.getUsage(); let m = await act.getUsage();
// Returns // Returns
// { // {

View File

@ -1,6 +1,6 @@
{ {
"name": "prometheus-act-exporter", "name": "prometheus-act-exporter",
"version": "2.0.3", "version": "2.0.4",
"description": "Exports ACT Fibernet data usage as prometheus metrics", "description": "Exports ACT Fibernet data usage as prometheus metrics",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {