import React from 'react'; import { Link } from 'react-router-dom'; import distanceInWordsToNow from 'date-fns/distance_in_words_to_now'; import { Row, Col } from 'joyent-react-styled-flexboxgrid'; import { Padding, Margin } from 'styled-components-spacing'; import Flex, { FlexItem } from 'styled-flex-component'; import styled from 'styled-components'; import remcalc from 'remcalc'; import { Card, CardOutlet, H2, H3, P, Label, FormGroup, FormLabel, Input, Checkbox, Anchor, Button, Hr, Table, TableThead, TableTbody, PaginationTableFoot, PaginationItem, TableTr, TableTh, TableTd, DeleteIcon, ArrowIcon } from 'joyent-ui-toolkit'; const GreyLabel = styled(Label)` opacity: 0.5; padding-right: ${remcalc(3)}; `; const VerticalDivider = styled.div` width: ${remcalc(1)}; background: ${props => props.theme.grey}; height: ${remcalc(24)}; display: flex; align-self: flex-end; margin: 0 ${remcalc(12)}; `; export const Meta = ({ id, name, capacity, template, created, updated, status, onRemove, removing = false }) => (

{name}

{capacity} desired instances


Template: Created: Updated:
); export const EventLogContainer = () => (

Event log

Filter
Time & date Log description Actor ID 09:52 - 28/03/2018 5 of 5 instances running Census check 09:50 - 28/03/2018 Destroying instances tritionServiceGroups 09:45 - 28/03/2018 10 of 5 instances running Census checks 12:17 - 26/03/2018 ‘Desired instances’ set to 5 raoulmillais Show hidden actions (63) 12:16 - 26/03/2018 Provisioning instances tritionServiceGroups 12:16 - 26/03/2018 7 of 10 instances running Census checks 12:11 - 26/03/2018 10 of 10 instances running Census checks 12:11 - 26/03/2018 Provisioning instances tritionServiceGroups 12:10 - 26/03/2018 0 of 10 instance running Census checks 12:09 - 26/03/2018 Job working tritionServiceGroups 09:51 - 28/03/2018 Job submission tritionServiceGroups 12:08 - 26/03/2018 Service group deployed raoulmillais Prev 1 Next
);