@loglayer/transport-victoria-logs 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +24 -25
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/@loglayer/transport-victoria-logs)
|
|
5
5
|
[](http://www.typescriptlang.org/)
|
|
6
6
|
|
|
7
|
-
A [VictoriaLogs](https://victoriametrics.com/products/victorialogs/)
|
|
7
|
+
A transport for [Victoria Metrics](https://victoriametrics.com/)' [VictoriaLogs](https://victoriametrics.com/products/victorialogs/) for the [LogLayer](https://loglayer.dev) logging library.
|
|
8
8
|
|
|
9
9
|
This transport is a wrapper around the [HTTP transport](https://loglayer.dev/transports/http) using the [VictoriaLogs JSON stream API](https://docs.victoriametrics.com/victorialogs/data-ingestion/#json-stream-api).
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loglayer/transport-victoria-logs",
|
|
3
3
|
"description": "VictoriaLogs transport for the LogLayer logging library.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
7
|
"exports": {
|
|
9
8
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
12
11
|
}
|
|
13
12
|
},
|
|
14
|
-
"
|
|
15
|
-
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/loglayer/loglayer.git",
|
|
18
|
+
"directory": "packages/transports/victoria-logs"
|
|
19
|
+
},
|
|
20
|
+
"author": "Theo Gravity <theo@suteki.nu>",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"loglayer",
|
|
23
|
+
"transport",
|
|
24
|
+
"victoria",
|
|
25
|
+
"victoria metrics",
|
|
26
|
+
"victoria logs",
|
|
27
|
+
"logging",
|
|
28
|
+
"logs"
|
|
16
29
|
],
|
|
17
30
|
"dependencies": {
|
|
18
|
-
"@loglayer/transport-http": "1.0.
|
|
31
|
+
"@loglayer/transport-http": "1.0.2"
|
|
19
32
|
},
|
|
20
33
|
"devDependencies": {
|
|
21
34
|
"dotenv": "16.5.0",
|
|
@@ -29,27 +42,13 @@
|
|
|
29
42
|
"loglayer": "6.4.3",
|
|
30
43
|
"@internal/tsconfig": "2.1.0"
|
|
31
44
|
},
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"victoria",
|
|
36
|
-
"victorialogs",
|
|
37
|
-
"logging",
|
|
38
|
-
"logs"
|
|
45
|
+
"bugs": "https://github.com/loglayer/loglayer/issues",
|
|
46
|
+
"files": [
|
|
47
|
+
"dist"
|
|
39
48
|
],
|
|
40
|
-
"author": "Theo Gravity <theo@suteki.nu>",
|
|
41
|
-
"license": "MIT",
|
|
42
|
-
"repository": {
|
|
43
|
-
"type": "git",
|
|
44
|
-
"url": "https://github.com/loglayer/loglayer.git",
|
|
45
|
-
"directory": "packages/transports/victoria-logs"
|
|
46
|
-
},
|
|
47
|
-
"bugs": {
|
|
48
|
-
"url": "https://github.com/loglayer/loglayer/issues"
|
|
49
|
-
},
|
|
50
49
|
"homepage": "https://loglayer.dev/transports/victoria-logs",
|
|
51
50
|
"scripts": {
|
|
52
|
-
"build": "tsup",
|
|
51
|
+
"build": "tsup src/index.ts",
|
|
53
52
|
"dev": "tsup --watch",
|
|
54
53
|
"test": "vitest --run",
|
|
55
54
|
"test:watch": "vitest",
|