Skip to content
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

Add support for multi-run graphing in ilab / Crucible backend #120

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4094cc9
Add ILAB / Crucible support to CPT backend
dbutenhof Aug 21, 2024
e6c8ee0
UI code updates
MVarshini Sep 23, 2024
5e735a7
Improve periodic graph names.
dbutenhof Sep 23, 2024
505903b
Documentation and cleanup
dbutenhof Sep 30, 2024
4ccd603
Allow overriding graph color
dbutenhof Oct 1, 2024
de0accc
Some (self) review cleanup
dbutenhof Oct 3, 2024
ad48906
Move periods query to action/reducer
dbutenhof Oct 3, 2024
5671d77
Cleanup OpenSearch connections
dbutenhof Oct 4, 2024
a49fc65
Try to remove a couple of incidental changes
dbutenhof Oct 7, 2024
1d5783d
Undoing a few more ancillary changes
dbutenhof Oct 7, 2024
f20e45d
Review feedback
dbutenhof Oct 9, 2024
a959fe6
Pagination and Date filter issue
MVarshini Oct 10, 2024
79151ea
Rewrite param consolidation
dbutenhof Oct 10, 2024
8b75d5f
Add framework for UI multi-run comparison
dbutenhof Oct 9, 2024
c8cd597
Some UI cleanup
dbutenhof Oct 10, 2024
3b0b190
Debug unhandled exceptions
dbutenhof Oct 11, 2024
b32a606
Fix multigraph bug
dbutenhof Oct 11, 2024
2148311
Support for per-iteration parameters.
dbutenhof Oct 11, 2024
312eebf
comparison
MVarshini Oct 11, 2024
0d7592a
render graph
MVarshini Oct 15, 2024
e056d62
Pagination for Graphs
MVarshini Oct 15, 2024
659d820
Support relative timescale graphs
dbutenhof Oct 15, 2024
e25b82e
pagination data
MVarshini Oct 15, 2024
993a4fe
Multi run comparison adjustments
dbutenhof Oct 17, 2024
de38738
A few tweaks
dbutenhof Oct 17, 2024
25fe58f
closing of graph accordion
MVarshini Oct 18, 2024
eed488f
Adjustments
dbutenhof Oct 18, 2024
606f468
conflict resolve
MVarshini Oct 18, 2024
e755221
multiple APIs to fetch periods and icon to display more info
MVarshini Oct 18, 2024
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ indice=
username=
password=

[<product>.crucible]
url=
username=
password=

[ocp-server]
port=8000

Expand Down Expand Up @@ -53,7 +58,7 @@ indice=
username=
password=
```
**Note: The below applies only for the elastic search at the moment**
**Note: The below applies only for the elastic search at the moment**
If you also have an archived internal instance that keeps track of older data, it can be specified with '.internal' suffix. Example of our `OCP` internal archived instance's configuration.
```toml
[ocp.elasticsearch.internal]
Expand Down
20 changes: 20 additions & 0 deletions backend/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions backend/app/api/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
from fastapi import APIRouter

from app.api.v1.endpoints.ocp import results
Expand All @@ -11,6 +12,7 @@
from app.api.v1.endpoints.telco import telcoJobs
from app.api.v1.endpoints.telco import telcoGraphs
from app.api.v1.endpoints.ocm import ocmJobs
from app.api.v1.endpoints.ilab import ilab


router = APIRouter()
Expand Down Expand Up @@ -39,3 +41,6 @@

# OCM endpoint
router.include_router(ocmJobs.router, tags=['ocm'])

# InstructLab endpoint
router.include_router(router=ilab.router, tags=['ilab'])
Loading
Loading