Skip to content

Commit 63722be

Browse files
committed
Add ofnet master inspect
1 parent 7326c32 commit 63722be

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

Godeps/Godeps.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/ofnet/ofnetMaster.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netmaster/daemon.go

+11
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,17 @@ func (d *daemon) registerRoutes(router *mux.Router) {
157157
s.HandleFunc(fmt.Sprintf("/%s", master.GetServicesRESTEndpoint),
158158
get(true, d.services))
159159

160+
// Debug REST endpoint for inspecting ofnet state
161+
s.HandleFunc("/debug/ofnet", func(w http.ResponseWriter, r *http.Request) {
162+
ofnetMasterState, err := d.ofnetMaster.InspectState()
163+
if err != nil {
164+
log.Errorf("Error fetching ofnet state. Err: %v", err)
165+
http.Error(w, "Error fetching ofnet state", http.StatusInternalServerError)
166+
return
167+
}
168+
w.Write(ofnetMasterState)
169+
})
170+
160171
}
161172

162173
// XXX: This function should be returning logical state instead of driver state

0 commit comments

Comments
 (0)