Skip to content

Commit

Permalink
Update images
Browse files Browse the repository at this point in the history
  • Loading branch information
ErdemOzgen committed Mar 20, 2024
1 parent bf6a1a0 commit d098eb1
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ username ALL=(ALL) NOPASSWD: ALL

It shows the real-time status, logs, and DAG configurations. You can edit DAG configurations on a browser.

![example](assets/images/example.png)
![example](assets/images/Demo.png)

You can switch to the vertical graph with the button on the top right corner.

Expand Down Expand Up @@ -328,7 +328,7 @@ blackdagger version

This example workflow showcases a data pipeline typically implemented in DevOps and Data Engineering scenarios. It demonstrates an end-to-end data processing cycle starting from data acquisition and cleansing to transformation, loading, analysis, reporting, and ultimately, cleanup.

![Details-TD](assets/images/example.png)
![Details-TD](assets/images/Demo.png)

The YAML code below represents this workflow:

Expand Down
Binary file removed assets/images/Demo.png
Binary file not shown.
Binary file modified assets/images/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-dags.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-history.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-logoutput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/ui-search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions ui/src/components/molecules/DashboardTimechart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import {
} from 'recharts';
import { statusColorMapping } from '../../consts';
import { DAGStatus, SchedulerStatus, Status } from '../../models';
import { WorkflowListItem,WorkflowStatus } from '../../models/api';

type Props = { data: DAGStatus[] };
type Props = { data: DAGStatus[] | WorkflowListItem[] };

type DataFrame = {
name: string;
Expand All @@ -25,7 +26,7 @@ function DashboardTimechart({ data: input }: Props) {
const [data, setData] = React.useState<DataFrame[]>([]);
React.useEffect(() => {
const transformedData: DataFrame[] = input.map((dagStatus) => {
const status: Status | undefined = dagStatus.Status;
const status: Status | WorkflowStatus | undefined = dagStatus.Status;
if (!status || status.StartedAt === '-' || !status.FinishedAt) {
return null;
}
Expand Down

0 comments on commit d098eb1

Please sign in to comment.