wattpm 3.7.0 → 3.8.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/package.json +5 -5
- package/schema.json +68 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"pino-pretty": "^13.0.0",
|
|
30
30
|
"split2": "^4.2.0",
|
|
31
31
|
"table": "^6.8.2",
|
|
32
|
-
"@platformatic/control": "3.
|
|
33
|
-
"@platformatic/
|
|
34
|
-
"@platformatic/
|
|
32
|
+
"@platformatic/control": "3.8.0",
|
|
33
|
+
"@platformatic/runtime": "3.8.0",
|
|
34
|
+
"@platformatic/foundation": "3.8.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"neostandard": "^0.12.0",
|
|
43
43
|
"typescript": "^5.5.4",
|
|
44
44
|
"undici": "^7.0.0",
|
|
45
|
-
"@platformatic/node": "3.
|
|
45
|
+
"@platformatic/node": "3.8.0"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/3.8.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -923,8 +923,7 @@
|
|
|
923
923
|
{
|
|
924
924
|
"type": "string"
|
|
925
925
|
}
|
|
926
|
-
]
|
|
927
|
-
"default": 1
|
|
926
|
+
]
|
|
928
927
|
},
|
|
929
928
|
"workersRestartDelay": {
|
|
930
929
|
"anyOf": [
|
|
@@ -1828,6 +1827,72 @@
|
|
|
1828
1827
|
],
|
|
1829
1828
|
"additionalProperties": false
|
|
1830
1829
|
},
|
|
1830
|
+
"verticalScaler": {
|
|
1831
|
+
"type": "object",
|
|
1832
|
+
"properties": {
|
|
1833
|
+
"enabled": {
|
|
1834
|
+
"type": "boolean",
|
|
1835
|
+
"default": true
|
|
1836
|
+
},
|
|
1837
|
+
"maxTotalWorkers": {
|
|
1838
|
+
"type": "number",
|
|
1839
|
+
"minimum": 1
|
|
1840
|
+
},
|
|
1841
|
+
"minWorkers": {
|
|
1842
|
+
"type": "number",
|
|
1843
|
+
"minimum": 1
|
|
1844
|
+
},
|
|
1845
|
+
"maxWorkers": {
|
|
1846
|
+
"type": "number",
|
|
1847
|
+
"minimum": 1
|
|
1848
|
+
},
|
|
1849
|
+
"scaleUpELU": {
|
|
1850
|
+
"type": "number",
|
|
1851
|
+
"minimum": 0,
|
|
1852
|
+
"maximum": 1
|
|
1853
|
+
},
|
|
1854
|
+
"scaleDownELU": {
|
|
1855
|
+
"type": "number",
|
|
1856
|
+
"minimum": 0,
|
|
1857
|
+
"maximum": 1
|
|
1858
|
+
},
|
|
1859
|
+
"minELUDiff": {
|
|
1860
|
+
"type": "number",
|
|
1861
|
+
"minimum": 0,
|
|
1862
|
+
"maximum": 1
|
|
1863
|
+
},
|
|
1864
|
+
"timeWindowSec": {
|
|
1865
|
+
"type": "number",
|
|
1866
|
+
"minimum": 0
|
|
1867
|
+
},
|
|
1868
|
+
"cooldownSec": {
|
|
1869
|
+
"type": "number",
|
|
1870
|
+
"minimum": 0
|
|
1871
|
+
},
|
|
1872
|
+
"scaleIntervalSec": {
|
|
1873
|
+
"type": "number",
|
|
1874
|
+
"minimum": 0
|
|
1875
|
+
},
|
|
1876
|
+
"applications": {
|
|
1877
|
+
"type": "object",
|
|
1878
|
+
"additionalProperties": {
|
|
1879
|
+
"type": "object",
|
|
1880
|
+
"properties": {
|
|
1881
|
+
"minWorkers": {
|
|
1882
|
+
"type": "number",
|
|
1883
|
+
"minimum": 1
|
|
1884
|
+
},
|
|
1885
|
+
"maxWorkers": {
|
|
1886
|
+
"type": "number",
|
|
1887
|
+
"minimum": 1
|
|
1888
|
+
}
|
|
1889
|
+
},
|
|
1890
|
+
"additionalProperties": false
|
|
1891
|
+
}
|
|
1892
|
+
}
|
|
1893
|
+
},
|
|
1894
|
+
"additionalProperties": false
|
|
1895
|
+
},
|
|
1831
1896
|
"inspectorOptions": {
|
|
1832
1897
|
"type": "object",
|
|
1833
1898
|
"properties": {
|