@common-stack/server-stack 7.1.1-alpha.19 → 7.1.1-alpha.21
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.
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var envConfig=require('./env-config.cjs')
|
|
1
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var envConfig=require('./env-config.cjs');// Work around TypeScript module resolution issues
|
|
2
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires, import/no-unresolved
|
|
3
|
+
const { MoleculerLogger } = require('@cdm-logger/server/moleculer');
|
|
4
|
+
// Helper function to adapt the MoleculerLogger to be compatible with BrokerOptions.logger
|
|
5
|
+
const createMoleculerLogger = (opts) => new MoleculerLogger(opts);
|
|
6
|
+
const getMetricsConfig = () => {
|
|
7
|
+
// Parse the JSON string if it's a string, or use the object directly
|
|
8
|
+
if (typeof envConfig.config.METRICS_CONFIG === 'string') {
|
|
9
|
+
try {
|
|
10
|
+
return JSON.parse(envConfig.config.METRICS_CONFIG);
|
|
11
|
+
}
|
|
12
|
+
catch (e) {
|
|
13
|
+
return { enabled: false, port: 3030, path: '/metrics' };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
return envConfig.config.METRICS_CONFIG;
|
|
17
|
+
};
|
|
18
|
+
const metricsConfig = getMetricsConfig();
|
|
19
|
+
/**
|
|
2
20
|
* Moleculer ServiceBroker configuration file
|
|
3
21
|
*
|
|
4
22
|
* More info about options:
|
|
@@ -11,7 +29,7 @@
|
|
|
11
29
|
* For example to overwrite the 'logLevel', use `LOGLEVEL=warn` env var.
|
|
12
30
|
* To overwrite a nested parameter, e.g. retryPolicy.retries, use `RETRYPOLICY_RETRIES=10` env var.
|
|
13
31
|
*
|
|
14
|
-
* To overwrite broker
|
|
32
|
+
* To overwrite broker's deeply nested default options, which are not presented in 'moleculer.config.ts',
|
|
15
33
|
* via environment variables, use the `MOL_` prefix and double underscore `__` for nested properties in .env file.
|
|
16
34
|
* For example, to set the cacher prefix to `MYCACHE`, you should declare an env var as `MOL_CACHER__OPTIONS__PREFIX=MYCACHE`.
|
|
17
35
|
*/
|
|
@@ -23,22 +41,10 @@ const brokerConfig = {
|
|
|
23
41
|
// nodeID: config.CONNECTION_ID,
|
|
24
42
|
// Enable/disable logging or use custom logger. More info: https://moleculer.services/docs/0.14/logging.html
|
|
25
43
|
// Available logger types: 'Console', 'File', 'Pino', 'Winston', 'Bunyan', 'debug', 'Log4js', 'Datadog'
|
|
26
|
-
logger: {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
colors: true,
|
|
31
|
-
// Print module names with different colors (like docker-compose for containers)
|
|
32
|
-
moduleColors: false,
|
|
33
|
-
// Line formatter. It can be 'json', 'short',
|
|
34
|
-
// 'simple', 'full', a `Function` or a template string like '{timestamp} {level} {nodeID}/{mod}: {msg}'
|
|
35
|
-
formatter: 'full',
|
|
36
|
-
// Custom object printer. If not defined, it uses the `util.inspect` method.
|
|
37
|
-
objectPrinter: null,
|
|
38
|
-
// Auto-padding the module name in order to messages begin at the same column.
|
|
39
|
-
autoPadding: false,
|
|
40
|
-
},
|
|
41
|
-
},
|
|
44
|
+
logger: createMoleculerLogger({
|
|
45
|
+
name: 'moleculer',
|
|
46
|
+
level: envConfig.config.LOG_LEVEL,
|
|
47
|
+
}),
|
|
42
48
|
// Default log level for built-in console logger. It can be overwritten in logger options above.
|
|
43
49
|
// Available values: trace, debug, info, warn, error, fatal
|
|
44
50
|
logLevel: envConfig.config.LOG_LEVEL,
|
|
@@ -142,12 +148,12 @@ const brokerConfig = {
|
|
|
142
148
|
errorHandler: null,
|
|
143
149
|
// Enable/disable built-in metrics function. More info: https://moleculer.services/docs/0.14/metrics.html
|
|
144
150
|
metrics: {
|
|
145
|
-
enabled:
|
|
151
|
+
enabled: metricsConfig.enabled,
|
|
146
152
|
reporter: {
|
|
147
153
|
type: 'Prometheus',
|
|
148
154
|
options: {
|
|
149
|
-
port:
|
|
150
|
-
path:
|
|
155
|
+
port: metricsConfig.port,
|
|
156
|
+
path: metricsConfig.path,
|
|
151
157
|
defaultLabels: (registry) => ({
|
|
152
158
|
namespace: registry.broker.namespace,
|
|
153
159
|
nodeID: registry.broker.nodeID,
|
|
@@ -183,9 +189,9 @@ const brokerConfig = {
|
|
|
183
189
|
// Register custom middlewares
|
|
184
190
|
middlewares: [],
|
|
185
191
|
// Called after broker created.
|
|
186
|
-
created(
|
|
192
|
+
created() { },
|
|
187
193
|
// Called after broker starte.
|
|
188
|
-
started(
|
|
194
|
+
started() { },
|
|
189
195
|
// Called after broker stopped.
|
|
190
|
-
stopped(
|
|
196
|
+
stopped() { },
|
|
191
197
|
};exports.default=brokerConfig;//# sourceMappingURL=moleculer.config.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"moleculer.config.cjs","sources":["../../src/config/moleculer.config.ts"],"sourcesContent":[null],"names":["config"],"mappings":"gHAIA
|
|
1
|
+
{"version":3,"file":"moleculer.config.cjs","sources":["../../src/config/moleculer.config.ts"],"sourcesContent":[null],"names":["config"],"mappings":"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"}
|
|
@@ -12,7 +12,7 @@ import { BrokerOptions } from 'moleculer';
|
|
|
12
12
|
* For example to overwrite the 'logLevel', use `LOGLEVEL=warn` env var.
|
|
13
13
|
* To overwrite a nested parameter, e.g. retryPolicy.retries, use `RETRYPOLICY_RETRIES=10` env var.
|
|
14
14
|
*
|
|
15
|
-
* To overwrite broker
|
|
15
|
+
* To overwrite broker's deeply nested default options, which are not presented in 'moleculer.config.ts',
|
|
16
16
|
* via environment variables, use the `MOL_` prefix and double underscore `__` for nested properties in .env file.
|
|
17
17
|
* For example, to set the cacher prefix to `MYCACHE`, you should declare an env var as `MOL_CACHER__OPTIONS__PREFIX=MYCACHE`.
|
|
18
18
|
*/
|
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
import {config}from'./env-config.mjs'
|
|
1
|
+
import {config}from'./env-config.mjs';// Work around TypeScript module resolution issues
|
|
2
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires, import/no-unresolved
|
|
3
|
+
const { MoleculerLogger } = require('@cdm-logger/server/moleculer');
|
|
4
|
+
// Helper function to adapt the MoleculerLogger to be compatible with BrokerOptions.logger
|
|
5
|
+
const createMoleculerLogger = (opts) => new MoleculerLogger(opts);
|
|
6
|
+
const getMetricsConfig = () => {
|
|
7
|
+
// Parse the JSON string if it's a string, or use the object directly
|
|
8
|
+
if (typeof config.METRICS_CONFIG === 'string') {
|
|
9
|
+
try {
|
|
10
|
+
return JSON.parse(config.METRICS_CONFIG);
|
|
11
|
+
}
|
|
12
|
+
catch (e) {
|
|
13
|
+
return { enabled: false, port: 3030, path: '/metrics' };
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
return config.METRICS_CONFIG;
|
|
17
|
+
};
|
|
18
|
+
const metricsConfig = getMetricsConfig();
|
|
19
|
+
/**
|
|
2
20
|
* Moleculer ServiceBroker configuration file
|
|
3
21
|
*
|
|
4
22
|
* More info about options:
|
|
@@ -11,7 +29,7 @@ import {config}from'./env-config.mjs';/**
|
|
|
11
29
|
* For example to overwrite the 'logLevel', use `LOGLEVEL=warn` env var.
|
|
12
30
|
* To overwrite a nested parameter, e.g. retryPolicy.retries, use `RETRYPOLICY_RETRIES=10` env var.
|
|
13
31
|
*
|
|
14
|
-
* To overwrite broker
|
|
32
|
+
* To overwrite broker's deeply nested default options, which are not presented in 'moleculer.config.ts',
|
|
15
33
|
* via environment variables, use the `MOL_` prefix and double underscore `__` for nested properties in .env file.
|
|
16
34
|
* For example, to set the cacher prefix to `MYCACHE`, you should declare an env var as `MOL_CACHER__OPTIONS__PREFIX=MYCACHE`.
|
|
17
35
|
*/
|
|
@@ -23,22 +41,10 @@ const brokerConfig = {
|
|
|
23
41
|
// nodeID: config.CONNECTION_ID,
|
|
24
42
|
// Enable/disable logging or use custom logger. More info: https://moleculer.services/docs/0.14/logging.html
|
|
25
43
|
// Available logger types: 'Console', 'File', 'Pino', 'Winston', 'Bunyan', 'debug', 'Log4js', 'Datadog'
|
|
26
|
-
logger: {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
colors: true,
|
|
31
|
-
// Print module names with different colors (like docker-compose for containers)
|
|
32
|
-
moduleColors: false,
|
|
33
|
-
// Line formatter. It can be 'json', 'short',
|
|
34
|
-
// 'simple', 'full', a `Function` or a template string like '{timestamp} {level} {nodeID}/{mod}: {msg}'
|
|
35
|
-
formatter: 'full',
|
|
36
|
-
// Custom object printer. If not defined, it uses the `util.inspect` method.
|
|
37
|
-
objectPrinter: null,
|
|
38
|
-
// Auto-padding the module name in order to messages begin at the same column.
|
|
39
|
-
autoPadding: false,
|
|
40
|
-
},
|
|
41
|
-
},
|
|
44
|
+
logger: createMoleculerLogger({
|
|
45
|
+
name: 'moleculer',
|
|
46
|
+
level: config.LOG_LEVEL,
|
|
47
|
+
}),
|
|
42
48
|
// Default log level for built-in console logger. It can be overwritten in logger options above.
|
|
43
49
|
// Available values: trace, debug, info, warn, error, fatal
|
|
44
50
|
logLevel: config.LOG_LEVEL,
|
|
@@ -142,12 +148,12 @@ const brokerConfig = {
|
|
|
142
148
|
errorHandler: null,
|
|
143
149
|
// Enable/disable built-in metrics function. More info: https://moleculer.services/docs/0.14/metrics.html
|
|
144
150
|
metrics: {
|
|
145
|
-
enabled:
|
|
151
|
+
enabled: metricsConfig.enabled,
|
|
146
152
|
reporter: {
|
|
147
153
|
type: 'Prometheus',
|
|
148
154
|
options: {
|
|
149
|
-
port:
|
|
150
|
-
path:
|
|
155
|
+
port: metricsConfig.port,
|
|
156
|
+
path: metricsConfig.path,
|
|
151
157
|
defaultLabels: (registry) => ({
|
|
152
158
|
namespace: registry.broker.namespace,
|
|
153
159
|
nodeID: registry.broker.nodeID,
|
|
@@ -183,9 +189,9 @@ const brokerConfig = {
|
|
|
183
189
|
// Register custom middlewares
|
|
184
190
|
middlewares: [],
|
|
185
191
|
// Called after broker created.
|
|
186
|
-
created(
|
|
192
|
+
created() { },
|
|
187
193
|
// Called after broker starte.
|
|
188
|
-
started(
|
|
194
|
+
started() { },
|
|
189
195
|
// Called after broker stopped.
|
|
190
|
-
stopped(
|
|
196
|
+
stopped() { },
|
|
191
197
|
};export{brokerConfig as default};//# sourceMappingURL=moleculer.config.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"moleculer.config.mjs","sources":["../../src/config/moleculer.config.ts"],"sourcesContent":[null],"names":[],"mappings":"sCAIA
|
|
1
|
+
{"version":3,"file":"moleculer.config.mjs","sources":["../../src/config/moleculer.config.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/server-stack",
|
|
3
|
-
"version": "7.1.1-alpha.
|
|
3
|
+
"version": "7.1.1-alpha.21",
|
|
4
4
|
"description": "common core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@apollo/subgraph": "^2.7.1",
|
|
30
30
|
"@apollo/utils.keyvadapter": "^3.1.0",
|
|
31
31
|
"@casl/ability": "^4.1.5",
|
|
32
|
-
"@cdm-logger/client": "^9.0.
|
|
33
|
-
"@cdm-logger/server": "^9.0.
|
|
32
|
+
"@cdm-logger/client": "^9.0.8",
|
|
33
|
+
"@cdm-logger/server": "^9.0.10",
|
|
34
34
|
"@cdmbase/graphql-type-uri": "^4.0.0",
|
|
35
35
|
"@common-stack/cache-api-server": "7.1.1-alpha.14",
|
|
36
36
|
"@common-stack/client-core": "7.1.1-alpha.14",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"publishConfig": {
|
|
90
90
|
"access": "public"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "149c8c3720f353798d8536a96ef04cf7194b28fb",
|
|
93
93
|
"typescript": {
|
|
94
94
|
"definition": "lib/index.d.ts"
|
|
95
95
|
}
|