mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Finished revamping nodes/ndices dashboards. Also linking to a field will only open one chart if the field appears in two.
This commit is contained in:
parent
9f88b4db97
commit
c0f1e9f715
3 changed files with 414 additions and 168 deletions
|
@ -126,92 +126,244 @@ panel_defaults_by_type["histogram"] = {
|
|||
|
||||
var rows = [
|
||||
{
|
||||
"title": "Data",
|
||||
"title": "Essentials",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "primaries.docs.count",
|
||||
"title": "Documents",
|
||||
"title": "Documents"
|
||||
},
|
||||
{
|
||||
"value_field": "total.indexing.index_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Indexing Rate Primaries"
|
||||
},
|
||||
{
|
||||
"value_field": "total.search.query_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Search Shard Query Rate"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Search Requests Query",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.search.query_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Search Shard Query Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "total.search.query_time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Total Shard Search Query Time"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Search Requests Fetch",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.search.fetch_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Search Shard Fetch Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "total.search.fetch_time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Total Search Shard Fetch Time"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indexing Requests",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.indexing.index_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Indexing Rate Total"
|
||||
},
|
||||
{
|
||||
"value_field": "total.indexing.index_time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Total Indexing Time"
|
||||
},
|
||||
{
|
||||
"value_field": "total.indexing.delete_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Delete Rate"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Get Requests",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.get.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Get Requests Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "total.get.time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Total Get Time"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Percolate Requests",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.percolate.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Percolate Requests Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "total.percolate.time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Total Percolate Time"
|
||||
},
|
||||
{
|
||||
"value_field": "total.percolate.queries",
|
||||
"title": "Percolate Queries"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Store",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "primaries.docs.count",
|
||||
"title": "Documents"
|
||||
},
|
||||
{
|
||||
"value_field": "total.store.size_in_bytes",
|
||||
"title": "Index size",
|
||||
"title": "Size",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "primaries.docs.deleted",
|
||||
"title": "Deleted docs",
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
},
|
||||
{
|
||||
"title": "Segments",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.segments.count",
|
||||
"title": "Avg Shard Segment Count*",
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
},
|
||||
{
|
||||
"title": "Indexing",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "primaries.indexing.index_total",
|
||||
"title": "Indexing request rate",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "total.indexing.index_time_in_millis",
|
||||
"title": "Indexing time",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
"title": "Deleted Documents"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indexing 2",
|
||||
"title": "Memory",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.fielddata.memory_size_in_bytes",
|
||||
"title": "Field Data",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "total.filter_cache.memory_size_in_bytes",
|
||||
"title": "Filter cache",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "total.segments.memory_in_bytes",
|
||||
"title": "Lucene Memory",
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Memory Extended",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.id_cache.memory_size_in_bytes",
|
||||
"title": "Id Cache",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "total.percolate.memory_size_in_bytes",
|
||||
"title": "Percolation size",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "total.completion.size_in_bytes",
|
||||
"title": "Completion size",
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Management",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.merges.current_size_in_bytes",
|
||||
"mode": "max",
|
||||
"y_format": "bytes",
|
||||
"title": "Current Merges"
|
||||
},
|
||||
{
|
||||
"value_field": "total.refresh.total_time_in_millis",
|
||||
"title": "Avg Refresh time",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Search requests",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.search.query_total",
|
||||
"title": "Search requests",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
"scale": 0.001,
|
||||
"scaleSeconds": true,
|
||||
"title": "Total Refresh Time"
|
||||
},
|
||||
{
|
||||
"value_field": "total.search.open_contexts",
|
||||
"title": "Open search contexts",
|
||||
"value_field": "total.flush.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Flush count"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Get requests",
|
||||
"title": "Management Extended",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "total.get.total",
|
||||
"title": "Get requests",
|
||||
"value_field": "total.search.open_contexts",
|
||||
"mode": "max",
|
||||
"title": "Open Search Contexts"
|
||||
},
|
||||
{
|
||||
"value_field": "total.warmer.total_time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
"scale": 0.001,
|
||||
"scaleSeconds": true,
|
||||
"title": "Total Warmer Time"
|
||||
},
|
||||
{
|
||||
"value_field": "total.segments.count",
|
||||
"title": "Segment Count"
|
||||
}
|
||||
],
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -227,6 +379,7 @@ dashboard.rows = _.map(rows, function (r) {
|
|||
if (_.contains(show, panel.value_field)) {
|
||||
showedSomething = true;
|
||||
r.collapse = false;
|
||||
show = _.without(show, panel.value_field);
|
||||
}
|
||||
});
|
||||
return r;
|
||||
|
|
|
@ -40,7 +40,7 @@ dashboard.index = {
|
|||
'warm_fields': false
|
||||
};
|
||||
|
||||
dashboard.refresh="1m";
|
||||
dashboard.refresh = "1m";
|
||||
|
||||
// In this dashboard we let users pass nodes as comma seperated list to the query parameter.
|
||||
// If nodes are defined, split into a list of query objects, otherwise, show all
|
||||
|
@ -54,7 +54,7 @@ if (!_.isUndefined(ARGS.queries)) {
|
|||
id: parseInt(k, 10)
|
||||
}];
|
||||
}));
|
||||
marker_query = "(" + _.pluck(queries,"query").join(") OR (") + ")";
|
||||
marker_query = "(" + _.pluck(queries, "query").join(") OR (") + ")";
|
||||
} else {
|
||||
// No queries passed? Initialize a single query to match everything
|
||||
queries = {
|
||||
|
@ -142,6 +142,32 @@ panel_defaults_by_type["histogram"] = {
|
|||
};
|
||||
|
||||
|
||||
function threadPoolRow(name) {
|
||||
var field_prefix = "thread_pool." + name.toLowerCase() + ".",
|
||||
name_prefix = name + " Thread Pool ";
|
||||
return {
|
||||
"title": "Thread Pools - " + name,
|
||||
"panels": [
|
||||
{
|
||||
"value_field": field_prefix + "threads",
|
||||
"title": name_prefix + "Thread Count"
|
||||
},
|
||||
{
|
||||
"value_field": field_prefix + "rejected",
|
||||
"title": name_prefix + "Rejected"
|
||||
},
|
||||
{
|
||||
"value_field": field_prefix + "completed",
|
||||
"title": name_prefix + "Ops Per Sec",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"y_format": "short"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
var rows = [
|
||||
{
|
||||
"title": "Essentials",
|
||||
|
@ -219,7 +245,8 @@ var rows = [
|
|||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},{
|
||||
},
|
||||
{
|
||||
"title": "JVM Memory",
|
||||
"panels": [
|
||||
{
|
||||
|
@ -229,16 +256,28 @@ var rows = [
|
|||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"time_field": "@timestamp",
|
||||
"value_field": "jvm.mem.pools.Par Eden Space.used_in_bytes",
|
||||
"title": "JVM Young Gen usage",
|
||||
"y_format": "bytes"
|
||||
"value_field": "jvm.gc.collectors.young.collection_time_in_millis",
|
||||
"title": "JVM GC Young Duration (time %)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001 * 100,
|
||||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"time_field": "@timestamp",
|
||||
"value_field": "jvm.mem.pools.CMS Old Gen.used_in_bytes",
|
||||
"title": "JVM Old Gen usage",
|
||||
"y_format": "bytes"
|
||||
"value_field": "jvm.gc.collectors.old.collection_time_in_millis",
|
||||
"title": "JVM GC Old Duration (time %)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001 * 100,
|
||||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -246,7 +285,7 @@ var rows = [
|
|||
"title": "JVM GC Young",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_time_in_millis",
|
||||
"value_field": "jvm.gc.collectors.young.collection_time_in_millis",
|
||||
"title": "GC Young Duration (time %)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
|
@ -255,18 +294,14 @@ var rows = [
|
|||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
},
|
||||
"span": 6,
|
||||
"resolution": 20
|
||||
}
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_count",
|
||||
"title": "GC Young Counts",
|
||||
"value_field": "jvm.gc.collectors.young.collection_count",
|
||||
"title": "JVM GC Young Counts",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": false,
|
||||
"span": 6,
|
||||
"resolution": 20
|
||||
"scaleSeconds": false
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -274,8 +309,8 @@ var rows = [
|
|||
"title": "JVM GC Old",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_time_in_millis",
|
||||
"title": "GC Old Duration (time %)",
|
||||
"value_field": "jvm.gc.collectors.old.collection_time_in_millis",
|
||||
"title": "JVM GC Old Duration (time %)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
|
@ -283,53 +318,14 @@ var rows = [
|
|||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
},
|
||||
"span": 6,
|
||||
"resolution": 20
|
||||
}
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_count",
|
||||
"title": "GC Old Counts",
|
||||
"value_field": "jvm.gc.collectors.old.collection_count",
|
||||
"title": "JVM GC Old Counts",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": false,
|
||||
"span": 6,
|
||||
"resolution": 20
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Memory",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.fielddata.memory_size_in_bytes",
|
||||
"title": "Indices Field Data",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.filter_cache.memory_size_in_bytes",
|
||||
"title": "Indices Filter cache",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.id_cache.memory_size_in_bytes",
|
||||
"title": "Indices Id Cache",
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Memory Extended",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.percolate.size_in_bytes",
|
||||
"title": "Indices Percolation size",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.completion.size_in_bytes",
|
||||
"title": "Indices Completion size",
|
||||
"y_format": "bytes"
|
||||
"scaleSeconds": false
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -341,7 +337,7 @@ var rows = [
|
|||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Indices Search Query Rate"
|
||||
"title": "Indices Search Shard Query Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.search.query_time_in_millis",
|
||||
|
@ -349,7 +345,7 @@ var rows = [
|
|||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Indices Total Search Query Time"
|
||||
"title": "Indices Total Shard Search Query Time"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -361,7 +357,7 @@ var rows = [
|
|||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Indices Search Fetch Rate"
|
||||
"title": "Indices Search Shard Fetch Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.search.fetch_time_in_millis",
|
||||
|
@ -369,7 +365,7 @@ var rows = [
|
|||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Indices Total Search Fetch Time"
|
||||
"title": "Indices Total Search Shard Fetch Time"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -420,6 +416,88 @@ var rows = [
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Percolate Requests",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.percolate.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Indices Percolate Requests Rate"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.percolate.time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001,
|
||||
"title": "Indices Total Percolate Time"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.percolate.queries",
|
||||
"title": "Indices Percolate Queries"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Store",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.docs.count",
|
||||
"title": "Documents"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.store.size_in_bytes",
|
||||
"title": "Size",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.docs.deleted",
|
||||
"title": "Deleted Documents"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Memory",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.fielddata.memory_size_in_bytes",
|
||||
"title": "Indices Field Data",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.filter_cache.memory_size_in_bytes",
|
||||
"title": "Indices Filter cache",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.segments.memory_in_bytes",
|
||||
"title": "Indices Lucene Memory",
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Memory Extended",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.id_cache.memory_size_in_bytes",
|
||||
"title": "Indices Id Cache",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.percolate.memory_size_in_bytes",
|
||||
"title": "Indices Percolation size",
|
||||
"y_format": "bytes"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.completion.size_in_bytes",
|
||||
"title": "Indices Completion size",
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Indices Management",
|
||||
"panels": [
|
||||
|
@ -468,6 +546,31 @@ var rows = [
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Process",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "process.cpu.percent",
|
||||
"title": "Process CPU"
|
||||
},
|
||||
{
|
||||
"value_field": "process.open_file_descriptors",
|
||||
"title": "Process Open File descriptors"
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.threads.count",
|
||||
"title": "Process Thread Count"
|
||||
}
|
||||
]
|
||||
},
|
||||
threadPoolRow("Search"),
|
||||
threadPoolRow("Index"),
|
||||
threadPoolRow("Bulk"),
|
||||
threadPoolRow("Get"),
|
||||
threadPoolRow("Suggest"),
|
||||
threadPoolRow("Percolate"),
|
||||
threadPoolRow("Refresh"),
|
||||
threadPoolRow("Optimize"),
|
||||
{
|
||||
"title": "Disk",
|
||||
"panels": [
|
||||
|
@ -498,7 +601,7 @@ var rows = [
|
|||
"notice": false
|
||||
},
|
||||
{
|
||||
"title": "Disk 2",
|
||||
"title": "Disk IOPS",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "fs.total.disk_io_op",
|
||||
|
@ -523,63 +626,35 @@ var rows = [
|
|||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"y_format": "short"
|
||||
},
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
},
|
||||
{
|
||||
"title": "Network",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "http.current_open",
|
||||
"title": "HTTP currently open"
|
||||
},
|
||||
{
|
||||
"value_field": "http.total_opened",
|
||||
"title": "HTTP opened",
|
||||
"title": "Network HTTP Connection Opened (per sec)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Data",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.docs.count",
|
||||
"title": "Documents"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.store.size_in_bytes",
|
||||
"title": "Size",
|
||||
"value_field": "transport.tx_size_in_bytes",
|
||||
"title": "Network Transport Bytes Sent (per sec)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Segments",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "indices.segments.count",
|
||||
"title": "Segment no."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Process",
|
||||
"panels": [
|
||||
{
|
||||
"value_field": "process.cpu.percent",
|
||||
"title": "Process CPU"
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.threads.count",
|
||||
"title": "Threads"
|
||||
},
|
||||
{
|
||||
"value_field": "process.open_file_descriptors",
|
||||
"title": "File descriptors"
|
||||
"value_field": "transport.tx_size_in_bytes",
|
||||
"title": "Network Transport Bytes Received (per sec)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"y_format": "bytes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -597,6 +672,7 @@ dashboard.rows = _.map(rows, function (r) {
|
|||
if (_.contains(show, panel.value_field)) {
|
||||
showedSomething = true;
|
||||
r.collapse = false;
|
||||
show = _.without(show, panel.value_field);
|
||||
}
|
||||
});
|
||||
return r;
|
||||
|
|
|
@ -32,8 +32,25 @@
|
|||
"properties": {
|
||||
"indices.percolate.size_in_bytes": { "type": "long"},
|
||||
"jvm.buffer_pools.direct.used_in_bytes": { "type": "long" },
|
||||
"jvm.buffer_pools.mapped.used_in_bytes": { "type": "long" }
|
||||
"jvm.buffer_pools.mapped.used_in_bytes": { "type": "long" },
|
||||
"jvm.gc.collectors.young.collection_count": { "type": "long" },
|
||||
"jvm.gc.collectors.young.collection_time_in_millis": { "type": "long" },
|
||||
"jvm.gc.collectors.old.collection_count": { "type": "long" },
|
||||
"jvm.gc.collectors.old.collection_time_in_millis": { "type": "long" },
|
||||
"indices.percolate.total": { "type": "long" },
|
||||
"indices.percolate.time_in_millis": { "type": "long" },
|
||||
"indices.percolate.queries": { "type": "long" },
|
||||
"indices.percolate.memory_size_in_bytes": { "type": "long"}
|
||||
}
|
||||
},
|
||||
"index_stats": {
|
||||
"properties": {
|
||||
"total.percolate.memory_size_in_bytes": { "type": "long" },
|
||||
"total.percolate.time_in_millis": { "type": "long" },
|
||||
"total.percolate.queries": { "type": "long" },
|
||||
"total.percolate.total": { "type": "long" }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue