npmci/ts/npmci.monitor.ts

21 lines
523 B
TypeScript
Raw Normal View History

2017-05-18 20:40:09 +00:00
import * as plugins from './npmci.plugins'
import * as env from './npmci.env'
2017-09-08 12:58:44 +00:00
import { Analytics } from 'smartanalytics'
2017-05-18 20:40:09 +00:00
2017-09-08 12:58:44 +00:00
export let npmciAnalytics = new Analytics({
2017-09-08 16:24:34 +00:00
apiEndPoint: 'https://pubapi.lossless.one/analytics',
2017-09-08 12:58:44 +00:00
projectId: 'gitzone',
appName: 'npmci'
})
2017-05-18 20:40:09 +00:00
2017-09-08 21:16:09 +00:00
export let run = async () => {
npmciAnalytics.recordEvent('npmToolExecution', {
host: env.repo.host,
user: env.repo.user,
repo: env.repo.repo
}).catch(err => {
plugins.beautylog.warn('Lossless Analytics API not available...')
})
}