Skip to content

Commit fa1d0fe

Browse files
authored
[9.1] [Fleet] Allow to configure monitoring runtime in agent policy (elastic#233345) (elastic#233708)
# Backport This will backport the following commits from `main` to `9.1`: - [[Fleet] Allow to configure monitoring runtime in agent policy (elastic#233345)](elastic#233345) <!--- Backport version: 10.0.1 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sorenlouv/backport) <!--BACKPORT [{"author":{"name":"Nicolas Chaulet","email":"[email protected]"},"sourceCommit":{"committedDate":"2025-09-02T10:02:19Z","message":"[Fleet] Allow to configure monitoring runtime in agent policy (elastic#233345)","sha":"52c02e9d73625926f1f3592275db62ed1cbd71ec","branchLabelMapping":{"^v9.2.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:Fleet","backport:version","v9.2.0","v9.1.3","v8.19.3"],"title":"[Fleet] Allow to configure monitoring runtime in agent policy","number":233345,"url":"https://github.com/elastic/kibana/pull/233345","mergeCommit":{"message":"[Fleet] Allow to configure monitoring runtime in agent policy (elastic#233345)","sha":"52c02e9d73625926f1f3592275db62ed1cbd71ec"}},"sourceBranch":"main","suggestedTargetBranches":["9.1","8.19"],"targetPullRequestStates":[{"branch":"main","label":"v9.2.0","branchLabelMappingKey":"^v9.2.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/233345","number":233345,"mergeCommit":{"message":"[Fleet] Allow to configure monitoring runtime in agent policy (elastic#233345)","sha":"52c02e9d73625926f1f3592275db62ed1cbd71ec"}},{"branch":"9.1","label":"v9.1.3","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.19","label":"v8.19.3","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT-->
1 parent 9956521 commit fa1d0fe

File tree

15 files changed

+348
-16
lines changed

15 files changed

+348
-16
lines changed

oas_docs/bundle.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7888,6 +7888,9 @@
78887888
},
78897889
"agent_logging_to_files": {
78907890
"nullable": true
7891+
},
7892+
"agent_monitoring_runtime_experimental": {
7893+
"nullable": true
78917894
}
78927895
},
78937896
"type": "object"
@@ -8908,6 +8911,9 @@
89088911
},
89098912
"agent_logging_to_files": {
89108913
"nullable": true
8914+
},
8915+
"agent_monitoring_runtime_experimental": {
8916+
"nullable": true
89118917
}
89128918
},
89138919
"type": "object"
@@ -9225,6 +9231,9 @@
92259231
},
92269232
"agent_logging_to_files": {
92279233
"nullable": true
9234+
},
9235+
"agent_monitoring_runtime_experimental": {
9236+
"nullable": true
92289237
}
92299238
},
92309239
"type": "object"
@@ -10271,6 +10280,9 @@
1027110280
},
1027210281
"agent_logging_to_files": {
1027310282
"nullable": true
10283+
},
10284+
"agent_monitoring_runtime_experimental": {
10285+
"nullable": true
1027410286
}
1027510287
},
1027610288
"type": "object"
@@ -11563,6 +11575,9 @@
1156311575
},
1156411576
"agent_logging_to_files": {
1156511577
"nullable": true
11578+
},
11579+
"agent_monitoring_runtime_experimental": {
11580+
"nullable": true
1156611581
}
1156711582
},
1156811583
"type": "object"
@@ -12581,6 +12596,9 @@
1258112596
},
1258212597
"agent_logging_to_files": {
1258312598
"nullable": true
12599+
},
12600+
"agent_monitoring_runtime_experimental": {
12601+
"nullable": true
1258412602
}
1258512603
},
1258612604
"type": "object"
@@ -12901,6 +12919,9 @@
1290112919
},
1290212920
"agent_logging_to_files": {
1290312921
"nullable": true
12922+
},
12923+
"agent_monitoring_runtime_experimental": {
12924+
"nullable": true
1290412925
}
1290512926
},
1290612927
"type": "object"
@@ -14041,6 +14062,9 @@
1404114062
},
1404214063
"agent_logging_to_files": {
1404314064
"nullable": true
14065+
},
14066+
"agent_monitoring_runtime_experimental": {
14067+
"nullable": true
1404414068
}
1404514069
},
1404614070
"type": "object"
@@ -15214,6 +15238,12 @@
1521415238
}
1521515239
},
1521615240
"type": "object"
15241+
},
15242+
"target_directory": {
15243+
"type": "string"
15244+
},
15245+
"timeout": {
15246+
"type": "string"
1521715247
}
1521815248
},
1521915249
"required": [
@@ -15266,6 +15296,15 @@
1526615296
"level": {
1526715297
"type": "string"
1526815298
},
15299+
"metrics": {
15300+
"additionalProperties": false,
15301+
"properties": {
15302+
"period": {
15303+
"type": "string"
15304+
}
15305+
},
15306+
"type": "object"
15307+
},
1526915308
"to_files": {
1527015309
"type": "boolean"
1527115310
}
@@ -15275,6 +15314,9 @@
1527515314
"monitoring": {
1527615315
"additionalProperties": false,
1527715316
"properties": {
15317+
"_runtime_experimental": {
15318+
"type": "string"
15319+
},
1527815320
"apm": {},
1527915321
"enabled": {
1528015322
"type": "boolean"

oas_docs/bundle.serverless.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7888,6 +7888,9 @@
78887888
},
78897889
"agent_logging_to_files": {
78907890
"nullable": true
7891+
},
7892+
"agent_monitoring_runtime_experimental": {
7893+
"nullable": true
78917894
}
78927895
},
78937896
"type": "object"
@@ -8908,6 +8911,9 @@
89088911
},
89098912
"agent_logging_to_files": {
89108913
"nullable": true
8914+
},
8915+
"agent_monitoring_runtime_experimental": {
8916+
"nullable": true
89118917
}
89128918
},
89138919
"type": "object"
@@ -9225,6 +9231,9 @@
92259231
},
92269232
"agent_logging_to_files": {
92279233
"nullable": true
9234+
},
9235+
"agent_monitoring_runtime_experimental": {
9236+
"nullable": true
92289237
}
92299238
},
92309239
"type": "object"
@@ -10271,6 +10280,9 @@
1027110280
},
1027210281
"agent_logging_to_files": {
1027310282
"nullable": true
10283+
},
10284+
"agent_monitoring_runtime_experimental": {
10285+
"nullable": true
1027410286
}
1027510287
},
1027610288
"type": "object"
@@ -11563,6 +11575,9 @@
1156311575
},
1156411576
"agent_logging_to_files": {
1156511577
"nullable": true
11578+
},
11579+
"agent_monitoring_runtime_experimental": {
11580+
"nullable": true
1156611581
}
1156711582
},
1156811583
"type": "object"
@@ -12581,6 +12596,9 @@
1258112596
},
1258212597
"agent_logging_to_files": {
1258312598
"nullable": true
12599+
},
12600+
"agent_monitoring_runtime_experimental": {
12601+
"nullable": true
1258412602
}
1258512603
},
1258612604
"type": "object"
@@ -12901,6 +12919,9 @@
1290112919
},
1290212920
"agent_logging_to_files": {
1290312921
"nullable": true
12922+
},
12923+
"agent_monitoring_runtime_experimental": {
12924+
"nullable": true
1290412925
}
1290512926
},
1290612927
"type": "object"
@@ -14041,6 +14062,9 @@
1404114062
},
1404214063
"agent_logging_to_files": {
1404314064
"nullable": true
14065+
},
14066+
"agent_monitoring_runtime_experimental": {
14067+
"nullable": true
1404414068
}
1404514069
},
1404614070
"type": "object"
@@ -15214,6 +15238,12 @@
1521415238
}
1521515239
},
1521615240
"type": "object"
15241+
},
15242+
"target_directory": {
15243+
"type": "string"
15244+
},
15245+
"timeout": {
15246+
"type": "string"
1521715247
}
1521815248
},
1521915249
"required": [
@@ -15266,6 +15296,15 @@
1526615296
"level": {
1526715297
"type": "string"
1526815298
},
15299+
"metrics": {
15300+
"additionalProperties": false,
15301+
"properties": {
15302+
"period": {
15303+
"type": "string"
15304+
}
15305+
},
15306+
"type": "object"
15307+
},
1526915308
"to_files": {
1527015309
"type": "boolean"
1527115310
}
@@ -15275,6 +15314,9 @@
1527515314
"monitoring": {
1527615315
"additionalProperties": false,
1527715316
"properties": {
15317+
"_runtime_experimental": {
15318+
"type": "string"
15319+
},
1527815320
"apm": {},
1527915321
"enabled": {
1528015322
"type": "boolean"

oas_docs/output/kibana.serverless.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14849,6 +14849,8 @@ paths:
1484914849
nullable: true
1485014850
agent_logging_to_files:
1485114851
nullable: true
14852+
agent_monitoring_runtime_experimental:
14853+
nullable: true
1485214854
agent_features:
1485314855
items:
1485414856
additionalProperties: false
@@ -15531,6 +15533,8 @@ paths:
1553115533
nullable: true
1553215534
agent_logging_to_files:
1553315535
nullable: true
15536+
agent_monitoring_runtime_experimental:
15537+
nullable: true
1553415538
agent_features:
1553515539
items:
1553615540
additionalProperties: false
@@ -15752,6 +15756,8 @@ paths:
1575215756
nullable: true
1575315757
agent_logging_to_files:
1575415758
nullable: true
15759+
agent_monitoring_runtime_experimental:
15760+
nullable: true
1575515761
agent_features:
1575615762
items:
1575715763
additionalProperties: false
@@ -16453,6 +16459,8 @@ paths:
1645316459
nullable: true
1645416460
agent_logging_to_files:
1645516461
nullable: true
16462+
agent_monitoring_runtime_experimental:
16463+
nullable: true
1645616464
agent_features:
1645716465
items:
1645816466
additionalProperties: false
@@ -17133,6 +17141,8 @@ paths:
1713317141
nullable: true
1713417142
agent_logging_to_files:
1713517143
nullable: true
17144+
agent_monitoring_runtime_experimental:
17145+
nullable: true
1713617146
agent_features:
1713717147
items:
1713817148
additionalProperties: false
@@ -17813,6 +17823,8 @@ paths:
1781317823
nullable: true
1781417824
agent_logging_to_files:
1781517825
nullable: true
17826+
agent_monitoring_runtime_experimental:
17827+
nullable: true
1781617828
agent_features:
1781717829
items:
1781817830
additionalProperties: false
@@ -18036,6 +18048,8 @@ paths:
1803618048
nullable: true
1803718049
agent_logging_to_files:
1803818050
nullable: true
18051+
agent_monitoring_runtime_experimental:
18052+
nullable: true
1803918053
agent_features:
1804018054
items:
1804118055
additionalProperties: false
@@ -18798,6 +18812,8 @@ paths:
1879818812
nullable: true
1879918813
agent_logging_to_files:
1880018814
nullable: true
18815+
agent_monitoring_runtime_experimental:
18816+
nullable: true
1880118817
agent_features:
1880218818
items:
1880318819
additionalProperties: false
@@ -19580,6 +19596,10 @@ paths:
1958019596
type: string
1958119597
verification_mode:
1958219598
type: string
19599+
target_directory:
19600+
type: string
19601+
timeout:
19602+
type: string
1958319603
required:
1958419604
- sourceURI
1958519605
features:
@@ -19614,12 +19634,20 @@ paths:
1961419634
type: number
1961519635
level:
1961619636
type: string
19637+
metrics:
19638+
additionalProperties: false
19639+
type: object
19640+
properties:
19641+
period:
19642+
type: string
1961719643
to_files:
1961819644
type: boolean
1961919645
monitoring:
1962019646
additionalProperties: false
1962119647
type: object
1962219648
properties:
19649+
_runtime_experimental:
19650+
type: string
1962319651
apm: {}
1962419652
enabled:
1962519653
type: boolean

0 commit comments

Comments
 (0)