[Fleet] Add fleet server telemetry#101400
Conversation
|
Pinging @elastic/fleet (Team:Fleet) |
kpollich
left a comment
There was a problem hiding this comment.
One super minor comment otherwise LGTM 🚀
| soClient, | ||
| esClient, | ||
| undefined, | ||
| [...policyIds].map((policyId) => `(policy_id:"${policyId}")`).join(' or ') |
There was a problem hiding this comment.
Does this need the [...policyIds]? .map won't mutate the array, so this could maybe be policyIds.map directly w/o the copy.
There was a problem hiding this comment.
policyIds is not an array it's a set (I want uniq values) so I think we need the spread operator here.
There was a problem hiding this comment.
Ah I understand. Array.from might convey the intent more explicitly in that case: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from
💚 Build SucceededMetrics [docs]
History
To update your PR or re-run it, just comment with: cc @nchaulet |
💚 Backport successful
This backport PR will be merged automatically after passing CI. |
* master: (54 commits) Implement "select all" rules feature (elastic#100554) [ML] Remove script fields from the Anomaly detection alerting rule executor (elastic#101607) [Security solutions][Endpoint] Update event filtering texts (elastic#101563) [Enterprise Search] Mocks/tests tech debt - avoid hungry mocking (elastic#101107) [FTR] Updates esArchive paths [FTR] Updates esArchive paths [Security Solution][Detection Engine] Adds runtime field tests (elastic#101664) Added APM PHP agent to the list of agent names (elastic#101062) [CI] Restore old version_info behavior when .git directory is present (elastic#101642) [Fleet] Add fleet server telemetry (elastic#101400) [APM] Syncs agent config settings to APM Fleet policies (elastic#100744) [esArchiver] drop support for --dir, use repo-relative paths instead (elastic#101345) Revert "[xpack/test] restore incremental: false in ts project" [Security Solution] Remove Host Isolation feature flag (elastic#101655) [xpack/test] restore incremental: false in ts project [DOCS] Adds link to video landing page (elastic#101413) [ML] Move Index Data Visualizer into separate plugin (Part 1) (elastic#100922) Improve security plugin return types (elastic#101492) [ts] migrate `x-pack/test` to composite ts project (elastic#101441) [App Search] Updated Search UI to new URL (elastic#101320) ...
|
Hi @EricDavisX Thanks |
|
Hi @EricDavisX We have validated features on 7.14BC1 and found them working fine. Please find test cases execution under below mentioned test run. Thanks |
Summary
Resolve #95424
Add Fleet Server telemetry
While working on this I also added the number of updating agent to the agent collector.
New key added
Todo