@platformatic/service 3.2.1 → 3.3.0
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/config.d.ts +4 -0
- package/package.json +7 -7
- package/schema.json +7 -2
package/config.d.ts
CHANGED
|
@@ -488,6 +488,10 @@ export interface PlatformaticServiceConfig {
|
|
|
488
488
|
labels?: {
|
|
489
489
|
[k: string]: string;
|
|
490
490
|
};
|
|
491
|
+
/**
|
|
492
|
+
* The label name to use for the application identifier in metrics (e.g., applicationId, serviceId)
|
|
493
|
+
*/
|
|
494
|
+
applicationLabel?: string;
|
|
491
495
|
readiness?:
|
|
492
496
|
| boolean
|
|
493
497
|
| {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"rfdc": "^1.3.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
69
|
"undici": "^7.0.0",
|
|
70
|
-
"@platformatic/basic": "3.
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/metrics": "3.
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
70
|
+
"@platformatic/basic": "3.3.0",
|
|
71
|
+
"@platformatic/generators": "3.3.0",
|
|
72
|
+
"@platformatic/foundation": "3.3.0",
|
|
73
|
+
"@platformatic/metrics": "3.3.0",
|
|
74
|
+
"@platformatic/scalar-theme": "3.3.0",
|
|
75
|
+
"@platformatic/telemetry": "3.3.0"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.
|
|
3
|
-
"version": "3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.3.0.json",
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"title": "Platformatic Service Config",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -1917,6 +1917,11 @@
|
|
|
1917
1917
|
"type": "string"
|
|
1918
1918
|
}
|
|
1919
1919
|
},
|
|
1920
|
+
"applicationLabel": {
|
|
1921
|
+
"type": "string",
|
|
1922
|
+
"default": "applicationId",
|
|
1923
|
+
"description": "The label name to use for the application identifier in metrics (e.g., applicationId, serviceId)"
|
|
1924
|
+
},
|
|
1920
1925
|
"readiness": {
|
|
1921
1926
|
"anyOf": [
|
|
1922
1927
|
{
|