/
home
/
infinitibizsol
/
irfarms.infinitibizsol.com
/
node_modules
/
prom-client
/
lib
/
File Upload :
llllll
Current File: /home/infinitibizsol/irfarms.infinitibizsol.com/node_modules/prom-client/lib/validation.js
'use strict'; const util = require('util'); // These are from https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels const metricRegexp = /^[a-zA-Z_:][a-zA-Z0-9_:]*$/; const labelRegexp = /^[a-zA-Z_][a-zA-Z0-9_]*$/; exports.validateMetricName = function(name) { return metricRegexp.test(name); }; exports.validateLabelName = function(names) { let valid = true; (names || []).forEach(name => { if (!labelRegexp.test(name)) { valid = false; } }); return valid; }; exports.validateLabel = function validateLabel(savedLabels, labels) { Object.keys(labels).forEach(label => { if (savedLabels.indexOf(label) === -1) { throw new Error( `Added label "${label}" is not included in initial labelset: ${util.inspect( savedLabels )}` ); } }); };
Copyright ©2k19 -
Hexid
|
Tex7ure