Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion collector/nodes_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type NodeStatsNodeResponse struct {
ThreadPool map[string]NodeStatsThreadPoolPoolResponse `json:"thread_pool"`
JVM NodeStatsJVMResponse `json:"jvm"`
Breakers map[string]NodeStatsBreakersResponse `json:"breakers"`
HTTP map[string]int `json:"http"`
HTTP map[string]interface{} `json:"http"`
Transport NodeStatsTransportResponse `json:"transport"`
Process NodeStatsProcessResponse `json:"process"`
}
Expand Down
5 changes: 0 additions & 5 deletions collector/nodes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ func TestNodesStats(t *testing.T) {
for hn, handler := range handlers {
t.Run(fmt.Sprintf("%s/%s", hn, ver), func(t *testing.T) {

// TODO(@sysadmind): Remove this skip once we have a fix for v7.13.1 of elasticsearch
if ver == "7.13.1" {
t.Skip("7.13.1 has a breaking change and the fix has not yet been implemented.")
}

ts := httptest.NewServer(handler)
defer ts.Close()

Expand Down