forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02cc2f0
commit 5da5b72
Showing
10 changed files
with
80 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ Content | |
|
||
installation | ||
ui | ||
code | ||
cli | ||
profiling | ||
tutorial | ||
profiling | ||
cli | ||
code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python -m SimpleHTTPServer 8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,91 @@ | ||
UI / Screenshots | ||
================= | ||
The Airflow UI make it easy to monitor and troubleshoot your data pipelines. | ||
Here's a quick overview of some of the features and visualizations you | ||
can find in the Airflow UI. | ||
|
||
|
||
DAGs View | ||
......... | ||
List of the DAGs in your environment, and a set of shortcuts to useful pages. | ||
You can see exactly how many tasks succeeded, failed and are currently | ||
running at a glance. | ||
|
||
------------ | ||
|
||
.. image:: img/dags.png | ||
|
||
------------ | ||
|
||
|
||
Tree View | ||
......... | ||
A tree representation of the DAG that spans across time. If a pipeline is | ||
late, you can quickly see where the different steps are at and identify | ||
the blocking ones. | ||
|
||
------------ | ||
|
||
.. image:: img/tree.png | ||
|
||
------------ | ||
|
||
Graph View | ||
.......... | ||
The graph is perhaps the most comprehensive. Visualize your DAG's dependencies | ||
and their current status for a specific run. | ||
|
||
------------ | ||
|
||
.. image:: img/graph.png | ||
|
||
------------ | ||
|
||
Gantt Chart | ||
........... | ||
The Gantt chart lets you analyse task duration and overlap, you can quickly | ||
identify bottlenecks and where the bulk of the time is spent for specific | ||
DAG runs. | ||
|
||
------------ | ||
|
||
.. image:: img/gantt.png | ||
|
||
------------ | ||
|
||
Task Duration | ||
............. | ||
The duration of your different tasks over the past N runs. This view lets | ||
you find outliers and quickly understand where the time is spent in your | ||
DAG, over many runs. | ||
|
||
|
||
------------ | ||
|
||
.. image:: img/duration.png | ||
|
||
------------ | ||
|
||
Code View | ||
......... | ||
Transparency is everything. While the code for your pipeline is in source | ||
control, this is a quick way to get to the code that generates the DAG and | ||
provide yet more context. | ||
|
||
------------ | ||
|
||
.. image:: img/code.png | ||
|
||
------------ | ||
|
||
Task Instance Context Menu | ||
......... | ||
From the pages seen above (tree view, graph view, gantt, ...), it is always | ||
possible to click on a task instance, and get to this rich context menu | ||
that can take you to more detailed metadata, and perform some actions. | ||
|
||
------------ | ||
|
||
.. image:: img/context.png | ||
|
||
------------ |