Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/pm2/node_modules/tx2/test/ drwxr-xr-x | |
| Viewing file: Select action/file-type:
const tx2 = require('..')
const should = require('should')
describe('Metric', function() {
this.timeout(4000)
it('should register a metric', () => {
tx2.metric({
name: 'test',
val: () => {
return 20
}
})
})
it('should metric exists', () => {
should(tx2.metricExists('test')).eql(true)
})
it('should unknown metric not exists', () => {
should(tx2.metricExists('unknowsss')).eql(false)
})
it('should have metric present', (done) => {
tx2.once('data', (dt) => {
should(dt.type).eql('axm:monitor')
should(dt.data.test.value).eql(20)
done()
})
})
it('should register metric v2', () => {
tx2.metric('test2', () => {
return 30
})
})
it('should have metric present', (done) => {
tx2.once('data', (dt) => {
should(dt.type).eql('axm:monitor')
should(dt.data.test2.value).eql(30)
done()
})
})
it('should register metric v3', () => {
let m = tx2.metric('test3', 0)
m.set(45)
})
it('should have metric present', (done) => {
tx2.once('data', (dt) => {
should(dt.type).eql('axm:monitor')
should(dt.data.test3.value).eql(45)
done()
})
})
})
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0042 ]-- |