Files
kubesphere/pkg/simple/client/elasticsearch/interface.go
huanggze a71b35db9c feat: allow to export logs
Signed-off-by: huanggze <loganhuang@yunify.com>
2019-09-25 14:03:47 +08:00

12 lines
287 B
Go

package esclient
import "time"
type Client interface {
// Perform Search API
Search(body []byte, scrollTimeout time.Duration) ([]byte, error)
Scroll(scrollId string, scrollTimeout time.Duration) ([]byte, error)
ClearScroll(scrollId string)
GetTotalHitCount(v interface{}) int64
}