dtd-analytics
v1.1.3
Published
```js const analytics = require('dtd-analytics'); const info = { userType: 'serviceAccount', userId: 32, objectTypeId: 3, objectId: 24, linkObjectTypeId: 1, linkObjectId: 48, action: 'C', message: 'Your custom message', };
Downloads
9
Readme
Purpose
const analytics = require('dtd-analytics');
const info = {
userType: 'serviceAccount',
userId: 32,
objectTypeId: 3,
objectId: 24,
linkObjectTypeId: 1,
linkObjectId: 48,
action: 'C',
message: 'Your custom message',
};
analytics.init();
analytics.log(info);
Env configuration setup
해당 패키지에서는 기본적으로 환경변수를 이용하여, Rabbitmq 연결 정보를 받아옵니다.
// RabbitMQ
CORE_MQ_HOST: 'mq_host',
CORE_MQ_PORT: 5672,
CORE_MQ_USER: 'mq_user',
CORE_MQ_PASSWORD: 'mq_password'
환경 변수가 아닌 다른 값으로 config를 통해 접속하고 싶다면,mqOption
을 init함수에 함께 설정할 수 있습니다.