Skip to content

Commit

Permalink
Merge pull request #98 from vishnuchalla/telco-graph
Browse files Browse the repository at this point in the history
Ploty changes for telco KPIs
  • Loading branch information
vishnuchalla authored May 29, 2024
2 parents 375be86 + 547a9e4 commit 1569f9f
Show file tree
Hide file tree
Showing 12 changed files with 523 additions and 51 deletions.
3 changes: 3 additions & 0 deletions backend/app/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
from app.api.v1.endpoints.quay import quayJobs
from app.api.v1.endpoints.quay import quayGraphs
from app.api.v1.endpoints.telco import telcoJobs
from app.api.v1.endpoints.telco import telcoGraphs


router = APIRouter()

Expand All @@ -25,6 +27,7 @@

# Telco endpoints
router.include_router(telcoJobs.router, tags=['telco'])
router.include_router(telcoGraphs.router, tags=['telco'])

# Jira endpoints
router.include_router(jira.router, tags=['jira'])
2 changes: 1 addition & 1 deletion backend/app/api/v1/commons/telco.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def getData(start_datetime: date, end_datetime: date, configpath: str):
'formal': test_data['formal'],
"startDate": str(start_time_utc),
"endDate": str(end_time_utc),
"buildUrl": jenkins_url + str(test_data['cluster_artifacts']['ref']['jenkins_build']),
"buildUrl": jenkins_url + "/" + str(test_data['cluster_artifacts']['ref']['jenkins_build']),
"jobStatus": "success",
"jobDuration": execution_time_seconds,
})
Expand Down
Loading

0 comments on commit 1569f9f

Please sign in to comment.