/* This component is used for creating and editing both global and team scheduled queries */ import React from "react"; import { syntaxHighlight } from "fleet/helpers"; import Modal from "components/Modal"; import Button from "components/buttons/Button"; import TooltipWrapper from "components/TooltipWrapper"; const baseClass = "preview-data-modal"; interface IPreviewDataModalProps { onCancel: () => void; } const PreviewDataModal = ({ onCancel, }: IPreviewDataModalProps): JSX.Element => { const json = { action: "snapshot", snapshot: [ { remote_address: "0.0.0.0", remote_port: "0", cmdline: "/usr/sbin/syslogd", }, ], name: "xxxxxxx", hostIdentifier: "xxxxxxx", calendarTime: "xxx xxx x xx:xx:xx xxxx UTC", unixTime: "xxxxxxxxx", epoch: "xxxxxxxxx", counter: "x", numerics: "x", }; return (

The data sent to your configured log destination will look similar to the following JSON:

        
); }; export default PreviewDataModal;