New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@yuants/prometheus-client

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yuants/prometheus-client - npm Package Compare versions

Comparing version

to
0.1.0

18

dist/collector.js

@@ -32,3 +32,21 @@ export class Collector {

}
/**
* Clear the metric with the given labels
* it will remove the metric from the collector (not reset to initial value)
*/
clear(labels) {
const labelKey = this.makeLabelKey(labels);
delete this.data[labelKey];
return this;
}
/**
* Clear all metrics (not reset to initial value)
*/
clearAll() {
for (const i in this.data) {
delete this.data[i];
}
return this;
}
}
//# sourceMappingURL=collector.js.map

@@ -10,2 +10,11 @@ declare abstract class Collector<T extends MetricValue> {

abstract reset(labels?: Labels): void;
/**
* Clear the metric with the given labels
* it will remove the metric from the collector (not reset to initial value)
*/
clear(labels?: Labels): this;
/**
* Clear all metrics (not reset to initial value)
*/
clearAll(): this;
}

@@ -12,0 +21,0 @@

@@ -11,3 +11,12 @@ import { Labels, Metric, MetricValue } from './types';

abstract reset(labels?: Labels): void;
/**
* Clear the metric with the given labels
* it will remove the metric from the collector (not reset to initial value)
*/
clear(labels?: Labels): this;
/**
* Clear all metrics (not reset to initial value)
*/
clearAll(): this;
}
//# sourceMappingURL=collector.d.ts.map

@@ -35,4 +35,22 @@ "use strict";

}
/**
* Clear the metric with the given labels
* it will remove the metric from the collector (not reset to initial value)
*/
clear(labels) {
const labelKey = this.makeLabelKey(labels);
delete this.data[labelKey];
return this;
}
/**
* Clear all metrics (not reset to initial value)
*/
clearAll() {
for (const i in this.data) {
delete this.data[i];
}
return this;
}
}
exports.Collector = Collector;
//# sourceMappingURL=collector.js.map

2

package.json
{
"name": "@yuants/prometheus-client",
"version": "0.0.4",
"version": "0.1.0",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "module": "dist/index.js",

{
"libraries/prometheus-client/CHANGELOG.json": "6eca4e9fd8f00319f7aad255aeb41928ee571daa",
"libraries/prometheus-client/CHANGELOG.md": "822264f7c024b0d303f4da70ba5773374cf2a3fd",
"libraries/prometheus-client/CHANGELOG.json": "6a562c69a00957f85b830da75d7bfeef91fe83b7",
"libraries/prometheus-client/CHANGELOG.md": "0226e16b2ae38ebe2847177a2e4211e39434096c",
"libraries/prometheus-client/LICENSE": "9cd1640bad172ba9fc1e83f57b3efc53f6199b7f",

@@ -11,4 +11,4 @@ "libraries/prometheus-client/README.md": "bad384e584504a8d1da434aea05a8d5cf70cdfab",

"libraries/prometheus-client/etc/prometheus-client.api.md": "7f3874ae687ed972861370757a0e00cf8bfb5a22",
"libraries/prometheus-client/package.json": "a54a37f86af857550f5d4d20841aa46e9f5f508f",
"libraries/prometheus-client/src/collector.ts": "552ddbfffbdb70ed686bbb837dd2c0026e729c47",
"libraries/prometheus-client/package.json": "e07d7ee3897154d14b05226e341cb8b23f85e0cc",
"libraries/prometheus-client/src/collector.ts": "d95a4764db5bae088c7c32fc1ca08d5a272ba6f7",
"libraries/prometheus-client/src/counter.test.ts": "6d4a61e936ad7fb796ee608fdc50c66907380ddd",

@@ -28,4 +28,4 @@ "libraries/prometheus-client/src/counter.ts": "cd313c92a6b72f6f90a625c7e4dc11b983e63ec0",

"libraries/prometheus-client/tsconfig.json": "22f94ca28b507f8ddcc21b9053158eefd3f726a9",
"libraries/prometheus-client/.rush/temp/shrinkwrap-deps.json": "7fc15e2c62ea95c6864abf6288969bc25cccc8a0",
"tools/toolkit/temp/package-deps.json": "2875da6fe1d56cb58277b3dc53a29322a6f73957"
"libraries/prometheus-client/.rush/temp/shrinkwrap-deps.json": "d847f67f95f7c398a6f037ceb6d42a6d116fa952",
"tools/toolkit/temp/package-deps.json": "6b9a26088b88f5a048afceab930ab1d2a588c036"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet