!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

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
Free 13.31 GB of 57.97 GB (22.96%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     metric.mocha.js (1.18 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
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 ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0042 ]--