Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Histogram Panel not show any data of a valid query, but table panel shows #758

Closed
galindro opened this issue Dec 9, 2013 · 3 comments
Closed

Comments

@galindro
Copy link

galindro commented Dec 9, 2013

Panel:

image

Query:

curl -XGET 'http://xxx.xxx.xxx.xxx:9200/logstash-2013.12.09,logstash-2013.12.08/_search?pretty' -d '{
  "facets": {
    "4": {
      "date_histogram": {
        "field": "EventTime",
        "interval": "1h"
      },
      "global": true,
      "facet_filter": {
        "fquery": {
          "query": {
            "filtered": {
              "query": {
                "query_string": {
                  "query": "DHCP_EventID:\"14\""
                }
              },
              "filter": {
                "bool": {
                  "must": [
                    {
                      "fquery": {
                        "query": {
                          "field": {
                            "source_host": {
                              "query": "\"xxx.xxx.x.x\""
                            }
                          }
                        },
                        "_cache": true
                      }
                    },
                    {
                      "range": {
                        "@timestamp": {
                          "from": 1386542921805,
                          "to": "now"
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "size": 0
}'

Query result:

{
   "took": 25,
   "timed_out": false,
   "_shards": {
      "total": 5,
      "successful": 5,
      "failed": 0
   },
   "hits": {
      "total": 1508686,
      "max_score": 1,
      "hits": []
   },
   "facets": {
      "4": {
         "_type": "date_histogram",
         "entries": [
            {
               "time": 1378980000000,
               "count": 20
            },
            {
               "time": 1378983600000,
               "count": 53
            }
         ]
      }
   }
}

Histogram Settings:

image

Table Panel (EventTime date format - YYYY-DD-MM HH:MM:SS):

image

Table Settings:
image

Queries and Filters:

image

@galindro
Copy link
Author

Any return?

@blakeja
Copy link

blakeja commented Oct 6, 2014

I'm seeing this issue as well. Any further information on if this was confirmed and when we could possibly see a fix?

@rashidkpc rashidkpc added not reproducible and removed bug Fixes for quality problems that affect the customer experience labels Oct 7, 2014
@rashidkpc
Copy link
Contributor

I've been unable to replicate this issue in Kibana 3, however we have started work on Kibana 4 and don't expect this issue to reoccur. I'll leave this open for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants
@rashidkpc @blakeja @galindro and others