1.0.13 • Published 9 months ago

tencentcloud-cls-sdk-js-web v1.0.13

Weekly downloads
-
License
Apache
Repository
github
Last release
9 months ago

CLS JavaScript SDK

腾讯云CLS日志上传SDK

Install

npm i tencentcloud-cls-sdk-js-web

Configuration

Config NameDefaultTypeRequiredDescription
endpointstringtrueYour CLS endpoint, e.g. ap-guangzhou.cls.tencentcs.com
retry_timesintegertrue重试次数

CLS Host

本项目使用 日志服务 API 2017

https://cloud.tencent.com/document/product/614/18940

Example

import {Log, LogGroup, AsyncClient, PutLogsRequest} from 'tencentcloud-cls-sdk-js-web'

let client = new AsyncClient({
    endpoint: "ap-guangzhou.cls.tencentcs.com",
    retry_times: 10,
});

let logGroup = new LogGroup([IP Address])
logGroup.setSource(【IP Address】)

let log = new Log(Date.now())
log.addContent("hello", "hello world中文")
log.addContent("world", "你好,我来自深圳|hello world2")
logGroup.addLog(log)

let request = new PutLogsRequest("【topicID】", logGroup);
let data = await client.PutLogs(request)

Features

  • 支持lz4压缩上传
1.0.13

9 months ago

1.0.12

9 months ago

1.0.11

1 year ago

1.0.10

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago