numaflow-ui-shakira-test
v0.0.1
Published
Numaflow UI
Downloads
2
Maintainers
Readme
Numaflow UI
A web-based UI for Numaflow
The UI has the following features:
- View running pipelines in your namespace
- View Vertex and Edge Information of your pipeline
- View BackPressure and Pending Messages
- View Container Logs for a given vertex
Development
See Development Guide.
# Build image and deploy to a k3d cluster
make start
# Port-forward, and access https://localhost:8443
kubectl -n numaflow-system port-forward svc/numaflow-server 8443
Import the App component the run the package as follows:
- CJS
import App from 'numaflow-ui-test/dist/cjs/src/components/plugin/NumaflowMonitorApp/App';
- ESM
import App from 'numaflow-ui-test/dist/esm/src/components/plugin/NumaflowMonitorApp/App';
- Pass the cluster hostname and namespace to get the UI running
<App hostUrl={hostUrl} namespace={namespace} />