Compare commits

...

23 Commits

Author SHA1 Message Date
fba610c954 update description 2024-05-29 14:14:20 +02:00
bd203ca770 2.0.6 2024-05-18 01:34:54 +02:00
bee711d1f8 fix(core): update 2024-05-18 01:34:54 +02:00
1aa3422437 2.0.5 2024-05-18 01:32:06 +02:00
11aef2d170 fix(core): update 2024-05-18 01:32:05 +02:00
7e8c5e23ef update tsconfig 2024-04-14 17:52:36 +02:00
77d86ba7d5 update npmextra.json: githost 2024-04-01 21:36:12 +02:00
c78f052555 update npmextra.json: githost 2024-04-01 19:58:47 +02:00
2e39a94231 update npmextra.json: githost 2024-03-30 21:47:46 +01:00
f8dfe62a83 switch to new org scheme 2023-07-11 01:04:08 +02:00
8d459b4836 switch to new org scheme 2023-07-10 10:02:48 +02:00
505889d4fc 2.0.4 2022-08-07 20:42:22 +02:00
594f8eb98f fix(core): update 2022-08-07 20:42:21 +02:00
f868947a15 2.0.3 2022-07-29 03:01:21 +02:00
d73911a52d fix(core): update 2022-07-29 03:01:21 +02:00
97345b93e1 2.0.2 2022-06-26 15:22:21 +02:00
1d0ee92627 fix(core): update 2022-06-26 15:22:21 +02:00
4fbd16a5c4 2.0.1 2022-06-26 11:05:54 +02:00
c170d41a05 fix(core): update 2022-06-26 11:05:53 +02:00
7df1016854 2.0.0 2022-06-26 09:27:39 +02:00
53bdbb78cc BREAKING CHANGE(core): switch to esm 2022-06-26 09:27:39 +02:00
b40b56e401 1.0.10 2022-06-26 09:27:01 +02:00
d3ac393793 fix(core): update 2022-06-26 09:27:01 +02:00
16 changed files with 12579 additions and 20336 deletions

View File

@ -1,127 +0,0 @@
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
cache:
paths:
- .npmci_cache/
key: '$CI_BUILD_STAGE'
stages:
- security
- test
- release
- metadata
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
tags:
- lossless
- docker
- notpriv
audit:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
script:
- npmci npm prepare
- npmci command npm install --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high
tags:
- lossless
- docker
- notpriv
# ====================
# test stage
# ====================
testStable:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- lossless
- docker
- priv
testBuild:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci command npm run build
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- lossless
- docker
- notpriv
release:
stage: release
script:
- npmci node install stable
- npmci npm publish
only:
- tags
tags:
- lossless
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
script:
- npmci command npm install -g tslint typescript
- npmci npm prepare
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags:
- lossless
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- lossless
- docker
- notpriv
pages:
stage: metadata
script:
- npmci node install lts
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command tsdoc
tags:
- lossless
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true

4
.snyk
View File

@ -1,4 +0,0 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.13.1
ignore: {}
patch: {}

24
.vscode/launch.json vendored
View File

@ -2,28 +2,10 @@
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "node",
"command": "npm test",
"name": "Run npm test",
"request": "launch",
"args": [
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
"type": "node-terminal"
}
]
}

View File

@ -15,7 +15,7 @@
"properties": {
"projectType": {
"type": "string",
"enum": ["website", "element", "service", "npm"]
"enum": ["website", "element", "service", "npm", "wcc"]
}
}
}

View File

@ -6,12 +6,25 @@
"gitzone": {
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "pushrocks",
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "smartlog-destination-receiver",
"description": "a smartlog destination for smartlog-receiver",
"npmPackagename": "@pushrocks/smartlog-destination-receiver",
"license": "MIT"
"description": "A package providing a destination handler for smartlog logging packages",
"npmPackagename": "@push.rocks/smartlog-destination-receiver",
"license": "MIT",
"keywords": [
"logging",
"smartlog",
"destination",
"receiver",
"typescript",
"logs",
"smartlog-interfaces",
"nodejs"
]
}
},
"tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
}
}

25795
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
{
"name": "@pushrocks/smartlog-destination-receiver",
"version": "1.0.9",
"name": "@push.rocks/smartlog-destination-receiver",
"version": "2.0.6",
"private": false,
"description": "a smartlog destination for smartlog-receiver",
"description": "A package providing a destination handler for smartlog logging packages",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
@ -10,21 +10,22 @@
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web)",
"format": "(gitzone format)"
"format": "(gitzone format)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tstest": "^1.0.64",
"@pushrocks/qenv": "^4.0.10",
"@pushrocks/tapbundle": "^4.0.8",
"@types/node": "^17.0.21",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/smartlog": "^3.0.6",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.12"
},
"dependencies": {
"@pushrocks/smarthash": "^2.1.10",
"@pushrocks/smartlog-interfaces": "^2.0.23",
"@pushrocks/smartrequest": "^1.1.56"
"@push.rocks/smarthash": "^3.0.2",
"@push.rocks/smartlog-interfaces": "^3.0.0",
"@push.rocks/webrequest": "^3.0.28"
},
"files": [
"ts/**/*",
@ -37,5 +38,24 @@
"cli.js",
"npmextra.json",
"readme.md"
]
}
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"logging",
"smartlog",
"destination",
"receiver",
"typescript",
"logs",
"smartlog-interfaces",
"nodejs"
],
"homepage": "https://code.foss.global/push.rocks/smartlog-destination-receiver",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartlog-destination-receiver.git"
}
}

6659
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

1
readme.hints.md Normal file
View File

@ -0,0 +1 @@

137
readme.md
View File

@ -1,39 +1,122 @@
# @pushrocks/smartlog-destination-receiver
# @push.rocks/smartlog-destination-receiver
a smartlog destination for smartlog-receiver
## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartlog-destination-receiver)
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartlog-destination-receiver)
* [github.com (source mirror)](https://github.com/pushrocks/smartlog-destination-receiver)
* [docs (typedoc)](https://pushrocks.gitlab.io/smartlog-destination-receiver/)
## Install
## Status for master
To include `@push.rocks/smartlog-destination-receiver` in your project, add it as a dependency by running:
Status Category | Status Badge
-- | --
GitLab Pipelines | [![pipeline status](https://gitlab.com/pushrocks/smartlog-destination-receiver/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/pushrocks/smartlog-destination-receiver/badges/master/coverage.svg)](https://lossless.cloud)
npm | [![npm downloads per month](https://badgen.net/npm/dy/@pushrocks/smartlog-destination-receiver)](https://lossless.cloud)
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/pushrocks/smartlog-destination-receiver)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@pushrocks/smartlog-destination-receiver)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@pushrocks/smartlog-destination-receiver)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@pushrocks/smartlog-destination-receiver)](https://lossless.cloud)
Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud)
```bash
npm install @push.rocks/smartlog-destination-receiver --save
```
This command will download and add the package to your project's `package.json` file.
## Usage
Use TypeScript for best in class intellisense.
This module offers a modern TypeScript approach to interact with logging destinations, particularly designed for use with `smartlog-receiver`. Below are outlined scenarios to effectively utilize the module, showcasing its functionalities.
## Contribution
### Prerequisites
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
Ensure that you have TypeScript and the necessary types included in your project. Include the module in your TypeScript file with ESM syntax:
For further information read the linked docs at the top of this readme.
```typescript
import { SmartlogDestinationReceiver } from '@push.rocks/smartlog-destination-receiver';
```
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
### Basic Setup
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)
To get started, you need to instantiate `SmartlogDestinationReceiver` with the required configuration. This configuration primarily includes the `passphrase` for authentication and the `receiverEndpoint` where the logs will be sent.
```typescript
import { SmartlogDestinationReceiver } from '@push.rocks/smartlog-destination-receiver';
// Initialize with options
const logReceiver = new SmartlogDestinationReceiver({
passphrase: 'your_passphrase', // Provide the passphrase for authentication
receiverEndpoint: 'https://your.log.receiver.endpoint' // Endpoint to send logs to
});
```
### Sending Logs
With `SmartlogDestinationReceiver`, sending logs is crafted to be straightforward. Below is an example demonstrating how to send a basic log message.
```typescript
import { SmartlogDestinationReceiver } from '@push.rocks/smartlog-destination-receiver';
// Instantiate the log receiver
const logReceiver = new SmartlogDestinationReceiver({
passphrase: 'your_passphrase', // Authentication
receiverEndpoint: 'https://your.log.receiver.endpoint'
});
// Prepare a log message
const logMessage = {
timestamp: Date.now(),
context: {
company: 'Your Company',
companyunit: 'Your Unit',
containerName: 'your-service-name',
environment: 'production',
runtime: 'node',
zone: 'your-zone'
},
type: 'log',
level: 'info',
correlation: {
id: 'unique-correlation-id',
type: 'SpecificCorrelationType'
},
message: 'This is a test log message'
};
// Send the log message
await logReceiver.handleLog(logMessage);
```
This setup will securely send your log message to the configured endpoint. Ensure that the endpoint is prepared to receive and process messages in the structure provided.
### Error Handling
It's practical to implement error handling to manage any issues that might arise during the log transmission process. `SmartlogDestinationReceiver` internally catches errors related to the sending process, but you can also wrap calls in try-catch blocks for more comprehensive control.
```typescript
try {
await logReceiver.handleLog(logMessage);
} catch (error) {
console.error('Failed to send log:', error);
}
```
This approach lets you handle any unexpected errors gracefully, ensuring your application's stability.
### Advanced Usage
The `SmartlogDestinationReceiver` can be easily integrated into larger logging systems or services that handle various log destinations. Its simple, promise-based API allows for integration with async/await syntax, facilitating complex logging operations and workflows.
Remember, this module is designed to work seamlessly within the `smartlog` ecosystem, enabling highly configurable, scalable, and secure logging solutions across microservices, applications, and infrastructure.
### Conclusion
The `@push.rocks/smartlog-destination-receiver` module provides a robust and flexible way to send logs to a designated receiver. By seamlessly integrating with TypeScript projects and offering straightforward configuration and usage patterns, it empowers developers to maintain high-quality logging practices with minimal overhead.
For comprehensive details on further configurations and advanced features, refer to the module documentation and API references. Always aim to understand the full capabilities of the logging solutions you implement, ensuring they align with your applications needs and compliance requirements.
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
### Company Information
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.

View File

@ -1,16 +1,16 @@
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
import { Qenv } from '@pushrocks/qenv';
import * as smartlog from '@pushrocks/smartlog';
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import { Qenv } from '@push.rocks/qenv';
import * as smartlog from '@push.rocks/smartlog';
const testQenv = new Qenv('./', './.nogit/');
import * as smartlogDestinationReceiver from '../ts/index';
import * as smartlogDestinationReceiver from '../ts/index.js';
let testSmartlogReceiver: smartlogDestinationReceiver.SmartlogDestinationReceiver;
tap.test('should create a valid SmartlogDestinationReceiver', async () => {
testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({
receiverEndpoint: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'),
passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE')
receiverEndpoint: await testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'),
passphrase: await testQenv.getEnvVarOnDemand('PASSPHRASE'),
});
});
@ -23,16 +23,16 @@ tap.test('should send a valid message', async () => {
containerName: 'tapbundle-test',
environment: 'local',
runtime: 'node',
zone: 'gitzone'
zone: 'gitzone',
},
type: 'log',
level: 'info',
correlation: {
id: '123',
type: 'none'
type: 'none',
},
message: 'This is a message'
message: 'This is a message',
});
});
tap.start();
export default tap.start();

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/smartlog-destination-receiver',
version: '2.0.6',
description: 'A package providing a destination handler for smartlog logging packages'
}

View File

@ -1,9 +1,9 @@
import * as plugins from './smartlog-destination-receiver.plugins';
import * as plugins from './smartlog-destination-receiver.plugins.js';
import {
ILogDestination,
ILogPackageAuthenticated,
ILogPackage
} from '@pushrocks/smartlog-interfaces';
type ILogDestination,
type ILogPackageAuthenticated,
type ILogPackage,
} from '@push.rocks/smartlog-interfaces';
export interface ISmartlogDestinationReceiverConstructorOptions {
passphrase: string;
@ -12,17 +12,23 @@ export interface ISmartlogDestinationReceiverConstructorOptions {
export class SmartlogDestinationReceiver implements ILogDestination {
private options: ISmartlogDestinationReceiverConstructorOptions;
private webrequest = new plugins.webrequest.WebRequest();
constructor(optionsArg: ISmartlogDestinationReceiverConstructorOptions) {
this.options = optionsArg;
}
private errorCounter = 0;
public async handleLog(logPackageArg: ILogPackage) {
const response = await plugins.smartrequest.postJson(this.options.receiverEndpoint, {
requestBody: {
auth: plugins.smarthash.sha256FromStringSync(this.options.passphrase),
logPackage: logPackageArg
const response = await this.webrequest.postJson(this.options.receiverEndpoint, {
auth: plugins.smarthash.sha256FromStringSync(this.options.passphrase),
logPackage: logPackageArg,
}).catch(err => {
if (this.errorCounter % 100 === 0) {
console.error(`There seems to be an error with logging.`);
console.error(`Accumulated ${this.errorCounter} errors so far`)
}
this.errorCounter++;
});
return response.body;
}

View File

@ -1,5 +1,5 @@
import * as smarthash from '@pushrocks/smarthash';
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
import * as smartrequest from '@pushrocks/smartrequest';
import * as smarthash from '@push.rocks/smarthash';
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
import * as webrequest from '@push.rocks/webrequest';
export { smarthash, smartlogInterfaces, smartrequest };
export { smarthash, smartlogInterfaces, webrequest };

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true
},
"exclude": [
"dist_*/**/*.d.ts"
]
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}