Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Commit

Permalink
Add indexing throtteling time to nodes and indices stats dashboards
Browse files Browse the repository at this point in the history
  • Loading branch information
bleskes committed Nov 12, 2014
1 parent 4fd864a commit a2fc6db
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 12 deletions.
27 changes: 15 additions & 12 deletions agent/src/main/resources/marvel_index_template.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
},
"mapper.dynamic": true,
"marvel.index_format": 5
"marvel.index_format": 6
},
"mappings": {
"_default_": {
Expand Down Expand Up @@ -78,17 +78,6 @@
}
}
},
"indices": {
"properties": {
"percolate": {
"properties": {
"size_in_bytes": {
"type": "long"
}
}
}
}
},
"jvm": {
"properties": {
"buffer_pools": {
Expand Down Expand Up @@ -141,6 +130,13 @@
},
"indices": {
"properties": {
"indexing": {
"properties": {
"throttle_time_in_millis": {
"type": "long"
}
}
},
"percolate": {
"properties": {
"total": {
Expand Down Expand Up @@ -210,6 +206,13 @@
}
}
},
"indexing": {
"properties": {
"throttle_time_in_millis": {
"type": "long"
}
}
},
"merges": {
"properties": {
"total_size_in_bytes": {
Expand Down
8 changes: 8 additions & 0 deletions kibana/dashboards/indices_stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,14 @@ var rows = [
"scale": 0.001,
"title": "Total Indexing Time"
},
{
"value_field": "total.indexing.throttle_time_in_millis",
"derivative": true,
"mode": "min",
"scaleSeconds": true,
"scale": 0.001,
"title": "Total Indexing Throttling Time"
},
{
"value_field": "total.indexing.delete_total",
"derivative": true,
Expand Down
8 changes: 8 additions & 0 deletions kibana/dashboards/nodes_stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,14 @@ var rows = [
"scale": 0.001,
"title": "Indices Total Indexing Time"
},
{
"value_field": "indices.indexing.throttle_time_in_millis",
"derivative": true,
"mode": "min",
"scaleSeconds": true,
"scale": 0.001,
"title": "Indices Indexing Throttling Time"
},
{
"value_field": "indices.indexing.delete_total",
"derivative": true,
Expand Down

0 comments on commit a2fc6db

Please sign in to comment.