( input map[uint64]*RunningQueryDetails)
| 375 | } |
| 376 | |
| 377 | func (qss *QuerySupervisorDetails) changeQueryMapFormat( |
| 378 | input map[uint64]*RunningQueryDetails) map[string]*RunningQueryDetails { |
| 379 | output := make(map[string]*RunningQueryDetails) |
| 380 | for k, v := range input { |
| 381 | output[fmt.Sprintf("%v", k)] = v |
| 382 | } |
| 383 | return output |
| 384 | } |
| 385 | |
| 386 | func (qss *QuerySupervisorDetails) ServeHTTP( |
| 387 | w http.ResponseWriter, req *http.Request) { |