Skip to content

[ERP-2330] Job status codes as table #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 59 additions & 27 deletions src/components/tool/guide/Instructions/StartInstructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ import {
Code,
Flex,
Kbd,
ListItem,
Radio,
RadioGroup,
UnorderedList,
Table,
Tbody,
Td,
Th,
Thead,
Tr,
} from "@chakra-ui/react";

import { useState } from "react";
Expand Down Expand Up @@ -183,31 +187,59 @@ Job ID Username Queue Jobname SessID NDS TSK Memory Time S Ti
1234567.pbs username quick job-name -- 1 4 32gb 01:00 Q --`}
</CopyBox>
<InstructionText>
The job status will be shown in the <Code>S</Code> column. Possible
values are:
<UnorderedList>
<ListItem>
<Code>Q</Code> - Queued
</ListItem>
<ListItem>
<Code>R</Code> - Running
</ListItem>
<ListItem>
<Code>B</Code> - Array job has at least one subjob running
</ListItem>
<ListItem>
<Code>H</Code> - Held
</ListItem>
<ListItem>
<Code>S</Code> - Suspended
</ListItem>
<ListItem>
<Code>E</Code> - Exiting
</ListItem>
<ListItem>
<Code>F</Code> - Finished
</ListItem>
</UnorderedList>
The job status will be shown in the <Code>S</Code> column.
<Table size="sm">
<Thead>
<Tr>
<Th>Status</Th>
<Th>Description</Th>
</Tr>
</Thead>
<Tbody>
<Tr>
<Td>
<Code>Q</Code>
</Td>
<Td>Queued</Td>
</Tr>
<Tr>
<Td>
<Code>R</Code>
</Td>
<Td>Running</Td>
</Tr>
<Tr>
<Td>
<Code>B</Code>
</Td>
<Td>Array job has at least one subjob running</Td>
</Tr>
<Tr>
<Td>
<Code>H</Code>
</Td>
<Td>Held</Td>
</Tr>
<Tr>
<Td>
<Code>S</Code>
</Td>
<Td>Suspended</Td>
</Tr>
<Tr>
<Td>
<Code>E</Code>
</Td>
<Td>Exiting</Td>
</Tr>
<Tr>
<Td>
<Code>F</Code>
</Td>
<Td>Finished</Td>
</Tr>
</Tbody>
</Table>
</InstructionText>
</>
)}
Expand Down
Loading