Conversation
|
Since you can have multiple mgr's on different hosts, I think we need to qualify these with the mgr id. Something like mgr/x/dashboard/server_addr (The dm-crypt stuff in config-key is currently using / instead of . as delimiter; we may as well stick with that?) |
|
ok, will hack |
ac10336 to
1217a29
Compare
|
Working on Yet Another Rebase |
|
Removing some commits that had made it into master in the meantime made this merge more cleanly; this branch appears to pass dumb functional tests again. |
|
uhh....there are apparently a few more files than I wanted here. Edit: ah, no, all the JS and CSS. My bad. |
|
@dmick you could probably cull a lot of the AdminLTE guff, I think there are various optional bits (themes/plugins) in there where we only need the files for the ones we use. |
|
rebased again |
|
weird thing on this run: http://pulpito.ceph.com/sage-2017-05-17_15:24:19-rados-wip-sage-testing---basic-smithi/1189010 smithi055 and smithi067 are both trusty, but the cherrypy error only came up on one of them. not a package dependency for deb yet? |
|
http://pulpito.ceph.com/sage-2017-05-17_15:24:19-rados-wip-sage-testing---basic-smithi/ |
tchaikov
left a comment
There was a problem hiding this comment.
yeah, we can remove the unused AdminLTE bits later on. and move this into a separated package probably.
| bool found = global_handle->get_config(handle, what, &value); | ||
| if (found) { | ||
| derr << "Found" << dendl; | ||
| derr << "ceph_config_get " << what << " found: " << value.c_str() << dendl; |
There was a problem hiding this comment.
could you use __func__ instead here?
| return PyString_FromString(value.c_str()); | ||
| } else { | ||
| derr << "Not found" << dendl; | ||
| derr << "ceph_config_get " << what << " not found " << dendl; |
|
@dmick please feel free to merge this when you feel appropriate. |
...so that mgr modules can get at it. Signed-off-by: John Spray <[email protected]>
Signed-off-by: John Spray <[email protected]>
A read only display of some of the cluster's state, plus some cephfs/rbd/osd pages that demonstrate how to go read state remotely from daemons. Signed-off-by: John Spray <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
Otherwise, the incomplete ServeThread type causes problems for others who include PyModules.h Signed-off-by: Dan Mick <[email protected]>
…y '/' dm_crypt config-key usage has established '/' as the separator; keep that as a convention for now Signed-off-by: Dan Mick <[email protected]>
Signed-off-by: Dan Mick <[email protected]>
|
Dependencies added, very simple smoke test added to make check |
/home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:45: run: sleep 1 /home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:39: run: [[ 4 < 30 ]] /home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:47: run: curl -s http://127.0.0.1:7001/toplevel_data /home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:48: run: jq .health.overall_status /home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:48: run: grep HEALTH_ parse error: Invalid numeric literal at line 1, column 10 /home/jenkins-build/build/workspace/ceph-pull-requests/src/test/mgr/mgr-dashboard-smoke.sh:48: run: return 1 /home/jenkins-build/build/workspace/ceph-pull-requests/qa/workunits/ceph-helpers.sh:1692: main: display_logs td/mgr-dashboard-smoke |
|
Yep; internal failure in dashboard. Trying to reproduce now. |
Signed-off-by: Dan Mick <[email protected]>
|
It was intermittent; sometimes after the mgr said 'available', dashboard still wasn't quite ready. Added a second retry loop; running with |
|
excellent, thanks! |
|
Sorry @tchaikov, missed your comments about func; I wasn't ignoring you on purpose |
|
@dmick no worries, we can always improve it once we are at it. |
Cleanup of work from @jcsp to add a ceph-mgr Python module to provide a web service that displays a simple GUI status, with one feature added to allow configuration of the listen addr and port for the server.
Configuration is done with ceph config-key put; the key names are
mgr.dashboard.server_addr
mgr.dashboard.server_port