logService.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package logapi
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/olivere/elastic"
  7. "iot_manager_service/util/es"
  8. )
  9. type logService struct {
  10. }
  11. var LogService logService
  12. func (l logService) search(indexName string,
  13. page, size int,
  14. query *elastic.BoolQuery) (*res, error) {
  15. result, err := es.Client.Search(indexName).
  16. Query(query).
  17. Size(size).
  18. From((page-1)*size).
  19. Sort("t", false).
  20. Do(context.Background())
  21. //查询错误
  22. if err != nil {
  23. return nil, err
  24. }
  25. //处理结果
  26. var logVOS []logVO
  27. var a logVO
  28. var total int64
  29. if total = result.Hits.TotalHits; total > 0 {
  30. fmt.Printf("Found a total of %d apilog\n", result.Hits.TotalHits)
  31. // Iterate through results
  32. for _, hit := range result.Hits.Hits {
  33. // hit.Index contains the name of the index
  34. // Deserialize hit.Source into a Tweet (could also be just a map[string]interface{}).
  35. json.Unmarshal(*hit.Source, &a)
  36. a.Id = hit.Id
  37. logVOS = append(logVOS, a)
  38. }
  39. res := &res{
  40. Current: page,
  41. Size: size,
  42. Pages: int(total)/size + 1,
  43. Total: total,
  44. Records: logVOS,
  45. }
  46. return res, nil
  47. } else {
  48. // No hits
  49. return nil, nil
  50. }
  51. }