Change the default amount of search results - sipcapture/homer-app GitHub Wiki

In a default (Docker assumed) installation of Homer7, the amount of results returned for SIP Call type searches is 200.

To change this:

  1. Edit your SIP Call search form
  2. Add the Query Limit field to the Active column
  3. Save the form
  4. Enter e.g. 1000 in the Query limit field
  5. Search

Alternatively

1 - Settings 2 - User settings 3 - find your dashboard and edit the block

...
                    {
                        "field_name": "limit",
                        "hepid": 1,
                        "name": "1:call:limit",
                        "selection": "Query Limit",
                        "type": "string",
                        "value": ""
                    },
...

to e.g. for 1000 results

...
                    {
                        "field_name": "limit",
                        "hepid": 1,
                        "name": "1:call:limit",
                        "selection": "Query Limit",
                        "type": "string",
                        "value": "1000"
                    },
...