Compare commits

...

2 Commits

Author SHA1 Message Date
9c767d07e4 1.0.41 2023-07-05 10:26:00 +02:00
f3aa94dcb7 fix(core): update 2023-07-05 10:25:59 +02:00
4 changed files with 4 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@apiclient.xyz/elasticsearch", "name": "@apiclient.xyz/elasticsearch",
"version": "1.0.40", "version": "1.0.41",
"private": false, "private": false,
"description": "log to elasticsearch in a kibana compatible format", "description": "log to elasticsearch in a kibana compatible format",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -1,5 +1,4 @@
required: required:
- ELK_DOMAIN - ELK_NODE
- ELK_PORT
- ELK_USER - ELK_USER
- ELK_PASS - ELK_PASS

View File

@ -10,7 +10,7 @@ tap.test('first test', async () => {
testElasticLog = new elasticsearch.ElasticSearch({ testElasticLog = new elasticsearch.ElasticSearch({
indexPrefix: 'smartlog', indexPrefix: 'smartlog',
indexRetention: 7, indexRetention: 7,
node: testQenv.getEnvVarOnDemand('ELK_DOMAIN'), node: testQenv.getEnvVarOnDemand('ELK_NODE'),
user: '', user: '',
pass: '', pass: '',
}); });

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@apiclient.xyz/elasticsearch', name: '@apiclient.xyz/elasticsearch',
version: '1.0.40', version: '1.0.41',
description: 'log to elasticsearch in a kibana compatible format' description: 'log to elasticsearch in a kibana compatible format'
} }