[Security Solution][Endpoint][Host Isolation] Isolation status badge from alert details#102274
Conversation
|
Pinging @elastic/security-onboarding-and-lifecycle-mgt (Team:Onboarding and Lifecycle Mgt) |
|
Pinging @elastic/esecurity-onboarding-and-lifecycle-mgt (Feature:Endpoint) |
paul-tavares
left a comment
There was a problem hiding this comment.
Some minor comments/questions
| }, [data]); | ||
|
|
||
| const agentStatusRow = { | ||
| title: 'Agent status', |
| tooltipContent={isolationFieldName} | ||
| value={`${isIsolated}`} | ||
| > | ||
| <EndpointHostIsolationStatus isIsolated={true} /> |
There was a problem hiding this comment.
You don't show pending statuses from this view?
x-pack/plugins/security_solution/public/common/components/endpoint/agent_status.tsx
Outdated
Show resolved
Hide resolved
|
jenkins, test this (restarting due to jenkins upgrade) |
paul-tavares
left a comment
There was a problem hiding this comment.
From our conversation - I left a few comments. I'm ok with you merging.
| }: { | ||
| agentId: string; | ||
| }): HostIsolationStatusResponse => { | ||
| const [isIsolated, setIsIsolated] = useState<Maybe<boolean>>(); |
There was a problem hiding this comment.
This should be:
const [isIsolated, setIsIsolated] = useState<boolean>(false);
| tooltipContent={isolationFieldName} | ||
| value={`${isIsolated}`} | ||
| > | ||
| <EndpointHostIsolationStatus isIsolated={isIsolated as boolean} /> |
There was a problem hiding this comment.
With above suggestion, you can avoid this cast.
…from alert details (elastic#102274)
…-png-pdf-report-type * 'master' of github.com:elastic/kibana: (447 commits) skip flaky suite (elastic#102366) [Security Solution][Endpoint][Host Isolation] Isolation status badge from alert details (elastic#102274) Add email connector info for Elastic Cloud (elastic#91363) [Workplace Search] remove or replace xs props for text on source connect view (elastic#102663) Do not double register dashboard url generator (elastic#102599) [TSVB] Replaces EuiCodeEditor 👉 Monaco editor (elastic#100684) [Discover] Update kibana.json adding owner and description (elastic#102292) [Exploratory View] Mobile experience (elastic#99565) chore(NA): moving @kbn/ui-shared-deps into bazel (elastic#101669) [TSVB] Index pattern select field disappear in Annotation tab (elastic#102314) [Security Solution][Endpoint][Host Isolation] Fixes bug where host isolation/unisolation works from alert details (elastic#102581) TSVB visualizations with no timefield do not render after upgrading from 7.12.1 to 7.13.0 (elastic#102494) [Logs UI] Add `event.original` fallback to message reconstruction rules (elastic#102236) [ML] Remove blank job definition as it is unused and out-of-sync with Elasticsearch (elastic#102506) [Lens] Fix wrong error detection on transition to Top values operation (elastic#102384) [ML] Anomaly detection job custom_settings improvements (elastic#102099) [Cases] Route: Get all alerts attach to a case (elastic#101878) Fixes wrong list exception type when creating endpoint event filters list (elastic#102522) remove search bar that's not working yet (elastic#102550) Migrated Ingest Node Pipeline Functional Tests to use test_user (elastic#102409) ... # Conflicts: # x-pack/plugins/reporting/public/share_context_menu/register_pdf_png_reporting.tsx
💚 Build SucceededMetrics [docs]Module Count
Async chunks
History
To update your PR or re-run it, just comment with: |
Summary
Screenshot