Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

🎨 UI for monitoring your Metaflow executions!

License

NotificationsYou must be signed in to change notification settings

Netflix/metaflow-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Metaflow UI

BuildGitHub release

Metaflow UI is a tool to monitorMetaflow workflows in real-time.

Getting started

Using Metaflow UI requiresMetaflow Service for now.

To setup a local development environment, seedocs/README.md.

Deploying the UI

Deploying Metaflow UI requires setting up a UI service (which is different from the Metaflow service but uses the same backing database). To deploy the UI service, follow instructions atMetaflow UI Service.

Docker support

Dockerfile provides support for annginx container hosting the production build of the application.

# Build Docker image$ docker build --tag metaflow-ui:latest.# Run Docker container on port 3000$ docker run -p 3000:3000 metaflow-ui:latest# Run Docker container using custom API endpoint$ docker run -p 3000:3000 -e METAFLOW_SERVICE=http://custom-ui-backend/api metaflow-ui:latest

For example, when used with a locally deployedMetaflow UI Service, the UI can be launched with

docker run -p 3000:3000 -e METAFLOW_SERVICE=http://localhost:8083/ metaflow-ui:latest

Dockerfile also supports the following environment variables to inject content into the UI's index.html:

  • METAFLOW_HEAD - Inject content tohead element
  • METAFLOW_BODY_BEFORE - Inject content at the beginning ofbody element
  • METAFLOW_BODY_AFTER - Inject content at the end ofbody element

Use cases for these variables range from additional meta tags to analytics script injection.

Example on how to add a keyword meta tag to Metaflow UI:

METAFLOW_HEAD='<meta name="keywords" content="metaflow" />'

Plugins development

Seedocs/plugin-system.md to get started with plugins development.

Documentation

Seedocs/README.md to learn more.

General Metaflow documentation availablehere:

Contributing

We welcome contributions to Metaflow. Please see ourcontribution guide for more details.

Get in Touch

There are several ways to get in touch with us:


[8]ページ先頭

©2009-2025 Movatter.jp