proc ram cpu combined
This commit is contained in:
parent
63b68b8d3e
commit
6fef63655c
4 changed files with 51 additions and 54 deletions
|
@ -79,8 +79,7 @@ defaults = {
|
|||
'disk_io',
|
||||
'disk_usage',
|
||||
'net_io',
|
||||
'proc_cpu',
|
||||
'proc_ram',
|
||||
'proc_cpu_ram',
|
||||
'proc_io',
|
||||
},
|
||||
'sudoers': {
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
'process_cpu': {
|
||||
'stacked': True,
|
||||
'queries': {
|
||||
'cpu': {
|
||||
'filters': {
|
||||
'_measurement': 'procstat',
|
||||
'_field': [
|
||||
'cpu_usage',
|
||||
],
|
||||
},
|
||||
'minimum': 0.2,
|
||||
},
|
||||
},
|
||||
'unit': 'percent',
|
||||
'display_name': '__field.labels.process_name',
|
||||
'legend': {
|
||||
'displayMode': 'table',
|
||||
'placement': 'right',
|
||||
'calcs': [
|
||||
'mean',
|
||||
'max',
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
50
data/grafana/rows/proc_cpu_ram.py
Normal file
50
data/grafana/rows/proc_cpu_ram.py
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
'cpu': {
|
||||
'stacked': True,
|
||||
'queries': {
|
||||
'cpu': {
|
||||
'filters': {
|
||||
'_measurement': 'procstat',
|
||||
'_field': [
|
||||
'cpu_usage',
|
||||
],
|
||||
},
|
||||
'minimum': 0.2,
|
||||
},
|
||||
},
|
||||
'unit': 'percent',
|
||||
'display_name': '__field.labels.process_name',
|
||||
'legend': {
|
||||
'displayMode': 'table',
|
||||
'placement': 'right',
|
||||
'calcs': [
|
||||
'mean',
|
||||
'max',
|
||||
],
|
||||
},
|
||||
},
|
||||
'ram': {
|
||||
'stacked': True,
|
||||
'queries': {
|
||||
'ram': {
|
||||
'filters': {
|
||||
'_measurement': 'procstat',
|
||||
'_field': [
|
||||
'memory_rss',
|
||||
],
|
||||
},
|
||||
'minimum': 10*(10**6),
|
||||
},
|
||||
},
|
||||
'unit': 'bytes',
|
||||
'display_name': '__field.labels.process_name',
|
||||
'legend': {
|
||||
'displayMode': 'table',
|
||||
'placement': 'right',
|
||||
'calcs': [
|
||||
'mean',
|
||||
'max',
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
'process_ram': {
|
||||
'stacked': True,
|
||||
'queries': {
|
||||
'ram': {
|
||||
'filters': {
|
||||
'_measurement': 'procstat',
|
||||
'_field': [
|
||||
'memory_rss',
|
||||
],
|
||||
},
|
||||
'minimum': 10*(10**6),
|
||||
},
|
||||
},
|
||||
'unit': 'bytes',
|
||||
'display_name': '__field.labels.process_name',
|
||||
'legend': {
|
||||
'displayMode': 'table',
|
||||
'placement': 'right',
|
||||
'calcs': [
|
||||
'mean',
|
||||
'max',
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue