Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ Examples of operation names: `create_index`, `index_metadata`, `delete_index`, `

| Namespace | Metric Name | Description | Type |
| --------- | ----------- | ----------- | ---- |
| `quickwit_search` | `leaf_searches_splits_total` | Number of leaf searches (count of splits) started | `counter` |
| `quickwit_search` | `split_search_outcome` | Count of split search outcomes by category | `counter` |
| `quickwit_search` | `leaf_search_split_duration_secs` | Number of seconds required to run a leaf search over a single split. The timer starts after the semaphore is obtained | `histogram` |
| `quickwit_search` | `active_search_threads_count` | Number of threads in use in the CPU thread pool | `gauge` |
| `quickwit_search` | `leaf_list_terms_splits_total` | Number of list terms splits total | `counter` |

## Storage Metrics

Expand Down
10 changes: 5 additions & 5 deletions monitoring/grafana/dashboards/searchers.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,17 @@
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "quickwit_search_leaf_searches_splits_total{instance=~\"$instance\"}",
"expr": "quickwit_search_split_search_outcome{instance=~\"$instance\"}",
"fullMetaSearch": false,
"includeNullMetadata": true,
"instant": false,
"legendFormat": "{{instance}}",
"legendFormat": "{{instance}} {{category}}",
"range": true,
"refId": "A",
"useBackend": false
}
],
"title": "Leaf search splits",
"title": "Split search outcome",
"type": "timeseries"
},
{
Expand Down Expand Up @@ -857,15 +857,15 @@
"type": "prometheus",
"uid": "${datasource}"
},
"definition": "label_values(quickwit_search_leaf_searches_splits_total,instance)",
"definition": "label_values(quickwit_search_split_search_outcome,instance)",
"hide": 0,
"includeAll": true,
"label": "Instance",
"multi": false,
"name": "instance",
"options": [],
"query": {
"query": "label_values(quickwit_search_leaf_searches_splits_total,instance)",
"query": "label_values(quickwit_search_split_search_outcome,instance)",
"refId": "StandardVariableQuery"
},
"refresh": 1,
Expand Down