fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

improve descriptions of entries on /debug endpoint (#362)

+4 -4
+4 -4
cmd/zoekt-sourcegraph-indexserver/main.go
··· 978 978 go func() { 979 979 mux := http.NewServeMux() 980 980 debugserver.AddHandlers(mux, true, []debugserver.DebugPage{ 981 - {Href: "debug/indexed", Text: "Indexed"}, 982 - {Href: "debug/list?indexed=true", Text: "Assigned (all)", Description: "includes repositories which this instance temporarily holds during re-balancing"}, 983 - {Href: "debug/list?indexed=false", Text: "Assigned (this instance)"}, 984 - {Href: "debug/queue", Text: "Queue"}, 981 + {Href: "debug/indexed", Text: "Indexed", Description: "list of all indexed repositories"}, 982 + {Href: "debug/list?indexed=false", Text: "Assigned (this instance)", Description: "list of all repositories that are assigned to this instance"}, 983 + {Href: "debug/list?indexed=true", Text: "Assigned (all)", Description: "same as above, but includes repositories which this instance temporarily holds during re-balancing"}, 984 + {Href: "debug/queue", Text: "Indexing Queue State", Description: "list of all repositories in the indexing queue, sorted by descending priority"}, 985 985 }...) 986 986 s.addDebugHandlers(mux) 987 987 debug.Printf("serving HTTP on %s", conf.listen)