![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
The nodejs logger for aliyun SLS with minimum dependencies, forked from node-sls-logger.
$ npm i ali-sls --save
Config Name | Default | Type | Required | Description |
---|---|---|---|---|
accessKey | string | true | Your access key to SLS | |
accessSecret | string | true | Your secret to access SLS | |
securityToken | string | false | Your STS security token | |
endpoint | string | true | Your SLS endpoint, e.g. example.cn-hangzhou.log.aliyuncs.com | |
logstore | string | true | Your logstore name | |
source | string | false | Source for your logs | |
topic | string | false | Topic for your logs | |
hashkey | string | false | ||
compress | false | boolean | false | Use lz4 to compress log payload |
tags | key-value pair | false | Extra tags for your logs | |
level | INFO | string / number | false | Log level |
disabled | false | boolean | false | Disable sls and log to stdout |
Note: if your configuration is incorrect(fail to get logstore), all logs will be written to stdout.
const SlsLogger = require('ali-sls')
const slsLogger = new SlsLogger({
endpoint: "example.cn-hangzhou.log.aliyuncs.com",
accessKey: "your_access_key",
accessSecret: "your_access_secret",
logstore: "your_logstore",
source: "test",
topic: "test",
compress: true,
level: "INFO",
disabled: false,
})
slsLogger.info("Hello world!")
slsLogger.log(
"Hello world!",
new Date(),
function () { "abc" },
{ a: 1, b: { c: 1 }, d: "123", e: false },
new Object(),
[1, 2, 3, "abc", false, null, undefined, new Error("error1")],
SlsLogger.createField("module", "main"),
1234,
true,
null,
undefined
)
slsLogger.error(new Error("error2"))
FAQs
Logger for Aliyun SLS
The npm package ali-sls receives a total of 2 weekly downloads. As such, ali-sls popularity was classified as not popular.
We found that ali-sls demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.