Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
8ddc342
Ingest server can can data as is
rkooo567 Feb 7, 2020
458a8e3
PoC done.
rkooo567 Feb 10, 2020
dcf020d
Clean up
rkooo567 Feb 10, 2020
6a4bc20
Final clean up before PR
rkooo567 Feb 10, 2020
86bde5d
Fixed code based on code review
rkooo567 Feb 11, 2020
aaf3cb1
Fixed based on code review
rkooo567 Feb 11, 2020
082da95
Merge branch 'master' into hosted_dashboard
rkooo567 Feb 12, 2020
7d25376
bug fix
rkooo567 Feb 12, 2020
b31e886
Prototype exporter completed
rkooo567 Feb 11, 2020
bb2da83
Implemented end to end flow
rkooo567 Feb 12, 2020
2bfc766
Clean up
rkooo567 Feb 13, 2020
b480609
Fix bug
rkooo567 Feb 13, 2020
c99112e
Formatting.
rkooo567 Feb 13, 2020
5993327
Grafana integration done
rkooo567 Feb 17, 2020
9c48eff
Added a todo comment to implement frontend ui
rkooo567 Feb 17, 2020
01d32c2
Merge pull request #2 from anyscale/hd-e2e-impl
rkooo567 Feb 17, 2020
c6ddc24
Formatting + removed unnecessary files
rkooo567 Feb 18, 2020
57c5e7f
Merge pull request #3 from anyscale/grafana_integration
rkooo567 Feb 19, 2020
834a807
S3 writer
rkooo567 Feb 19, 2020
87319a1
formatting
rkooo567 Feb 20, 2020
a73b950
Merge pull request #4 from anyscale/persist_data
rkooo567 Feb 20, 2020
1e79e78
Merge branch 'master' into hosted_dashboard
rkooo567 Feb 20, 2020
0c25b4e
Formatting
rkooo567 Feb 20, 2020
ece32f3
Hosted Dashboard Initiation Flow
simon-mo Feb 28, 2020
74db3b9
Grafana integration
simon-mo Feb 29, 2020
28bc3e1
Add iFrame file
simon-mo Feb 29, 2020
08527d4
Update grafana to {node,worker}x{cpu, memory}
simon-mo Mar 1, 2020
2ec86df
Merge pull request #6 from anyscale/hdash-grafana
rkooo567 Mar 4, 2020
3cf7e23
Merge pull request #5 from anyscale/hdash-initiation-flow
rkooo567 Mar 4, 2020
9734be0
Merge branch 'master' into hosted_dashboard
rkooo567 Mar 4, 2020
a623058
Fixed minor issues.
rkooo567 Mar 9, 2020
b22e3e3
fixed ingest server.
rkooo567 Mar 11, 2020
14a8078
Merge branch 'master' into hosted_dashboard
rkooo567 Mar 11, 2020
c0fd36b
Add environ override, working on product now
simon-mo Mar 11, 2020
946cafa
Multi-user fully supported now.
rkooo567 Mar 13, 2020
baebf2d
Change the default URL.
rkooo567 Mar 13, 2020
d545750
Fix minor errors. Change the URL to use hosted dashboard.
rkooo567 Mar 13, 2020
7b33bcb
Dashboard refactoring (#7)
rkooo567 Mar 19, 2020
abf75e3
Fixed a minor issue.
rkooo567 Mar 19, 2020
1bb527f
Basic refactoring.
rkooo567 Mar 19, 2020
17be980
Delete undeleted frontend code.
rkooo567 Mar 19, 2020
a715478
Refactoring with api changes.
rkooo567 Mar 20, 2020
d607144
Use click for a main function.
rkooo567 Mar 20, 2020
df053a2
Refactoring interface location.
rkooo567 Mar 20, 2020
648ae48
Fixed merge conflict.
rkooo567 Mar 20, 2020
1021b94
Last refactoring.
rkooo567 Mar 23, 2020
ad959e4
Formatting.
rkooo567 Mar 23, 2020
6a287ba
Minor fix.
rkooo567 Mar 23, 2020
c1f3bf5
Addressed code review.
rkooo567 Mar 24, 2020
680e0a0
Add tests and restructure code to be unit testable.
rkooo567 Mar 24, 2020
c8a071a
Addressed code review.
rkooo567 Mar 24, 2020
91a80ee
Formatting.
rkooo567 Mar 24, 2020
46bd23c
Merge branch 'master' into refactoring
rkooo567 Mar 24, 2020
15acc00
Formatting.
rkooo567 Mar 24, 2020
a51ef00
Minor fix.
rkooo567 Mar 24, 2020
c1fdeeb
Formatting.
rkooo567 Mar 24, 2020
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
5 changes: 4 additions & 1 deletion python/ray/dashboard/client/src/pages/dashboard/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ const slice = createSlice({
tuneAvailability: TuneAvailabilityResponse;
}>
) => {
state.tuneAvailability = action.payload.tuneAvailability["available"];
const tuneAvailability = action.payload.tuneAvailability === null ?
false :
action.payload.tuneAvailability["available"];
state.tuneAvailability = tuneAvailability;
state.lastUpdatedAt = Date.now();
},
setError: (state, action: PayloadAction<string | null>) => {
Expand Down
Loading