# Why Might a Data Table Visualization Limit Itself to Only Seven Rows?

**URL:** https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107
**Category:** Kibana
**Created:** [November 22, 2019, 6:17pm UTC](https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107 "2019-11-22T18:17:23Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![redapplesonly](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/redapplesonly/32/57700_2.png) [@redapplesonly](https://discuss.elastic.co/u/redapplesonly)
#### Post date: [November 22, 2019, 6:17pm UTC](https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107/1 "2019-11-22T18:17:23Z")

</div>

Hi Kibana Sages,

I have what is probably a difficult forum question… but I’ve gotta ask all the same. I have an ELK pipeline for monitoring network traffic. My Kibana (v 7.4.0) is used to display data from my Elasticsearch (also v 7.4.0). Specifically, I have a Kibana Data Table visualization, that is supposed to display four statistics:

- **Metrics:** Sum( AdjBytes )
- **Buckets:** HostA, HostB, App
- And in the Data Table Editing screen, I’ve set Options --\> Per Page = 10

Ex:

```
HostA HostB App AdjBytes
10.10.10.10 20.20.20.20 HTTP 1000
10.10.10.11 20.20.20.20 HTTP 2000
10.10.10.12 20.20.20.21 FTP 5000

```

Pretty simple. ES and Kibana are working just fine, the data table is displaying accurate information, and everything looks great…

…except I’ve noticed that the Kibana data table displays _ **at most seven rows** _ of data.

I’m in development, and I can send as much or as little custom traffic as I wish. I’ve noticed the following:

- If I send six or less kinds of traffic, I get that exact number of rows in my visualization
- If I send seven kinds of traffic, I get exactly seven rows in my visualization
- If I send eight or more kinds of traffic, I get _ **exactly** _ seven rows in my visualization (the lowest-numbered “AdjBytes” are dropped from the Visualization.)

I first thought this must be a Kibana problem. But when I did an Inspect on a Kibana request and an ES response, it looks like Kibana is saying, “_Hey Elasticsearch, send me every value of HostA/HostB/App/AdjBytes you have from Time X to Time Y._” And the ES response only has seven row’s worth of data.

The full Kibana request is below, FWIW. I don’t know how to read it, but I don’t see anything that suggests “limit to only 7 rows.” And, like I said, ES sends back data for only seven rows, every time. I’ve hand-verified this on four separate tests.

So I’ve got to ask… Is there something I’m missing? Does the Data Table throttle to seven rows as default? If so, how do I compensate?

FULL DISCLOSURE: I’ve also posted a version of this question in the Elasticsearch forum, [here](https://discuss.elastic.co/t/would-elasticsearch-throttle-a-kibana-request-to-seven-rows/209106).

```
{
  "aggs": {
    "2": {
      "terms": {
        "field": "HostA",
        "order": {
          "1": "desc"
        },
        "size": 5
      },
      "aggs": {
        "1": {
          "sum": {
            "field": "AdjBytes"
          }
        },
        "3": {
          "terms": {
            "field": "HostB",
            "order": {
              "1": "desc"
            },
            "size": 5
          },
          "aggs": {
            "1": {
              "sum": {
                "field": "AdjBytes"
              }
            },
            "4": {
              "terms": {
                "field": "Application.keyword",
                "order": {
                  "1": "desc"
                },
                "size": 5
              },
              "aggs": {
                "1": {
                  "sum": {
                    "field": "AdjBytes"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "size": 0,
  "_source": {
    "excludes": []
  },
  "stored_fields": [
    "*"
  ],
  "script_fields": {
    "PDH_Sum_Flow": {
      "script": {
        "source": "doc['Sample.SamplingRate'].value * doc['Packet.L3.TotalLen'].value",
        "lang": "painless"
      }
    }
  },
  "docvalue_fields": [
    {
      "field": "@timestamp",
      "format": "date_time"
    }
  ],
  "query": {
    "bool": {
      "must": [],
      "filter": [
        {
          "match_all": {}
        },
        {
          "match_all": {}
        },
        {
          "range": {
            "@timestamp": {
              "format": "strict_date_optional_time",
              "gte": "2019-11-21T19:41:30.773Z",
              "lte": "2019-11-21T19:44:30.773Z"
            }
          }
        }
      ],
      "should": [],
      "must_not": []
    }
  }
}
```

---

<div class="post-metadata">

### Author: ![Brandon\_Kobel](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/brandon_kobel/32/14829_2.png) [@Brandon\_Kobel](https://discuss.elastic.co/u/Brandon_Kobel)
#### Post date: [November 22, 2019, 10:09pm UTC](https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107/2 "2019-11-22T22:09:32Z")

</div>

Hey @redapplesonly, when you specify a "split rows" bucket, each of them has a size parameter. Based on the ES query which is being executed, this is limited to 5:

![58%20PM](https://us1.discourse-cdn.com/elastic/original/3X/7/9/79ef3e600343776f54664301de2654b338696428.png)

---

<div class="post-metadata">

### Author: ![redapplesonly](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/redapplesonly/32/57700_2.png) [@redapplesonly](https://discuss.elastic.co/u/redapplesonly)
#### Post date: [November 25, 2019, 1:08pm UTC](https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107/3 "2019-11-25T13:08:00Z")

</div>

Hi Brandon,

Yes! You nailed it exactly! I'm not sure how you knew, but I don't care. Expanding the Size Parameter of the buckets fixed my problem exactly. Thank you!!!

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [December 23, 2019, 1:08pm UTC](https://discuss.elastic.co/t/why-might-a-data-table-visualization-limit-itself-to-only-seven-rows/209107/4 "2019-12-23T13:08:05Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
