├── .gitignore ├── README.md ├── Vagrantfile ├── images └── infra-hands-on.png ├── provision ├── centos8.sh └── debian10.sh ├── scripts ├── install_node_exporter.sh └── install_prometheus.sh └── templates ├── dashboard_zabbix_server1.sjon └── dashboard_zabbix_server2.sjon /.gitignore: -------------------------------------------------------------------------------- 1 | *.vdi 2 | *.log 3 | *.vagrant 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hands-On 4linux 2 | 3 | Este repositório é o ambiente referente a semana Hands-On 4linux. 4 | 5 | ![Infraestrutura Hands-On](images/infra-hands-on.png) 6 | 7 | Ao executar os passos de configuração, sua máquina, através do **Vagrant**, criará as máquinas virtuais no **VirtualBox** de forma automática. O **Vagrant** nos auxiliará a criar e gerenciar as máquinas de uma maneira muito mais simples e rápida do que se precisássemos instalá-las manualmente. 8 | 9 | ## Pré-requisitos 10 | 11 | Para utilizar este repositório você deverá instalar o [Vagrant](https://www.vagrantup.com/) e o [VirtualBox](https://www.virtualbox.org/). 12 | 13 | Para clonar o repositório você precisará do [git](https://git-scm.com/), para os usuários do Windows recomendamos [https://gitforwindows.org/](https://gitforwindows.org/). 14 | 15 | ## Configuração 16 | 17 | Clone o repositório em algum diretório da sua máquina e inicie as vms: 18 | 19 | ```bash 20 | git clone https://github.com/4linux/hands-on.git 21 | cd hands-on 22 | vagrant up --provider virtualbox 23 | ``` 24 | 25 | As máquinas serão provisionadas, este processo leva alguns minutos e depende da sua velocidade de conexão com a internet. 26 | 27 | ## Utilização 28 | 29 | Todos os comandos devem ser utilizados dentro do diretório clonado. 30 | 31 | Para listar as máquinas: 32 | 33 | ```bash 34 | vagrant status 35 | ``` 36 | 37 | Para entrar em uma máquina: 38 | 39 | ```bash 40 | vagrant ssh debian10 41 | ``` 42 | 43 | Para iniciar as máquinas: 44 | 45 | ```bash 46 | vagrant up 47 | ``` 48 | 49 | Para desligar as máquinas: 50 | 51 | ```bash 52 | vagrant halt 53 | ``` 54 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- 1 | # -*- mode: ruby -*- 2 | # vi: set ft=ruby : 3 | vms = { 4 | 5 | 'centos8' => {'memory' => '1024', 'cpus' => 1, 'ip' => '10', 'box' => 'centos/8', 'provision' => 'centos8.sh'}, 6 | 'debian10' => {'memory' => '1024', 'cpus' => 1, 'ip' => '11' , 'box' => 'debian/buster64', 'provision' => 'debian10.sh'} 7 | } 8 | 9 | Vagrant.configure('2') do |config| 10 | 11 | config.vm.box_check_update = false 12 | 13 | vms.each do |name, conf| 14 | config.vm.define "#{name}" do |my| 15 | my.vm.box = conf['box'] 16 | my.vm.hostname = "#{name}.dexter.com.br" 17 | my.vm.network 'private_network', ip: "10.23.4.#{conf['ip']}" 18 | my.vm.provision 'shell', path: "provision/#{conf['provision']}" 19 | my.vm.provider 'virtualbox' do |vb| 20 | vb.name = "#{name}" 21 | vb.memory = conf['memory'] 22 | vb.cpus = conf['cpus'] 23 | end 24 | my.vm.provider 'libvirt' do |lv| 25 | lv.memory = conf['memory'] 26 | lv.cpus = conf['cpus'] 27 | lv.cputopology :sockets => 1, :cores => conf['cpus'], :threads => '1' 28 | end 29 | end 30 | end 31 | end 32 | -------------------------------------------------------------------------------- /images/infra-hands-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4linux/hands-on/cc55d6a2e5fe0580ed9b4e919759b1ea2ca3f6cf/images/infra-hands-on.png -------------------------------------------------------------------------------- /provision/centos8.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config 4 | 5 | setenforce 0 6 | 7 | dnf install -y chrony bind-utils net-tools tcpdump telnet vim epel-release wget mailx tzdata tzdata-java sysstat traceroute iotop langpacks-en glibc-all-langpacks bc openldap-clients lvm2 network-scripts python3 8 | 9 | systemctl disable firewalld NetworkManager 10 | 11 | systemctl enable network && > /etc/sysconfig/disable-deprecation-warnings 12 | 13 | systemctl stop firewalld NetworkManager 14 | 15 | timedatectl set-timezone America/Sao_Paulo 16 | -------------------------------------------------------------------------------- /provision/debian10.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | apt-get update 4 | 5 | apt-get install -y vim net-tools mailutils tzdata sysstat traceroute iotop locales-all parted lvm2 curl dialog gnupg 6 | 7 | timedatectl set-timezone America/Sao_Paulo 8 | -------------------------------------------------------------------------------- /scripts/install_node_exporter.sh: -------------------------------------------------------------------------------- 1 | cd /etc/ansible/ 2 | 3 | 4 | sudo git clone https://github.com/4linux/ansible-node-exporter.git roles/ansible-node-exporter 5 | 6 | 7 | vim node-playbook.yml 8 | 9 | --- 10 | - name: "Instalação do Node Exporter" 11 | hosts: local 12 | roles: 13 | - ansible-node-exporter 14 | 15 | sudo ansible-playbook node-playbook.yml 16 | 17 | systemctl restart prometheus 18 | -------------------------------------------------------------------------------- /scripts/install_prometheus.sh: -------------------------------------------------------------------------------- 1 | # Installation of prometheus server 2 | 3 | prometheus --version 4 | 5 | if [ "$?" -ne 0 ]; then 6 | echo "Prometheus Server not found" 7 | else 8 | echo "Prometheus Server already installed" 9 | exit 2 10 | fi 11 | 12 | dnf install git ansible -y 13 | 14 | cd /etc/ansible 15 | 16 | sed -ri 's/^#(host_key_checking = False)/\1/' /etc/ansible/ansible.cfg 17 | sed -ri 's/^#(remote_user = root)/\1/' /etc/ansible/ansible.cfg 18 | 19 | tee -a hosts >> /dev/null < /dev/null < /root/.ssh/authorized_keys 39 | 40 | ansible-playbook prometheus-playbook.yml 41 | 42 | tee -a /etc/environment >> /dev/null <> /dev/null <\n

\"\"

\n", 45 | "mode": "html" 46 | }, 47 | "pluginVersion": "7.5.10", 48 | "targets": [ 49 | { 50 | "queryType": "randomWalk", 51 | "refId": "A" 52 | } 53 | ], 54 | "timeFrom": null, 55 | "timeShift": null, 56 | "type": "text" 57 | }, 58 | { 59 | "datasource": "Zabbix", 60 | "gridPos": { 61 | "h": 1, 62 | "w": 24, 63 | "x": 0, 64 | "y": 3 65 | }, 66 | "id": 38, 67 | "title": "Info", 68 | "type": "row" 69 | }, 70 | { 71 | "cacheTimeout": null, 72 | "datasource": "Zabbix", 73 | "fieldConfig": { 74 | "defaults": { 75 | "color": { 76 | "mode": "thresholds" 77 | }, 78 | "decimals": 0, 79 | "mappings": [ 80 | { 81 | "id": 0, 82 | "op": "=", 83 | "text": "N/A", 84 | "type": 1, 85 | "value": "null" 86 | } 87 | ], 88 | "thresholds": { 89 | "mode": "absolute", 90 | "steps": [ 91 | { 92 | "color": "green", 93 | "value": null 94 | } 95 | ] 96 | }, 97 | "unit": "bytes" 98 | }, 99 | "overrides": [] 100 | }, 101 | "gridPos": { 102 | "h": 3, 103 | "w": 4, 104 | "x": 0, 105 | "y": 4 106 | }, 107 | "hideTimeOverride": true, 108 | "id": 27, 109 | "interval": null, 110 | "links": [], 111 | "maxDataPoints": 100, 112 | "options": { 113 | "colorMode": "value", 114 | "graphMode": "none", 115 | "justifyMode": "auto", 116 | "orientation": "horizontal", 117 | "reduceOptions": { 118 | "calcs": [ 119 | "lastNotNull" 120 | ], 121 | "fields": "/^Total memory$/", 122 | "values": false 123 | }, 124 | "text": {}, 125 | "textMode": "value" 126 | }, 127 | "pluginVersion": "7.5.10", 128 | "targets": [ 129 | { 130 | "application": { 131 | "filter": "Memory" 132 | }, 133 | "functions": [], 134 | "group": { 135 | "filter": "$Group" 136 | }, 137 | "host": { 138 | "filter": "$Host" 139 | }, 140 | "item": { 141 | "filter": "Total memory" 142 | }, 143 | "options": { 144 | "showDisabledItems": false, 145 | "skipEmptyValues": false 146 | }, 147 | "proxy": { 148 | "filter": "" 149 | }, 150 | "queryType": 0, 151 | "refId": "A", 152 | "resultFormat": "time_series", 153 | "table": { 154 | "skipEmptyValues": false 155 | }, 156 | "tags": { 157 | "filter": "" 158 | }, 159 | "trigger": { 160 | "filter": "" 161 | }, 162 | "triggers": { 163 | "acknowledged": 2, 164 | "count": true, 165 | "minSeverity": 3 166 | } 167 | } 168 | ], 169 | "timeFrom": null, 170 | "timeShift": null, 171 | "title": "Total memory", 172 | "type": "stat" 173 | }, 174 | { 175 | "cacheTimeout": null, 176 | "datasource": "Zabbix", 177 | "description": "System uptime", 178 | "fieldConfig": { 179 | "defaults": { 180 | "color": { 181 | "mode": "thresholds" 182 | }, 183 | "decimals": 2, 184 | "mappings": [ 185 | { 186 | "id": 0, 187 | "op": "=", 188 | "text": "OFFLINE", 189 | "type": 1, 190 | "value": "null" 191 | } 192 | ], 193 | "thresholds": { 194 | "mode": "absolute", 195 | "steps": [ 196 | { 197 | "color": "green", 198 | "value": null 199 | } 200 | ] 201 | }, 202 | "unit": "dtdurations" 203 | }, 204 | "overrides": [] 205 | }, 206 | "gridPos": { 207 | "h": 3, 208 | "w": 16, 209 | "x": 4, 210 | "y": 4 211 | }, 212 | "hideTimeOverride": true, 213 | "id": 2, 214 | "interval": null, 215 | "links": [], 216 | "maxDataPoints": 100, 217 | "options": { 218 | "colorMode": "background", 219 | "graphMode": "none", 220 | "justifyMode": "auto", 221 | "orientation": "horizontal", 222 | "reduceOptions": { 223 | "calcs": [ 224 | "last" 225 | ], 226 | "fields": "", 227 | "values": false 228 | }, 229 | "text": {}, 230 | "textMode": "value" 231 | }, 232 | "pluginVersion": "7.5.10", 233 | "targets": [ 234 | { 235 | "application": { 236 | "filter": "Status" 237 | }, 238 | "functions": [], 239 | "group": { 240 | "filter": "$Group" 241 | }, 242 | "host": { 243 | "filter": "$Host" 244 | }, 245 | "item": { 246 | "filter": "/[U-u]ptime/" 247 | }, 248 | "options": { 249 | "showDisabledItems": false, 250 | "skipEmptyValues": false 251 | }, 252 | "proxy": { 253 | "filter": "" 254 | }, 255 | "queryType": 0, 256 | "refId": "A", 257 | "resultFormat": "time_series", 258 | "table": { 259 | "skipEmptyValues": false 260 | }, 261 | "tags": { 262 | "filter": "" 263 | }, 264 | "trigger": { 265 | "filter": "" 266 | }, 267 | "triggers": { 268 | "acknowledged": 2, 269 | "count": true, 270 | "minSeverity": 3 271 | } 272 | } 273 | ], 274 | "timeFrom": null, 275 | "timeShift": null, 276 | "title": "Uptime", 277 | "type": "stat" 278 | }, 279 | { 280 | "datasource": "Zabbix", 281 | "fieldConfig": { 282 | "defaults": { 283 | "color": { 284 | "mode": "thresholds" 285 | }, 286 | "decimals": 0, 287 | "mappings": [], 288 | "thresholds": { 289 | "mode": "absolute", 290 | "steps": [ 291 | { 292 | "color": "green", 293 | "value": null 294 | } 295 | ] 296 | } 297 | }, 298 | "overrides": [] 299 | }, 300 | "gridPos": { 301 | "h": 3, 302 | "w": 4, 303 | "x": 20, 304 | "y": 4 305 | }, 306 | "id": 84, 307 | "options": { 308 | "colorMode": "value", 309 | "graphMode": "none", 310 | "justifyMode": "auto", 311 | "orientation": "auto", 312 | "reduceOptions": { 313 | "calcs": [ 314 | "lastNotNull" 315 | ], 316 | "fields": "", 317 | "values": false 318 | }, 319 | "text": {}, 320 | "textMode": "value" 321 | }, 322 | "pluginVersion": "7.5.10", 323 | "targets": [ 324 | { 325 | "application": { 326 | "filter": "CPU" 327 | }, 328 | "functions": [], 329 | "group": { 330 | "filter": "$Group" 331 | }, 332 | "host": { 333 | "filter": "$Host" 334 | }, 335 | "item": { 336 | "filter": "/Number of (CPUs|cores)/" 337 | }, 338 | "options": { 339 | "showDisabledItems": false, 340 | "skipEmptyValues": false 341 | }, 342 | "proxy": { 343 | "filter": "" 344 | }, 345 | "queryType": 0, 346 | "refId": "A", 347 | "resultFormat": "time_series", 348 | "table": { 349 | "skipEmptyValues": false 350 | }, 351 | "tags": { 352 | "filter": "" 353 | }, 354 | "trigger": { 355 | "filter": "" 356 | }, 357 | "triggers": { 358 | "acknowledged": 2, 359 | "count": true, 360 | "minSeverity": 3 361 | } 362 | } 363 | ], 364 | "timeFrom": null, 365 | "timeShift": null, 366 | "title": "Total CPUs", 367 | "type": "stat" 368 | }, 369 | { 370 | "cacheTimeout": null, 371 | "datasource": "Zabbix", 372 | "fieldConfig": { 373 | "defaults": { 374 | "color": { 375 | "mode": "thresholds" 376 | }, 377 | "mappings": [ 378 | { 379 | "from": "1", 380 | "id": 0, 381 | "op": "=", 382 | "text": "ONLINE", 383 | "to": "100", 384 | "type": 1, 385 | "value": "1" 386 | }, 387 | { 388 | "id": 1, 389 | "op": "=", 390 | "text": "OFFLINE", 391 | "type": 1, 392 | "value": "null" 393 | } 394 | ], 395 | "noValue": "OFFLINE", 396 | "thresholds": { 397 | "mode": "absolute", 398 | "steps": [ 399 | { 400 | "color": "red", 401 | "value": null 402 | }, 403 | { 404 | "color": "green", 405 | "value": 1 406 | } 407 | ] 408 | }, 409 | "unit": "none" 410 | }, 411 | "overrides": [] 412 | }, 413 | "gridPos": { 414 | "h": 3, 415 | "w": 4, 416 | "x": 0, 417 | "y": 7 418 | }, 419 | "hideTimeOverride": true, 420 | "id": 3, 421 | "interval": null, 422 | "links": [], 423 | "maxDataPoints": 100, 424 | "options": { 425 | "colorMode": "background", 426 | "graphMode": "none", 427 | "justifyMode": "auto", 428 | "orientation": "horizontal", 429 | "reduceOptions": { 430 | "calcs": [ 431 | "lastNotNull" 432 | ], 433 | "fields": "", 434 | "values": false 435 | }, 436 | "text": {}, 437 | "textMode": "value" 438 | }, 439 | "pluginVersion": "7.5.10", 440 | "targets": [ 441 | { 442 | "application": { 443 | "filter": "Monitoring agent" 444 | }, 445 | "functions": [], 446 | "group": { 447 | "filter": "$Group" 448 | }, 449 | "host": { 450 | "filter": "$Host" 451 | }, 452 | "item": { 453 | "filter": "Zabbix agent ping" 454 | }, 455 | "options": { 456 | "showDisabledItems": false, 457 | "skipEmptyValues": false 458 | }, 459 | "proxy": { 460 | "filter": "" 461 | }, 462 | "queryType": 0, 463 | "refId": "A", 464 | "resultFormat": "time_series", 465 | "table": { 466 | "skipEmptyValues": false 467 | }, 468 | "tags": { 469 | "filter": "" 470 | }, 471 | "trigger": { 472 | "filter": "" 473 | }, 474 | "triggers": { 475 | "acknowledged": 2, 476 | "count": true, 477 | "minSeverity": 3 478 | } 479 | } 480 | ], 481 | "timeFrom": "5m", 482 | "timeShift": null, 483 | "type": "stat" 484 | }, 485 | { 486 | "datasource": "Zabbix", 487 | "description": "", 488 | "fieldConfig": { 489 | "defaults": { 490 | "color": { 491 | "mode": "thresholds" 492 | }, 493 | "mappings": [], 494 | "thresholds": { 495 | "mode": "absolute", 496 | "steps": [] 497 | } 498 | }, 499 | "overrides": [] 500 | }, 501 | "gridPos": { 502 | "h": 3, 503 | "w": 16, 504 | "x": 4, 505 | "y": 7 506 | }, 507 | "hideTimeOverride": true, 508 | "id": 70, 509 | "options": { 510 | "colorMode": "value", 511 | "graphMode": "none", 512 | "justifyMode": "auto", 513 | "orientation": "auto", 514 | "reduceOptions": { 515 | "calcs": [ 516 | "last" 517 | ], 518 | "fields": "/^Host name of Zabbix agent running$/", 519 | "values": false 520 | }, 521 | "text": {}, 522 | "textMode": "value" 523 | }, 524 | "pluginVersion": "7.5.10", 525 | "targets": [ 526 | { 527 | "application": { 528 | "filter": "Monitoring agent" 529 | }, 530 | "functions": [], 531 | "group": { 532 | "filter": "$Group" 533 | }, 534 | "hide": false, 535 | "host": { 536 | "filter": "$Host" 537 | }, 538 | "item": { 539 | "filter": "Host name of Zabbix agent running" 540 | }, 541 | "options": { 542 | "acknowledged": 2, 543 | "disableDataAlignment": false, 544 | "hostProxy": false, 545 | "hostsInMaintenance": false, 546 | "limit": 1001, 547 | "minSeverity": 0, 548 | "showDisabledItems": false, 549 | "skipEmptyValues": false, 550 | "sortProblems": "default", 551 | "useZabbixValueMapping": false 552 | }, 553 | "proxy": { 554 | "filter": "" 555 | }, 556 | "queryType": 2, 557 | "refId": "A", 558 | "resultFormat": "time_series", 559 | "showProblems": "problems", 560 | "table": { 561 | "skipEmptyValues": false 562 | }, 563 | "tags": { 564 | "filter": "" 565 | }, 566 | "trigger": { 567 | "filter": "" 568 | }, 569 | "triggers": { 570 | "acknowledged": 2, 571 | "count": true, 572 | "minSeverity": 3 573 | }, 574 | "useCaptureGroups": false 575 | } 576 | ], 577 | "timeFrom": "24h", 578 | "timeShift": null, 579 | "transformations": [], 580 | "type": "stat" 581 | }, 582 | { 583 | "cacheTimeout": null, 584 | "datasource": "Zabbix", 585 | "fieldConfig": { 586 | "defaults": { 587 | "color": { 588 | "mode": "thresholds" 589 | }, 590 | "decimals": 0, 591 | "mappings": [], 592 | "thresholds": { 593 | "mode": "absolute", 594 | "steps": [ 595 | { 596 | "color": "green", 597 | "value": null 598 | }, 599 | { 600 | "color": "yellow", 601 | "value": 1 602 | } 603 | ] 604 | }, 605 | "unit": "none" 606 | }, 607 | "overrides": [] 608 | }, 609 | "gridPos": { 610 | "h": 3, 611 | "w": 4, 612 | "x": 20, 613 | "y": 7 614 | }, 615 | "hideTimeOverride": true, 616 | "id": 10, 617 | "interval": null, 618 | "links": [], 619 | "maxDataPoints": 100, 620 | "options": { 621 | "colorMode": "background", 622 | "graphMode": "none", 623 | "justifyMode": "center", 624 | "orientation": "auto", 625 | "reduceOptions": { 626 | "calcs": [ 627 | "lastNotNull" 628 | ], 629 | "fields": "/^triggers count$/", 630 | "values": false 631 | }, 632 | "text": {}, 633 | "textMode": "value" 634 | }, 635 | "pluginVersion": "7.5.10", 636 | "targets": [ 637 | { 638 | "application": { 639 | "filter": "/.*/" 640 | }, 641 | "functions": [], 642 | "group": { 643 | "filter": "$Group" 644 | }, 645 | "host": { 646 | "filter": "$Host" 647 | }, 648 | "item": { 649 | "filter": "Perda de Pacotes" 650 | }, 651 | "options": { 652 | "showDisabledItems": false, 653 | "skipEmptyValues": false 654 | }, 655 | "proxy": { 656 | "filter": "" 657 | }, 658 | "queryType": 4, 659 | "refId": "A", 660 | "resultFormat": "time_series", 661 | "table": { 662 | "skipEmptyValues": false 663 | }, 664 | "tags": { 665 | "filter": "" 666 | }, 667 | "trigger": { 668 | "filter": "" 669 | }, 670 | "triggers": { 671 | "acknowledged": 2, 672 | "count": true, 673 | "minSeverity": 0 674 | } 675 | } 676 | ], 677 | "timeFrom": "5y", 678 | "title": "Problems", 679 | "type": "stat" 680 | }, 681 | { 682 | "collapsed": false, 683 | "datasource": "Zabbix", 684 | "gridPos": { 685 | "h": 1, 686 | "w": 24, 687 | "x": 0, 688 | "y": 10 689 | }, 690 | "id": 35, 691 | "panels": [], 692 | "title": "Stats", 693 | "type": "row" 694 | }, 695 | { 696 | "cacheTimeout": null, 697 | "datasource": "Zabbix", 698 | "fieldConfig": { 699 | "defaults": { 700 | "color": { 701 | "mode": "thresholds" 702 | }, 703 | "decimals": 0, 704 | "mappings": [ 705 | { 706 | "id": 0, 707 | "op": "=", 708 | "text": "N/A", 709 | "type": 1, 710 | "value": "null" 711 | } 712 | ], 713 | "max": 100, 714 | "min": 0, 715 | "thresholds": { 716 | "mode": "absolute", 717 | "steps": [ 718 | { 719 | "color": "rgba(50, 172, 45, 0.97)", 720 | "value": null 721 | }, 722 | { 723 | "color": "rgba(237, 129, 40, 0.89)", 724 | "value": 50 725 | }, 726 | { 727 | "color": "rgba(245, 54, 54, 0.9)", 728 | "value": 80 729 | } 730 | ] 731 | }, 732 | "unit": "percent" 733 | }, 734 | "overrides": [] 735 | }, 736 | "gridPos": { 737 | "h": 6, 738 | "w": 4, 739 | "x": 0, 740 | "y": 11 741 | }, 742 | "id": 5, 743 | "interval": null, 744 | "links": [], 745 | "maxDataPoints": 100, 746 | "options": { 747 | "orientation": "horizontal", 748 | "reduceOptions": { 749 | "calcs": [ 750 | "lastNotNull" 751 | ], 752 | "fields": "", 753 | "values": false 754 | }, 755 | "showThresholdLabels": false, 756 | "showThresholdMarkers": true, 757 | "text": {} 758 | }, 759 | "pluginVersion": "7.5.10", 760 | "targets": [ 761 | { 762 | "application": { 763 | "filter": "Memory" 764 | }, 765 | "functions": [], 766 | "group": { 767 | "filter": "$Group" 768 | }, 769 | "host": { 770 | "filter": "$Host" 771 | }, 772 | "item": { 773 | "filter": "Memory utilization" 774 | }, 775 | "options": { 776 | "showDisabledItems": false, 777 | "skipEmptyValues": false 778 | }, 779 | "proxy": { 780 | "filter": "" 781 | }, 782 | "queryType": 0, 783 | "refId": "A", 784 | "resultFormat": "time_series", 785 | "table": { 786 | "skipEmptyValues": false 787 | }, 788 | "tags": { 789 | "filter": "" 790 | }, 791 | "trigger": { 792 | "filter": "" 793 | }, 794 | "triggers": { 795 | "acknowledged": 2, 796 | "count": true, 797 | "minSeverity": 3 798 | } 799 | } 800 | ], 801 | "title": "Memory Utilization", 802 | "type": "gauge" 803 | }, 804 | { 805 | "aliasColors": { 806 | "CPU system time": "#e24d42", 807 | "CPU utilization": "red", 808 | "Espaço livre na partição C: % (pfree)": "#629E51", 809 | "Espaço livre na partição D: % (pfree)": "#E5AC0E", 810 | "Memory utilization": "blue", 811 | "Used memory %": "#6ed0e0", 812 | "Used memory in %": "#70dbed" 813 | }, 814 | "bars": false, 815 | "dashLength": 10, 816 | "dashes": false, 817 | "datasource": "Zabbix", 818 | "decimals": 0, 819 | "fieldConfig": { 820 | "defaults": { 821 | "unit": "percent" 822 | }, 823 | "overrides": [] 824 | }, 825 | "fill": 5, 826 | "fillGradient": 0, 827 | "gridPos": { 828 | "h": 6, 829 | "w": 16, 830 | "x": 4, 831 | "y": 11 832 | }, 833 | "hiddenSeries": false, 834 | "id": 9, 835 | "legend": { 836 | "alignAsTable": false, 837 | "avg": true, 838 | "current": false, 839 | "hideEmpty": false, 840 | "hideZero": false, 841 | "max": false, 842 | "min": false, 843 | "rightSide": false, 844 | "show": true, 845 | "total": false, 846 | "values": true 847 | }, 848 | "lines": true, 849 | "linewidth": 2, 850 | "links": [], 851 | "nullPointMode": "null", 852 | "options": { 853 | "alertThreshold": true 854 | }, 855 | "percentage": false, 856 | "pluginVersion": "7.5.10", 857 | "pointradius": 5, 858 | "points": false, 859 | "renderer": "flot", 860 | "seriesOverrides": [ 861 | { 862 | "alias": "/CPU utilization/", 863 | "dashLength": 5, 864 | "dashes": true, 865 | "fill": 0, 866 | "lines": true, 867 | "linewidth": 3, 868 | "nullPointMode": "null", 869 | "spaceLength": 2, 870 | "yaxis": 2, 871 | "zindex": 2 872 | }, 873 | { 874 | "alias": "Memory utilization", 875 | "fillGradient": 7, 876 | "nullPointMode": "null", 877 | "pointradius": 2 878 | } 879 | ], 880 | "spaceLength": 10, 881 | "stack": false, 882 | "steppedLine": false, 883 | "targets": [ 884 | { 885 | "application": { 886 | "filter": "CPU" 887 | }, 888 | "functions": [], 889 | "group": { 890 | "filter": "$Group" 891 | }, 892 | "host": { 893 | "filter": "$Host" 894 | }, 895 | "item": { 896 | "filter": "CPU utilization" 897 | }, 898 | "options": { 899 | "showDisabledItems": false, 900 | "skipEmptyValues": false 901 | }, 902 | "proxy": { 903 | "filter": "" 904 | }, 905 | "queryType": 0, 906 | "refId": "A", 907 | "resultFormat": "time_series", 908 | "table": { 909 | "skipEmptyValues": false 910 | }, 911 | "tags": { 912 | "filter": "" 913 | }, 914 | "trigger": { 915 | "filter": "" 916 | }, 917 | "triggers": { 918 | "acknowledged": 2, 919 | "count": true, 920 | "minSeverity": 3 921 | } 922 | }, 923 | { 924 | "application": { 925 | "filter": "Memory" 926 | }, 927 | "functions": [], 928 | "group": { 929 | "filter": "$Group" 930 | }, 931 | "hide": false, 932 | "host": { 933 | "filter": "$Host" 934 | }, 935 | "item": { 936 | "filter": "Memory utilization" 937 | }, 938 | "options": { 939 | "showDisabledItems": false, 940 | "skipEmptyValues": false 941 | }, 942 | "proxy": { 943 | "filter": "" 944 | }, 945 | "queryType": 0, 946 | "refId": "B", 947 | "resultFormat": "time_series", 948 | "table": { 949 | "skipEmptyValues": false 950 | }, 951 | "tags": { 952 | "filter": "" 953 | }, 954 | "trigger": { 955 | "filter": "" 956 | }, 957 | "triggers": { 958 | "acknowledged": 2, 959 | "count": true, 960 | "minSeverity": 3 961 | } 962 | } 963 | ], 964 | "thresholds": [], 965 | "timeFrom": null, 966 | "timeRegions": [], 967 | "timeShift": null, 968 | "title": "Memory / CPU", 969 | "tooltip": { 970 | "shared": true, 971 | "sort": 0, 972 | "value_type": "individual" 973 | }, 974 | "type": "graph", 975 | "xaxis": { 976 | "buckets": null, 977 | "mode": "time", 978 | "name": null, 979 | "show": true, 980 | "values": [] 981 | }, 982 | "yaxes": [ 983 | { 984 | "decimals": 0, 985 | "format": "percent", 986 | "label": "", 987 | "logBase": 1, 988 | "max": "100", 989 | "min": "0", 990 | "show": true 991 | }, 992 | { 993 | "decimals": 0, 994 | "format": "percent", 995 | "label": "", 996 | "logBase": 1, 997 | "max": "100", 998 | "min": "0", 999 | "show": true 1000 | } 1001 | ], 1002 | "yaxis": { 1003 | "align": true, 1004 | "alignLevel": null 1005 | } 1006 | }, 1007 | { 1008 | "cacheTimeout": null, 1009 | "datasource": "Zabbix", 1010 | "fieldConfig": { 1011 | "defaults": { 1012 | "color": { 1013 | "mode": "thresholds" 1014 | }, 1015 | "decimals": 0, 1016 | "mappings": [ 1017 | { 1018 | "id": 0, 1019 | "op": "=", 1020 | "text": "N/A", 1021 | "type": 1, 1022 | "value": "null" 1023 | } 1024 | ], 1025 | "max": 100, 1026 | "min": 0, 1027 | "thresholds": { 1028 | "mode": "absolute", 1029 | "steps": [ 1030 | { 1031 | "color": "rgba(50, 172, 45, 0.97)", 1032 | "value": null 1033 | }, 1034 | { 1035 | "color": "rgba(237, 129, 40, 0.89)", 1036 | "value": 50 1037 | }, 1038 | { 1039 | "color": "rgba(245, 54, 54, 0.9)", 1040 | "value": 80 1041 | } 1042 | ] 1043 | }, 1044 | "unit": "percent" 1045 | }, 1046 | "overrides": [] 1047 | }, 1048 | "gridPos": { 1049 | "h": 6, 1050 | "w": 4, 1051 | "x": 20, 1052 | "y": 11 1053 | }, 1054 | "id": 4, 1055 | "interval": null, 1056 | "links": [], 1057 | "maxDataPoints": 100, 1058 | "options": { 1059 | "orientation": "horizontal", 1060 | "reduceOptions": { 1061 | "calcs": [ 1062 | "lastNotNull" 1063 | ], 1064 | "fields": "", 1065 | "values": false 1066 | }, 1067 | "showThresholdLabels": false, 1068 | "showThresholdMarkers": true, 1069 | "text": {} 1070 | }, 1071 | "pluginVersion": "7.5.10", 1072 | "targets": [ 1073 | { 1074 | "application": { 1075 | "filter": "CPU" 1076 | }, 1077 | "functions": [], 1078 | "group": { 1079 | "filter": "$Group" 1080 | }, 1081 | "host": { 1082 | "filter": "$Host" 1083 | }, 1084 | "item": { 1085 | "filter": "CPU utilization" 1086 | }, 1087 | "options": { 1088 | "showDisabledItems": false, 1089 | "skipEmptyValues": false 1090 | }, 1091 | "proxy": { 1092 | "filter": "" 1093 | }, 1094 | "queryType": 0, 1095 | "refId": "B", 1096 | "resultFormat": "time_series", 1097 | "table": { 1098 | "skipEmptyValues": false 1099 | }, 1100 | "tags": { 1101 | "filter": "" 1102 | }, 1103 | "trigger": { 1104 | "filter": "" 1105 | }, 1106 | "triggers": { 1107 | "acknowledged": 2, 1108 | "count": true, 1109 | "minSeverity": 3 1110 | } 1111 | } 1112 | ], 1113 | "title": "CPU utilization", 1114 | "type": "gauge" 1115 | }, 1116 | { 1117 | "datasource": "Zabbix", 1118 | "description": "Amount of time the CPU has been waiting for I/O to complete.", 1119 | "fieldConfig": { 1120 | "defaults": { 1121 | "color": { 1122 | "mode": "thresholds" 1123 | }, 1124 | "decimals": 0, 1125 | "mappings": [], 1126 | "max": 20, 1127 | "min": 0, 1128 | "thresholds": { 1129 | "mode": "absolute", 1130 | "steps": [ 1131 | { 1132 | "color": "green", 1133 | "value": null 1134 | }, 1135 | { 1136 | "color": "#EAB839", 1137 | "value": 5 1138 | }, 1139 | { 1140 | "color": "red", 1141 | "value": 10 1142 | } 1143 | ] 1144 | }, 1145 | "unit": "percent" 1146 | }, 1147 | "overrides": [] 1148 | }, 1149 | "gridPos": { 1150 | "h": 6, 1151 | "w": 5, 1152 | "x": 0, 1153 | "y": 17 1154 | }, 1155 | "id": 22, 1156 | "links": [], 1157 | "options": { 1158 | "colorMode": "background", 1159 | "graphMode": "area", 1160 | "justifyMode": "auto", 1161 | "orientation": "auto", 1162 | "reduceOptions": { 1163 | "calcs": [ 1164 | "lastNotNull" 1165 | ], 1166 | "fields": "", 1167 | "values": false 1168 | }, 1169 | "text": {}, 1170 | "textMode": "value" 1171 | }, 1172 | "pluginVersion": "7.5.10", 1173 | "targets": [ 1174 | { 1175 | "application": { 1176 | "filter": "CPU" 1177 | }, 1178 | "functions": [], 1179 | "group": { 1180 | "filter": "$Group" 1181 | }, 1182 | "host": { 1183 | "filter": "$Host" 1184 | }, 1185 | "item": { 1186 | "filter": "/CPU (iowait|DPC) time/" 1187 | }, 1188 | "options": { 1189 | "showDisabledItems": false, 1190 | "skipEmptyValues": false 1191 | }, 1192 | "proxy": { 1193 | "filter": "" 1194 | }, 1195 | "queryType": 0, 1196 | "refId": "A", 1197 | "resultFormat": "time_series", 1198 | "table": { 1199 | "skipEmptyValues": false 1200 | }, 1201 | "tags": { 1202 | "filter": "" 1203 | }, 1204 | "trigger": { 1205 | "filter": "" 1206 | }, 1207 | "triggers": { 1208 | "acknowledged": 2, 1209 | "count": true, 1210 | "minSeverity": 3 1211 | } 1212 | } 1213 | ], 1214 | "timeFrom": null, 1215 | "timeShift": null, 1216 | "title": "CPU iowait time", 1217 | "type": "stat" 1218 | }, 1219 | { 1220 | "datasource": "Zabbix", 1221 | "description": "Version of Zabbix agent running", 1222 | "fieldConfig": { 1223 | "defaults": { 1224 | "color": { 1225 | "mode": "thresholds" 1226 | }, 1227 | "mappings": [], 1228 | "thresholds": { 1229 | "mode": "absolute", 1230 | "steps": [ 1231 | { 1232 | "color": "green", 1233 | "value": null 1234 | } 1235 | ] 1236 | } 1237 | }, 1238 | "overrides": [] 1239 | }, 1240 | "gridPos": { 1241 | "h": 6, 1242 | "w": 3, 1243 | "x": 5, 1244 | "y": 17 1245 | }, 1246 | "id": 106, 1247 | "options": { 1248 | "colorMode": "value", 1249 | "graphMode": "none", 1250 | "justifyMode": "auto", 1251 | "orientation": "auto", 1252 | "reduceOptions": { 1253 | "calcs": [ 1254 | "lastNotNull" 1255 | ], 1256 | "fields": "/^Version of Zabbix agent running$/", 1257 | "values": false 1258 | }, 1259 | "text": {}, 1260 | "textMode": "value" 1261 | }, 1262 | "pluginVersion": "7.5.10", 1263 | "targets": [ 1264 | { 1265 | "application": { 1266 | "filter": "Monitoring agent" 1267 | }, 1268 | "functions": [], 1269 | "group": { 1270 | "filter": "$Group" 1271 | }, 1272 | "host": { 1273 | "filter": "$Host" 1274 | }, 1275 | "item": { 1276 | "filter": "Version of Zabbix agent running" 1277 | }, 1278 | "options": { 1279 | "disableDataAlignment": false, 1280 | "showDisabledItems": false, 1281 | "skipEmptyValues": false, 1282 | "useZabbixValueMapping": false 1283 | }, 1284 | "proxy": { 1285 | "filter": "" 1286 | }, 1287 | "queryType": 2, 1288 | "refId": "A", 1289 | "resultFormat": "time_series", 1290 | "table": { 1291 | "skipEmptyValues": false 1292 | }, 1293 | "tags": { 1294 | "filter": "" 1295 | }, 1296 | "trigger": { 1297 | "filter": "" 1298 | }, 1299 | "triggers": { 1300 | "acknowledged": 2, 1301 | "count": true, 1302 | "minSeverity": 3 1303 | }, 1304 | "useCaptureGroups": false 1305 | } 1306 | ], 1307 | "timeFrom": null, 1308 | "timeShift": null, 1309 | "title": "Zabbix agent version", 1310 | "transformations": [], 1311 | "type": "stat" 1312 | }, 1313 | { 1314 | "datasource": "Zabbix", 1315 | "description": "Filesystem space utilization in % ", 1316 | "fieldConfig": { 1317 | "defaults": { 1318 | "color": { 1319 | "mode": "thresholds" 1320 | }, 1321 | "decimals": 0, 1322 | "mappings": [], 1323 | "thresholds": { 1324 | "mode": "absolute", 1325 | "steps": [ 1326 | { 1327 | "color": "green", 1328 | "value": null 1329 | }, 1330 | { 1331 | "color": "#EAB839", 1332 | "value": 80 1333 | }, 1334 | { 1335 | "color": "red", 1336 | "value": 95 1337 | } 1338 | ] 1339 | }, 1340 | "unit": "percent" 1341 | }, 1342 | "overrides": [] 1343 | }, 1344 | "gridPos": { 1345 | "h": 6, 1346 | "w": 8, 1347 | "x": 8, 1348 | "y": 17 1349 | }, 1350 | "hideTimeOverride": false, 1351 | "id": 15, 1352 | "links": [], 1353 | "options": { 1354 | "displayMode": "lcd", 1355 | "orientation": "horizontal", 1356 | "reduceOptions": { 1357 | "calcs": [ 1358 | "lastNotNull" 1359 | ], 1360 | "fields": "", 1361 | "values": false 1362 | }, 1363 | "showUnfilled": true, 1364 | "text": {} 1365 | }, 1366 | "pluginVersion": "7.5.10", 1367 | "targets": [ 1368 | { 1369 | "application": { 1370 | "filter": "/Filesystem./" 1371 | }, 1372 | "functions": [ 1373 | { 1374 | "def": { 1375 | "category": "Alias", 1376 | "defaultParams": [ 1377 | "/(.*)/", 1378 | "$1" 1379 | ], 1380 | "name": "replaceAlias", 1381 | "params": [ 1382 | { 1383 | "name": "regexp", 1384 | "type": "string" 1385 | }, 1386 | { 1387 | "name": "newAlias", 1388 | "type": "string" 1389 | } 1390 | ] 1391 | }, 1392 | "params": [ 1393 | "/: Space utilization/", 1394 | "$'" 1395 | ], 1396 | "text": "replaceAlias(/: Space utilization/, $')" 1397 | } 1398 | ], 1399 | "group": { 1400 | "filter": "$Group" 1401 | }, 1402 | "host": { 1403 | "filter": "$Host" 1404 | }, 1405 | "item": { 1406 | "filter": "/Space utilization/" 1407 | }, 1408 | "options": { 1409 | "showDisabledItems": false, 1410 | "skipEmptyValues": false 1411 | }, 1412 | "proxy": { 1413 | "filter": "" 1414 | }, 1415 | "queryType": 0, 1416 | "refId": "A", 1417 | "resultFormat": "time_series", 1418 | "table": { 1419 | "skipEmptyValues": false 1420 | }, 1421 | "tags": { 1422 | "filter": "" 1423 | }, 1424 | "trigger": { 1425 | "filter": "" 1426 | }, 1427 | "triggers": { 1428 | "acknowledged": 2, 1429 | "count": true, 1430 | "minSeverity": 3 1431 | } 1432 | } 1433 | ], 1434 | "title": "Filesystem (Space utilization %)", 1435 | "transformations": [], 1436 | "type": "bargauge" 1437 | }, 1438 | { 1439 | "datasource": "Zabbix", 1440 | "description": "The amount of disk devices in the system", 1441 | "fieldConfig": { 1442 | "defaults": { 1443 | "color": { 1444 | "mode": "thresholds" 1445 | }, 1446 | "mappings": [], 1447 | "thresholds": { 1448 | "mode": "absolute", 1449 | "steps": [ 1450 | { 1451 | "color": "green", 1452 | "value": null 1453 | } 1454 | ] 1455 | } 1456 | }, 1457 | "overrides": [] 1458 | }, 1459 | "gridPos": { 1460 | "h": 6, 1461 | "w": 3, 1462 | "x": 16, 1463 | "y": 17 1464 | }, 1465 | "id": 94, 1466 | "options": { 1467 | "colorMode": "value", 1468 | "graphMode": "none", 1469 | "justifyMode": "auto", 1470 | "orientation": "auto", 1471 | "reduceOptions": { 1472 | "calcs": [ 1473 | "lastNotNull" 1474 | ], 1475 | "fields": "", 1476 | "values": false 1477 | }, 1478 | "text": {}, 1479 | "textMode": "value" 1480 | }, 1481 | "pluginVersion": "7.5.10", 1482 | "targets": [ 1483 | { 1484 | "application": { 1485 | "filter": "/Disk /" 1486 | }, 1487 | "functions": [], 1488 | "group": { 1489 | "filter": "$Group" 1490 | }, 1491 | "host": { 1492 | "filter": "$Host" 1493 | }, 1494 | "item": { 1495 | "filter": "/Disk utilization/" 1496 | }, 1497 | "options": { 1498 | "showDisabledItems": false, 1499 | "skipEmptyValues": false 1500 | }, 1501 | "proxy": { 1502 | "filter": "" 1503 | }, 1504 | "queryType": 0, 1505 | "refId": "A", 1506 | "resultFormat": "time_series", 1507 | "table": { 1508 | "skipEmptyValues": false 1509 | }, 1510 | "tags": { 1511 | "filter": "" 1512 | }, 1513 | "trigger": { 1514 | "filter": "" 1515 | }, 1516 | "triggers": { 1517 | "acknowledged": 2, 1518 | "count": true, 1519 | "minSeverity": 3 1520 | } 1521 | } 1522 | ], 1523 | "timeFrom": null, 1524 | "timeShift": null, 1525 | "title": "Disk drives ", 1526 | "transformations": [ 1527 | { 1528 | "id": "calculateField", 1529 | "options": { 1530 | "mode": "reduceRow", 1531 | "reduce": { 1532 | "reducer": "count" 1533 | }, 1534 | "replaceFields": true 1535 | } 1536 | } 1537 | ], 1538 | "type": "stat" 1539 | }, 1540 | { 1541 | "datasource": "Zabbix", 1542 | "fieldConfig": { 1543 | "defaults": { 1544 | "color": { 1545 | "mode": "thresholds" 1546 | }, 1547 | "mappings": [], 1548 | "thresholds": { 1549 | "mode": "absolute", 1550 | "steps": [ 1551 | { 1552 | "color": "green", 1553 | "value": null 1554 | } 1555 | ] 1556 | } 1557 | }, 1558 | "overrides": [] 1559 | }, 1560 | "gridPos": { 1561 | "h": 6, 1562 | "w": 5, 1563 | "x": 19, 1564 | "y": 17 1565 | }, 1566 | "id": 52, 1567 | "options": { 1568 | "colorMode": "value", 1569 | "graphMode": "area", 1570 | "justifyMode": "auto", 1571 | "orientation": "auto", 1572 | "reduceOptions": { 1573 | "calcs": [ 1574 | "lastNotNull" 1575 | ], 1576 | "fields": "", 1577 | "values": false 1578 | }, 1579 | "text": {}, 1580 | "textMode": "auto" 1581 | }, 1582 | "pluginVersion": "7.5.10", 1583 | "targets": [ 1584 | { 1585 | "application": { 1586 | "filter": "General" 1587 | }, 1588 | "functions": [], 1589 | "group": { 1590 | "filter": "$Group" 1591 | }, 1592 | "host": { 1593 | "filter": "$Host" 1594 | }, 1595 | "item": { 1596 | "filter": "Number of processes" 1597 | }, 1598 | "options": { 1599 | "showDisabledItems": false, 1600 | "skipEmptyValues": false 1601 | }, 1602 | "proxy": { 1603 | "filter": "" 1604 | }, 1605 | "queryType": 0, 1606 | "refId": "A", 1607 | "resultFormat": "time_series", 1608 | "table": { 1609 | "skipEmptyValues": false 1610 | }, 1611 | "tags": { 1612 | "filter": "" 1613 | }, 1614 | "trigger": { 1615 | "filter": "" 1616 | }, 1617 | "triggers": { 1618 | "acknowledged": 2, 1619 | "count": true, 1620 | "minSeverity": 3 1621 | } 1622 | } 1623 | ], 1624 | "timeFrom": null, 1625 | "timeShift": null, 1626 | "title": "Number of processes", 1627 | "type": "stat" 1628 | }, 1629 | { 1630 | "collapsed": false, 1631 | "datasource": "Zabbix", 1632 | "gridPos": { 1633 | "h": 1, 1634 | "w": 24, 1635 | "x": 0, 1636 | "y": 23 1637 | }, 1638 | "id": 31, 1639 | "panels": [], 1640 | "title": "Disks", 1641 | "type": "row" 1642 | }, 1643 | { 1644 | "aliasColors": { 1645 | "CPU system time": "#e24d42", 1646 | "CPU utilization": "red", 1647 | "Espaço livre na partição C: % (pfree)": "#629E51", 1648 | "Espaço livre na partição D: % (pfree)": "#E5AC0E", 1649 | "Memory utilization": "blue", 1650 | "Used memory %": "#6ed0e0", 1651 | "Used memory in %": "#70dbed" 1652 | }, 1653 | "bars": false, 1654 | "dashLength": 10, 1655 | "dashes": false, 1656 | "datasource": "Zabbix", 1657 | "decimals": 0, 1658 | "fieldConfig": { 1659 | "defaults": { 1660 | "unit": "ops" 1661 | }, 1662 | "overrides": [] 1663 | }, 1664 | "fill": 10, 1665 | "fillGradient": 6, 1666 | "gridPos": { 1667 | "h": 6, 1668 | "w": 10, 1669 | "x": 0, 1670 | "y": 24 1671 | }, 1672 | "hiddenSeries": false, 1673 | "id": 89, 1674 | "legend": { 1675 | "alignAsTable": false, 1676 | "avg": true, 1677 | "current": false, 1678 | "hideEmpty": false, 1679 | "hideZero": false, 1680 | "max": false, 1681 | "min": false, 1682 | "rightSide": false, 1683 | "show": true, 1684 | "total": false, 1685 | "values": true 1686 | }, 1687 | "lines": true, 1688 | "linewidth": 2, 1689 | "links": [], 1690 | "nullPointMode": "connected", 1691 | "options": { 1692 | "alertThreshold": true 1693 | }, 1694 | "percentage": false, 1695 | "pluginVersion": "7.5.10", 1696 | "pointradius": 5, 1697 | "points": false, 1698 | "renderer": "flot", 1699 | "repeat": "Disk", 1700 | "repeatDirection": "v", 1701 | "seriesOverrides": [ 1702 | { 1703 | "alias": "/read rate/", 1704 | "color": "#5794F2", 1705 | "fill": 0, 1706 | "lines": true, 1707 | "linewidth": 3 1708 | }, 1709 | { 1710 | "alias": "/write rate/", 1711 | "color": "#C4162A", 1712 | "pointradius": 2, 1713 | "points": true 1714 | } 1715 | ], 1716 | "spaceLength": 10, 1717 | "stack": false, 1718 | "steppedLine": false, 1719 | "targets": [ 1720 | { 1721 | "application": { 1722 | "filter": "$Disk" 1723 | }, 1724 | "functions": [], 1725 | "group": { 1726 | "filter": "$Group" 1727 | }, 1728 | "host": { 1729 | "filter": "$Host" 1730 | }, 1731 | "item": { 1732 | "filter": "/write rate/" 1733 | }, 1734 | "options": { 1735 | "showDisabledItems": false, 1736 | "skipEmptyValues": false 1737 | }, 1738 | "proxy": { 1739 | "filter": "" 1740 | }, 1741 | "queryType": 0, 1742 | "refId": "A", 1743 | "resultFormat": "time_series", 1744 | "table": { 1745 | "skipEmptyValues": false 1746 | }, 1747 | "tags": { 1748 | "filter": "" 1749 | }, 1750 | "trigger": { 1751 | "filter": "" 1752 | }, 1753 | "triggers": { 1754 | "acknowledged": 2, 1755 | "count": true, 1756 | "minSeverity": 3 1757 | } 1758 | }, 1759 | { 1760 | "application": { 1761 | "filter": "$Disk" 1762 | }, 1763 | "functions": [], 1764 | "group": { 1765 | "filter": "$Group" 1766 | }, 1767 | "hide": false, 1768 | "host": { 1769 | "filter": "$Host" 1770 | }, 1771 | "item": { 1772 | "filter": "/read rate/" 1773 | }, 1774 | "options": { 1775 | "showDisabledItems": false, 1776 | "skipEmptyValues": false 1777 | }, 1778 | "proxy": { 1779 | "filter": "" 1780 | }, 1781 | "queryType": 0, 1782 | "refId": "B", 1783 | "resultFormat": "time_series", 1784 | "table": { 1785 | "skipEmptyValues": false 1786 | }, 1787 | "tags": { 1788 | "filter": "" 1789 | }, 1790 | "trigger": { 1791 | "filter": "" 1792 | }, 1793 | "triggers": { 1794 | "acknowledged": 2, 1795 | "count": true, 1796 | "minSeverity": 3 1797 | } 1798 | } 1799 | ], 1800 | "thresholds": [], 1801 | "timeFrom": null, 1802 | "timeRegions": [], 1803 | "timeShift": null, 1804 | "title": "$Disk (read/write rates)", 1805 | "tooltip": { 1806 | "shared": true, 1807 | "sort": 0, 1808 | "value_type": "individual" 1809 | }, 1810 | "type": "graph", 1811 | "xaxis": { 1812 | "buckets": null, 1813 | "mode": "time", 1814 | "name": null, 1815 | "show": true, 1816 | "values": [] 1817 | }, 1818 | "yaxes": [ 1819 | { 1820 | "decimals": 0, 1821 | "format": "ops", 1822 | "label": "", 1823 | "logBase": 1, 1824 | "max": null, 1825 | "min": "0", 1826 | "show": true 1827 | }, 1828 | { 1829 | "decimals": 0, 1830 | "format": "none", 1831 | "label": "", 1832 | "logBase": 1, 1833 | "max": null, 1834 | "min": "0", 1835 | "show": false 1836 | } 1837 | ], 1838 | "yaxis": { 1839 | "align": false, 1840 | "alignLevel": null 1841 | } 1842 | }, 1843 | { 1844 | "datasource": "Zabbix", 1845 | "description": "This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests.", 1846 | "fieldConfig": { 1847 | "defaults": { 1848 | "color": { 1849 | "mode": "thresholds" 1850 | }, 1851 | "decimals": 0, 1852 | "mappings": [], 1853 | "max": 100, 1854 | "min": 0, 1855 | "thresholds": { 1856 | "mode": "absolute", 1857 | "steps": [ 1858 | { 1859 | "color": "green", 1860 | "value": null 1861 | }, 1862 | { 1863 | "color": "#EAB839", 1864 | "value": 50 1865 | }, 1866 | { 1867 | "color": "red", 1868 | "value": 80 1869 | } 1870 | ] 1871 | }, 1872 | "unit": "percent" 1873 | }, 1874 | "overrides": [] 1875 | }, 1876 | "gridPos": { 1877 | "h": 6, 1878 | "w": 4, 1879 | "x": 10, 1880 | "y": 24 1881 | }, 1882 | "id": 23, 1883 | "links": [], 1884 | "options": { 1885 | "orientation": "auto", 1886 | "reduceOptions": { 1887 | "calcs": [ 1888 | "lastNotNull" 1889 | ], 1890 | "fields": "", 1891 | "values": false 1892 | }, 1893 | "showThresholdLabels": false, 1894 | "showThresholdMarkers": true, 1895 | "text": {} 1896 | }, 1897 | "pluginVersion": "7.5.10", 1898 | "repeat": "Disk", 1899 | "repeatDirection": "v", 1900 | "targets": [ 1901 | { 1902 | "application": { 1903 | "filter": "$Disk" 1904 | }, 1905 | "functions": [ 1906 | { 1907 | "def": { 1908 | "category": "Alias", 1909 | "defaultParams": [ 1910 | "/(.*)/", 1911 | "$1" 1912 | ], 1913 | "name": "replaceAlias", 1914 | "params": [ 1915 | { 1916 | "name": "regexp", 1917 | "type": "string" 1918 | }, 1919 | { 1920 | "name": "newAlias", 1921 | "type": "string" 1922 | } 1923 | ] 1924 | }, 1925 | "params": [ 1926 | "/(: Disk utilization)/", 1927 | "$'" 1928 | ], 1929 | "text": "replaceAlias(/(: Disk utilization)/, $')" 1930 | } 1931 | ], 1932 | "group": { 1933 | "filter": "$Group" 1934 | }, 1935 | "host": { 1936 | "filter": "$Host" 1937 | }, 1938 | "item": { 1939 | "filter": "/Disk utilization/" 1940 | }, 1941 | "options": { 1942 | "showDisabledItems": false, 1943 | "skipEmptyValues": false 1944 | }, 1945 | "proxy": { 1946 | "filter": "" 1947 | }, 1948 | "queryType": 0, 1949 | "refId": "A", 1950 | "resultFormat": "time_series", 1951 | "table": { 1952 | "skipEmptyValues": false 1953 | }, 1954 | "tags": { 1955 | "filter": "" 1956 | }, 1957 | "trigger": { 1958 | "filter": "" 1959 | }, 1960 | "triggers": { 1961 | "acknowledged": 2, 1962 | "count": true, 1963 | "minSeverity": 3 1964 | } 1965 | } 1966 | ], 1967 | "timeFrom": null, 1968 | "timeShift": null, 1969 | "title": "$Disk (Performance)", 1970 | "type": "gauge" 1971 | }, 1972 | { 1973 | "aliasColors": { 1974 | "C:: Total space": "rgb(255, 255, 255)", 1975 | "C:: Used space": "red", 1976 | "CPU system time": "#e24d42", 1977 | "Espaço livre na partição C: % (pfree)": "#629E51", 1978 | "Espaço livre na partição D: % (pfree)": "#E5AC0E", 1979 | "Used memory %": "#6ed0e0" 1980 | }, 1981 | "bars": false, 1982 | "dashLength": 10, 1983 | "dashes": false, 1984 | "datasource": "Zabbix", 1985 | "decimals": 0, 1986 | "description": "Used storage in Bytes", 1987 | "fieldConfig": { 1988 | "defaults": { 1989 | "unit": "bytes" 1990 | }, 1991 | "overrides": [] 1992 | }, 1993 | "fill": 1, 1994 | "fillGradient": 4, 1995 | "gridPos": { 1996 | "h": 6, 1997 | "w": 10, 1998 | "x": 14, 1999 | "y": 24 2000 | }, 2001 | "hiddenSeries": false, 2002 | "id": 32, 2003 | "legend": { 2004 | "alignAsTable": false, 2005 | "avg": false, 2006 | "current": true, 2007 | "hideEmpty": false, 2008 | "hideZero": false, 2009 | "max": false, 2010 | "min": false, 2011 | "rightSide": false, 2012 | "show": true, 2013 | "total": false, 2014 | "values": true 2015 | }, 2016 | "lines": true, 2017 | "linewidth": 2, 2018 | "links": [], 2019 | "nullPointMode": "connected", 2020 | "options": { 2021 | "alertThreshold": true 2022 | }, 2023 | "percentage": true, 2024 | "pluginVersion": "7.5.10", 2025 | "pointradius": 5, 2026 | "points": false, 2027 | "renderer": "flot", 2028 | "repeat": "Filesystem", 2029 | "repeatDirection": "v", 2030 | "seriesOverrides": [ 2031 | { 2032 | "alias": "/Used space/", 2033 | "color": "#F2495C", 2034 | "dashLength": 7, 2035 | "dashes": true, 2036 | "fill": 10, 2037 | "fillGradient": 10, 2038 | "linewidth": 4, 2039 | "spaceLength": 4 2040 | }, 2041 | { 2042 | "alias": "/Total space/", 2043 | "color": "rgb(255, 255, 255)", 2044 | "linewidth": 4 2045 | } 2046 | ], 2047 | "spaceLength": 10, 2048 | "stack": false, 2049 | "steppedLine": false, 2050 | "targets": [ 2051 | { 2052 | "application": { 2053 | "filter": "$Filesystem" 2054 | }, 2055 | "functions": [], 2056 | "group": { 2057 | "filter": "$Group" 2058 | }, 2059 | "hide": false, 2060 | "host": { 2061 | "filter": "$Host" 2062 | }, 2063 | "item": { 2064 | "filter": "/(Used|Total) space/" 2065 | }, 2066 | "options": { 2067 | "showDisabledItems": false, 2068 | "skipEmptyValues": false 2069 | }, 2070 | "proxy": { 2071 | "filter": "" 2072 | }, 2073 | "queryType": 0, 2074 | "refId": "A", 2075 | "resultFormat": "time_series", 2076 | "table": { 2077 | "skipEmptyValues": false 2078 | }, 2079 | "tags": { 2080 | "filter": "" 2081 | }, 2082 | "trigger": { 2083 | "filter": "" 2084 | }, 2085 | "triggers": { 2086 | "acknowledged": 2, 2087 | "count": true, 2088 | "minSeverity": 3 2089 | } 2090 | } 2091 | ], 2092 | "thresholds": [], 2093 | "timeFrom": null, 2094 | "timeRegions": [], 2095 | "timeShift": null, 2096 | "title": "$Filesystem (Space utilization)", 2097 | "tooltip": { 2098 | "shared": true, 2099 | "sort": 2, 2100 | "value_type": "individual" 2101 | }, 2102 | "type": "graph", 2103 | "xaxis": { 2104 | "buckets": null, 2105 | "mode": "time", 2106 | "name": null, 2107 | "show": true, 2108 | "values": [] 2109 | }, 2110 | "yaxes": [ 2111 | { 2112 | "decimals": 0, 2113 | "format": "bytes", 2114 | "label": "", 2115 | "logBase": 1, 2116 | "max": null, 2117 | "min": "0", 2118 | "show": true 2119 | }, 2120 | { 2121 | "decimals": 0, 2122 | "format": "bytes", 2123 | "label": "", 2124 | "logBase": 1, 2125 | "max": null, 2126 | "min": null, 2127 | "show": false 2128 | } 2129 | ], 2130 | "yaxis": { 2131 | "align": true, 2132 | "alignLevel": null 2133 | } 2134 | }, 2135 | { 2136 | "collapsed": false, 2137 | "datasource": "Zabbix", 2138 | "gridPos": { 2139 | "h": 1, 2140 | "w": 24, 2141 | "x": 0, 2142 | "y": 30 2143 | }, 2144 | "id": 41, 2145 | "panels": [], 2146 | "title": "Network", 2147 | "type": "row" 2148 | }, 2149 | { 2150 | "cacheTimeout": null, 2151 | "datasource": "Zabbix", 2152 | "description": "", 2153 | "fieldConfig": { 2154 | "defaults": { 2155 | "color": { 2156 | "mode": "thresholds" 2157 | }, 2158 | "decimals": 0, 2159 | "mappings": [ 2160 | { 2161 | "id": 0, 2162 | "op": "=", 2163 | "text": "N/A", 2164 | "type": 1, 2165 | "value": "null" 2166 | } 2167 | ], 2168 | "thresholds": { 2169 | "mode": "absolute", 2170 | "steps": [ 2171 | { 2172 | "color": "green", 2173 | "value": null 2174 | } 2175 | ] 2176 | }, 2177 | "unit": "binBps" 2178 | }, 2179 | "overrides": [] 2180 | }, 2181 | "gridPos": { 2182 | "h": 7, 2183 | "w": 4, 2184 | "x": 0, 2185 | "y": 31 2186 | }, 2187 | "id": 19, 2188 | "interval": null, 2189 | "links": [], 2190 | "maxDataPoints": 100, 2191 | "options": { 2192 | "colorMode": "value", 2193 | "graphMode": "area", 2194 | "justifyMode": "auto", 2195 | "orientation": "horizontal", 2196 | "reduceOptions": { 2197 | "calcs": [ 2198 | "lastNotNull" 2199 | ], 2200 | "fields": "", 2201 | "values": false 2202 | }, 2203 | "text": {}, 2204 | "textMode": "value" 2205 | }, 2206 | "pluginVersion": "7.5.10", 2207 | "repeat": "Network", 2208 | "repeatDirection": "v", 2209 | "targets": [ 2210 | { 2211 | "application": { 2212 | "filter": "$Network" 2213 | }, 2214 | "functions": [], 2215 | "group": { 2216 | "filter": "$Group" 2217 | }, 2218 | "host": { 2219 | "filter": "$Host" 2220 | }, 2221 | "item": { 2222 | "filter": "/Bits received/" 2223 | }, 2224 | "options": { 2225 | "showDisabledItems": false, 2226 | "skipEmptyValues": false 2227 | }, 2228 | "proxy": { 2229 | "filter": "" 2230 | }, 2231 | "queryType": 0, 2232 | "refId": "A", 2233 | "resultFormat": "time_series", 2234 | "table": { 2235 | "skipEmptyValues": false 2236 | }, 2237 | "tags": { 2238 | "filter": "" 2239 | }, 2240 | "trigger": { 2241 | "filter": "" 2242 | }, 2243 | "triggers": { 2244 | "acknowledged": 2, 2245 | "count": true, 2246 | "minSeverity": 3 2247 | } 2248 | } 2249 | ], 2250 | "title": "(IN) $Network", 2251 | "type": "stat" 2252 | }, 2253 | { 2254 | "aliasColors": { 2255 | "Incoming network traffic on vmxnet3 Ethernet Adapter #2": "#1f78c1", 2256 | "Outgoing network traffic on vmxnet3 Ethernet Adapter #2": "rgba(237, 129, 40, 0.79)", 2257 | "Outgoing network traffic on vmxnet3 Ethernet Adapter #2-WFP LightWeight Filter-0000": "rgba(237, 129, 40, 0.89)" 2258 | }, 2259 | "bars": false, 2260 | "dashLength": 10, 2261 | "dashes": false, 2262 | "datasource": "Zabbix", 2263 | "decimals": 0, 2264 | "fieldConfig": { 2265 | "defaults": { 2266 | "unit": "binBps" 2267 | }, 2268 | "overrides": [] 2269 | }, 2270 | "fill": 5, 2271 | "fillGradient": 3, 2272 | "gridPos": { 2273 | "h": 7, 2274 | "w": 16, 2275 | "x": 4, 2276 | "y": 31 2277 | }, 2278 | "hiddenSeries": false, 2279 | "id": 18, 2280 | "legend": { 2281 | "alignAsTable": true, 2282 | "avg": false, 2283 | "current": true, 2284 | "hideEmpty": true, 2285 | "hideZero": true, 2286 | "max": false, 2287 | "min": false, 2288 | "rightSide": true, 2289 | "show": false, 2290 | "sideWidth": null, 2291 | "total": false, 2292 | "values": true 2293 | }, 2294 | "lines": true, 2295 | "linewidth": 3, 2296 | "links": [], 2297 | "nullPointMode": "connected", 2298 | "options": { 2299 | "alertThreshold": true 2300 | }, 2301 | "percentage": false, 2302 | "pluginVersion": "7.5.10", 2303 | "pointradius": 5, 2304 | "points": false, 2305 | "renderer": "flot", 2306 | "repeat": "Network", 2307 | "repeatDirection": "v", 2308 | "seriesOverrides": [ 2309 | { 2310 | "alias": "/Bits received/", 2311 | "color": "#56A64B" 2312 | }, 2313 | { 2314 | "alias": "/Bits sent/", 2315 | "color": "#8F3BB8", 2316 | "transform": "negative-Y" 2317 | } 2318 | ], 2319 | "spaceLength": 10, 2320 | "stack": false, 2321 | "steppedLine": false, 2322 | "targets": [ 2323 | { 2324 | "application": { 2325 | "filter": "$Network" 2326 | }, 2327 | "functions": [ 2328 | { 2329 | "def": { 2330 | "category": "Alias", 2331 | "defaultParams": [ 2332 | "/(.*)/", 2333 | "$1" 2334 | ], 2335 | "name": "replaceAlias", 2336 | "params": [ 2337 | { 2338 | "name": "regexp", 2339 | "type": "string" 2340 | }, 2341 | { 2342 | "name": "newAlias", 2343 | "type": "string" 2344 | } 2345 | ] 2346 | }, 2347 | "params": [ 2348 | "/Interface /", 2349 | "$`" 2350 | ], 2351 | "text": "replaceAlias(/Interface /, $`)" 2352 | } 2353 | ], 2354 | "group": { 2355 | "filter": "$Group" 2356 | }, 2357 | "host": { 2358 | "filter": "$Host" 2359 | }, 2360 | "item": { 2361 | "filter": "/Bits (received|sent)/" 2362 | }, 2363 | "options": { 2364 | "showDisabledItems": false, 2365 | "skipEmptyValues": false 2366 | }, 2367 | "proxy": { 2368 | "filter": "" 2369 | }, 2370 | "queryType": 0, 2371 | "refId": "A", 2372 | "resultFormat": "time_series", 2373 | "table": { 2374 | "skipEmptyValues": false 2375 | }, 2376 | "tags": { 2377 | "filter": "" 2378 | }, 2379 | "trigger": { 2380 | "filter": "" 2381 | }, 2382 | "triggers": { 2383 | "acknowledged": 2, 2384 | "count": true, 2385 | "minSeverity": 3 2386 | } 2387 | } 2388 | ], 2389 | "thresholds": [], 2390 | "timeFrom": null, 2391 | "timeRegions": [], 2392 | "timeShift": null, 2393 | "title": "$Network", 2394 | "tooltip": { 2395 | "shared": true, 2396 | "sort": 0, 2397 | "value_type": "individual" 2398 | }, 2399 | "type": "graph", 2400 | "xaxis": { 2401 | "buckets": null, 2402 | "mode": "time", 2403 | "name": null, 2404 | "show": true, 2405 | "values": [] 2406 | }, 2407 | "yaxes": [ 2408 | { 2409 | "decimals": null, 2410 | "format": "binBps", 2411 | "label": null, 2412 | "logBase": 1, 2413 | "max": null, 2414 | "min": null, 2415 | "show": true 2416 | }, 2417 | { 2418 | "format": "binBps", 2419 | "label": null, 2420 | "logBase": 1, 2421 | "max": null, 2422 | "min": null, 2423 | "show": true 2424 | } 2425 | ], 2426 | "yaxis": { 2427 | "align": false, 2428 | "alignLevel": null 2429 | } 2430 | }, 2431 | { 2432 | "cacheTimeout": null, 2433 | "datasource": "Zabbix", 2434 | "fieldConfig": { 2435 | "defaults": { 2436 | "color": { 2437 | "mode": "thresholds" 2438 | }, 2439 | "decimals": 0, 2440 | "mappings": [ 2441 | { 2442 | "id": 0, 2443 | "op": "=", 2444 | "text": "N/A", 2445 | "type": 1, 2446 | "value": "null" 2447 | } 2448 | ], 2449 | "thresholds": { 2450 | "mode": "absolute", 2451 | "steps": [ 2452 | { 2453 | "color": "green", 2454 | "value": null 2455 | } 2456 | ] 2457 | }, 2458 | "unit": "binBps" 2459 | }, 2460 | "overrides": [] 2461 | }, 2462 | "gridPos": { 2463 | "h": 7, 2464 | "w": 4, 2465 | "x": 20, 2466 | "y": 31 2467 | }, 2468 | "id": 21, 2469 | "interval": null, 2470 | "links": [], 2471 | "maxDataPoints": 100, 2472 | "options": { 2473 | "colorMode": "value", 2474 | "graphMode": "area", 2475 | "justifyMode": "auto", 2476 | "orientation": "horizontal", 2477 | "reduceOptions": { 2478 | "calcs": [ 2479 | "lastNotNull" 2480 | ], 2481 | "fields": "", 2482 | "values": false 2483 | }, 2484 | "text": {}, 2485 | "textMode": "value" 2486 | }, 2487 | "pluginVersion": "7.5.10", 2488 | "repeat": "Network", 2489 | "repeatDirection": "v", 2490 | "targets": [ 2491 | { 2492 | "application": { 2493 | "filter": "$Network" 2494 | }, 2495 | "functions": [], 2496 | "group": { 2497 | "filter": "$Group" 2498 | }, 2499 | "host": { 2500 | "filter": "$Host" 2501 | }, 2502 | "item": { 2503 | "filter": "/Bits sent/" 2504 | }, 2505 | "options": { 2506 | "showDisabledItems": false, 2507 | "skipEmptyValues": false 2508 | }, 2509 | "proxy": { 2510 | "filter": "" 2511 | }, 2512 | "queryType": 0, 2513 | "refId": "A", 2514 | "resultFormat": "time_series", 2515 | "table": { 2516 | "skipEmptyValues": false 2517 | }, 2518 | "tags": { 2519 | "filter": "" 2520 | }, 2521 | "trigger": { 2522 | "filter": "" 2523 | }, 2524 | "triggers": { 2525 | "acknowledged": 2, 2526 | "count": true, 2527 | "minSeverity": 3 2528 | } 2529 | } 2530 | ], 2531 | "title": "(OUT) $Network", 2532 | "type": "stat" 2533 | }, 2534 | { 2535 | "collapsed": false, 2536 | "datasource": "Zabbix", 2537 | "gridPos": { 2538 | "h": 1, 2539 | "w": 24, 2540 | "x": 0, 2541 | "y": 38 2542 | }, 2543 | "id": 29, 2544 | "panels": [], 2545 | "title": "Problems", 2546 | "type": "row" 2547 | }, 2548 | { 2549 | "ackEventColor": "rgb(56, 219, 156)", 2550 | "ackField": true, 2551 | "ageField": true, 2552 | "customLastChangeFormat": false, 2553 | "datasource": "Zabbix", 2554 | "descriptionAtNewLine": false, 2555 | "descriptionField": true, 2556 | "fieldConfig": { 2557 | "defaults": {}, 2558 | "overrides": [] 2559 | }, 2560 | "fontSize": "120%", 2561 | "gridPos": { 2562 | "h": 12, 2563 | "w": 24, 2564 | "x": 0, 2565 | "y": 39 2566 | }, 2567 | "highlightBackground": true, 2568 | "highlightNewEvents": true, 2569 | "highlightNewerThan": "1h", 2570 | "hostField": false, 2571 | "hostGroups": false, 2572 | "hostProxy": false, 2573 | "hostTechNameField": false, 2574 | "id": 17, 2575 | "lastChangeFormat": "", 2576 | "layout": "table", 2577 | "limit": 100, 2578 | "links": [], 2579 | "markAckEvents": true, 2580 | "okEventColor": "rgb(56, 189, 113)", 2581 | "pageSize": 10, 2582 | "problemTimeline": true, 2583 | "resizedColumns": [ 2584 | { 2585 | "id": "lastchange", 2586 | "value": 187 2587 | }, 2588 | { 2589 | "id": "age", 2590 | "value": 125 2591 | }, 2592 | { 2593 | "id": "ack", 2594 | "value": 207 2595 | }, 2596 | { 2597 | "id": "description", 2598 | "value": 899 2599 | } 2600 | ], 2601 | "schemaVersion": 8, 2602 | "severityField": true, 2603 | "showTags": false, 2604 | "sortProblems": "lastchange", 2605 | "statusField": false, 2606 | "statusIcon": true, 2607 | "targets": [ 2608 | { 2609 | "application": { 2610 | "filter": "/.*/" 2611 | }, 2612 | "functions": [], 2613 | "group": { 2614 | "filter": "/.*/" 2615 | }, 2616 | "host": { 2617 | "filter": "/.*/" 2618 | }, 2619 | "item": { 2620 | "filter": "" 2621 | }, 2622 | "options": { 2623 | "acknowledged": 2, 2624 | "disableDataAlignment": false, 2625 | "hostProxy": false, 2626 | "hostsInMaintenance": false, 2627 | "limit": 1001, 2628 | "minSeverity": 0, 2629 | "severities": [ 2630 | 0, 2631 | 1, 2632 | 2, 2633 | 3, 2634 | 4, 2635 | 5 2636 | ], 2637 | "showDisabledItems": false, 2638 | "skipEmptyValues": false, 2639 | "sortProblems": "default", 2640 | "useZabbixValueMapping": false 2641 | }, 2642 | "proxy": { 2643 | "filter": "" 2644 | }, 2645 | "queryType": 5, 2646 | "refId": "A", 2647 | "resultFormat": "time_series", 2648 | "showProblems": "problems", 2649 | "table": { 2650 | "skipEmptyValues": false 2651 | }, 2652 | "tags": { 2653 | "filter": "" 2654 | }, 2655 | "trigger": { 2656 | "filter": "" 2657 | }, 2658 | "triggers": { 2659 | "acknowledged": 2, 2660 | "count": true, 2661 | "minSeverity": 3 2662 | } 2663 | } 2664 | ], 2665 | "title": "Problems", 2666 | "triggerSeverity": [ 2667 | { 2668 | "color": "rgb(108, 108, 108)", 2669 | "priority": 0, 2670 | "severity": "Not classified", 2671 | "show": true 2672 | }, 2673 | { 2674 | "color": "rgb(120, 158, 183)", 2675 | "priority": 1, 2676 | "severity": "Information", 2677 | "show": true 2678 | }, 2679 | { 2680 | "color": "rgb(175, 180, 36)", 2681 | "priority": 2, 2682 | "severity": "Warning", 2683 | "show": true 2684 | }, 2685 | { 2686 | "color": "rgb(255, 137, 30)", 2687 | "priority": 3, 2688 | "severity": "Average", 2689 | "show": true 2690 | }, 2691 | { 2692 | "color": "rgb(255, 101, 72)", 2693 | "priority": 4, 2694 | "severity": "High", 2695 | "show": true 2696 | }, 2697 | { 2698 | "color": "rgb(215, 0, 0)", 2699 | "priority": 5, 2700 | "severity": "Disaster", 2701 | "show": true 2702 | } 2703 | ], 2704 | "type": "alexanderzobnin-zabbix-triggers-panel" 2705 | } 2706 | ], 2707 | "refresh": "1m", 2708 | "schemaVersion": 27, 2709 | "style": "dark", 2710 | "tags": [ 2711 | "4linux ", 2712 | "zabbix 5.0" 2713 | ], 2714 | "templating": { 2715 | "list": [ 2716 | { 2717 | "allValue": null, 2718 | "current": { 2719 | "selected": false, 2720 | "text": "All", 2721 | "value": "$__all" 2722 | }, 2723 | "datasource": "Zabbix", 2724 | "definition": "", 2725 | "description": null, 2726 | "error": null, 2727 | "hide": 0, 2728 | "includeAll": true, 2729 | "label": null, 2730 | "multi": true, 2731 | "name": "Group", 2732 | "options": [], 2733 | "query": "*", 2734 | "refresh": 1, 2735 | "regex": "/^(?!Discovered)(?!Template)(?!Zabbix)/", 2736 | "skipUrlSync": false, 2737 | "sort": 1, 2738 | "tagValuesQuery": "", 2739 | "tags": [], 2740 | "tagsQuery": "", 2741 | "type": "query", 2742 | "useTags": false 2743 | }, 2744 | { 2745 | "allValue": null, 2746 | "current": { 2747 | "selected": false, 2748 | "text": "centos8-hands-on", 2749 | "value": "centos8-hands-on" 2750 | }, 2751 | "datasource": "Zabbix", 2752 | "definition": "", 2753 | "description": null, 2754 | "error": null, 2755 | "hide": 0, 2756 | "includeAll": false, 2757 | "label": null, 2758 | "multi": false, 2759 | "name": "Host", 2760 | "options": [], 2761 | "query": "$Group.*", 2762 | "refresh": 1, 2763 | "regex": "", 2764 | "skipUrlSync": false, 2765 | "sort": 1, 2766 | "tagValuesQuery": "", 2767 | "tags": [], 2768 | "tagsQuery": "", 2769 | "type": "query", 2770 | "useTags": false 2771 | }, 2772 | { 2773 | "allValue": "All", 2774 | "current": { 2775 | "selected": false, 2776 | "text": "All", 2777 | "value": "$__all" 2778 | }, 2779 | "datasource": "Zabbix", 2780 | "definition": "Zabbix - application", 2781 | "description": null, 2782 | "error": {}, 2783 | "hide": 2, 2784 | "includeAll": true, 2785 | "label": null, 2786 | "multi": false, 2787 | "name": "Disk", 2788 | "options": [], 2789 | "query": { 2790 | "application": "/Disk/", 2791 | "group": "$Group", 2792 | "host": "$Host", 2793 | "item": "/.*/", 2794 | "queryType": "application" 2795 | }, 2796 | "refresh": 1, 2797 | "regex": "", 2798 | "skipUrlSync": false, 2799 | "sort": 1, 2800 | "tagValuesQuery": "", 2801 | "tags": [], 2802 | "tagsQuery": "", 2803 | "type": "query", 2804 | "useTags": false 2805 | }, 2806 | { 2807 | "allValue": "All", 2808 | "current": { 2809 | "selected": false, 2810 | "text": "All", 2811 | "value": "$__all" 2812 | }, 2813 | "datasource": "Zabbix", 2814 | "definition": "Zabbix - application", 2815 | "description": null, 2816 | "error": {}, 2817 | "hide": 2, 2818 | "includeAll": true, 2819 | "label": null, 2820 | "multi": false, 2821 | "name": "Filesystem", 2822 | "options": [], 2823 | "query": { 2824 | "application": "/Filesystem\\s/", 2825 | "group": "$Group", 2826 | "host": "$Host", 2827 | "item": "/.*/", 2828 | "queryType": "application" 2829 | }, 2830 | "refresh": 1, 2831 | "regex": "", 2832 | "skipUrlSync": false, 2833 | "sort": 1, 2834 | "tagValuesQuery": "", 2835 | "tags": [], 2836 | "tagsQuery": "", 2837 | "type": "query", 2838 | "useTags": false 2839 | }, 2840 | { 2841 | "allValue": "All", 2842 | "current": { 2843 | "selected": false, 2844 | "text": "All", 2845 | "value": "$__all" 2846 | }, 2847 | "datasource": "Zabbix", 2848 | "definition": "Zabbix - application", 2849 | "description": null, 2850 | "error": {}, 2851 | "hide": 2, 2852 | "includeAll": true, 2853 | "label": null, 2854 | "multi": false, 2855 | "name": "Network", 2856 | "options": [], 2857 | "query": { 2858 | "application": "/Interface\\s/", 2859 | "group": "$Group", 2860 | "host": "$Host", 2861 | "item": "/.*/", 2862 | "queryType": "application" 2863 | }, 2864 | "refresh": 1, 2865 | "regex": "", 2866 | "skipUrlSync": false, 2867 | "sort": 1, 2868 | "tagValuesQuery": "", 2869 | "tags": [], 2870 | "tagsQuery": "", 2871 | "type": "query", 2872 | "useTags": false 2873 | } 2874 | ] 2875 | }, 2876 | "time": { 2877 | "from": "now-24h", 2878 | "to": "now" 2879 | }, 2880 | "timepicker": { 2881 | "refresh_intervals": [ 2882 | "5s", 2883 | "10s", 2884 | "30s", 2885 | "1m", 2886 | "5m", 2887 | "15m", 2888 | "30m", 2889 | "1h", 2890 | "2h", 2891 | "1d" 2892 | ], 2893 | "time_options": [ 2894 | "5m", 2895 | "15m", 2896 | "1h", 2897 | "6h", 2898 | "12h", 2899 | "24h", 2900 | "2d", 2901 | "7d", 2902 | "30d" 2903 | ] 2904 | }, 2905 | "timezone": "", 2906 | "title": "Zabbix - Full Server Status", 2907 | "uid": "41URQF7mz", 2908 | "version": 2 2909 | } 2910 | -------------------------------------------------------------------------------- /templates/dashboard_zabbix_server2.sjon: -------------------------------------------------------------------------------- 1 | { 2 | "annotations": { 3 | "list": [ 4 | { 5 | "builtIn": 1, 6 | "datasource": "-- Grafana --", 7 | "enable": true, 8 | "hide": true, 9 | "iconColor": "rgba(0, 211, 255, 1)", 10 | "name": "Annotations & Alerts", 11 | "type": "dashboard" 12 | } 13 | ] 14 | }, 15 | "description": "Linux - Zabbix Server - PostgreSQL", 16 | "editable": true, 17 | "gnetId": 8955, 18 | "graphTooltip": 0, 19 | "id": 3, 20 | "iteration": 1629938679491, 21 | "links": [ 22 | { 23 | "icon": "external link", 24 | "tags": [], 25 | "targetBlank": true, 26 | "title": "Zabbix Doc", 27 | "type": "link", 28 | "url": "https://www.zabbix.com/documentation" 29 | }, 30 | { 31 | "icon": "external link", 32 | "tags": [], 33 | "title": "Grafana", 34 | "tooltip": "", 35 | "type": "link", 36 | "url": "https://grafana.com/" 37 | } 38 | ], 39 | "panels": [ 40 | { 41 | "collapsed": false, 42 | "datasource": null, 43 | "gridPos": { 44 | "h": 1, 45 | "w": 24, 46 | "x": 0, 47 | "y": 0 48 | }, 49 | "id": 33, 50 | "panels": [], 51 | "repeat": "host", 52 | "scopedVars": { 53 | "host": { 54 | "selected": true, 55 | "text": "centos8-hands-on", 56 | "value": "centos8-hands-on" 57 | } 58 | }, 59 | "title": "System Overview of $host", 60 | "type": "row" 61 | }, 62 | { 63 | "datasource": null, 64 | "fieldConfig": { 65 | "defaults": {}, 66 | "overrides": [] 67 | }, 68 | "gridPos": { 69 | "h": 5, 70 | "w": 4, 71 | "x": 0, 72 | "y": 1 73 | }, 74 | "height": "", 75 | "id": 20, 76 | "links": [], 77 | "options": { 78 | "content": "
\n

\"\"

\n

4Linux

\n

$host

", 79 | "mode": "html" 80 | }, 81 | "pluginVersion": "7.5.10", 82 | "scopedVars": { 83 | "host": { 84 | "selected": true, 85 | "text": "centos8-hands-on", 86 | "value": "centos8-hands-on" 87 | } 88 | }, 89 | "type": "text" 90 | }, 91 | { 92 | "cacheTimeout": null, 93 | "datasource": "Zabbix", 94 | "fieldConfig": { 95 | "defaults": { 96 | "color": { 97 | "mode": "thresholds" 98 | }, 99 | "decimals": 2, 100 | "mappings": [], 101 | "thresholds": { 102 | "mode": "absolute", 103 | "steps": [ 104 | { 105 | "color": "dark-green", 106 | "value": null 107 | } 108 | ] 109 | }, 110 | "unit": "dtdurations" 111 | }, 112 | "overrides": [] 113 | }, 114 | "gridPos": { 115 | "h": 5, 116 | "w": 5, 117 | "x": 4, 118 | "y": 1 119 | }, 120 | "id": 6, 121 | "interval": null, 122 | "links": [], 123 | "maxDataPoints": 100, 124 | "options": { 125 | "colorMode": "value", 126 | "graphMode": "none", 127 | "justifyMode": "auto", 128 | "orientation": "horizontal", 129 | "reduceOptions": { 130 | "calcs": [ 131 | "lastNotNull" 132 | ], 133 | "fields": "", 134 | "values": false 135 | }, 136 | "text": {}, 137 | "textMode": "auto" 138 | }, 139 | "pluginVersion": "7.5.10", 140 | "scopedVars": { 141 | "host": { 142 | "selected": true, 143 | "text": "centos8-hands-on", 144 | "value": "centos8-hands-on" 145 | } 146 | }, 147 | "targets": [ 148 | { 149 | "application": { 150 | "filter": "" 151 | }, 152 | "functions": [], 153 | "group": { 154 | "filter": "$group" 155 | }, 156 | "host": { 157 | "filter": "$host" 158 | }, 159 | "item": { 160 | "filter": "System uptime" 161 | }, 162 | "options": { 163 | "showDisabledItems": false, 164 | "skipEmptyValues": false 165 | }, 166 | "proxy": { 167 | "filter": "" 168 | }, 169 | "queryType": 0, 170 | "refId": "A", 171 | "resultFormat": "time_series", 172 | "table": { 173 | "skipEmptyValues": false 174 | }, 175 | "tags": { 176 | "filter": "" 177 | }, 178 | "trigger": { 179 | "filter": "" 180 | }, 181 | "triggers": { 182 | "acknowledged": 2, 183 | "count": true, 184 | "minSeverity": 3 185 | } 186 | } 187 | ], 188 | "title": "System uptime", 189 | "type": "stat" 190 | }, 191 | { 192 | "cacheTimeout": null, 193 | "datasource": "Zabbix", 194 | "description": "", 195 | "fieldConfig": { 196 | "defaults": { 197 | "color": { 198 | "mode": "thresholds" 199 | }, 200 | "mappings": [ 201 | { 202 | "id": 0, 203 | "op": "=", 204 | "text": "UP", 205 | "type": 1, 206 | "value": "1" 207 | }, 208 | { 209 | "id": 1, 210 | "op": "=", 211 | "text": "DOWN", 212 | "type": 1, 213 | "value": "0" 214 | } 215 | ], 216 | "thresholds": { 217 | "mode": "absolute", 218 | "steps": [ 219 | { 220 | "color": "rgba(245, 54, 54, 0.9)", 221 | "value": null 222 | }, 223 | { 224 | "color": "dark-green", 225 | "value": 1 226 | } 227 | ] 228 | }, 229 | "unit": "none" 230 | }, 231 | "overrides": [] 232 | }, 233 | "gridPos": { 234 | "h": 5, 235 | "w": 5, 236 | "x": 9, 237 | "y": 1 238 | }, 239 | "id": 18, 240 | "interval": null, 241 | "links": [], 242 | "maxDataPoints": 100, 243 | "options": { 244 | "colorMode": "value", 245 | "graphMode": "none", 246 | "justifyMode": "auto", 247 | "orientation": "horizontal", 248 | "reduceOptions": { 249 | "calcs": [ 250 | "lastNotNull" 251 | ], 252 | "fields": "", 253 | "values": false 254 | }, 255 | "text": {}, 256 | "textMode": "auto" 257 | }, 258 | "pluginVersion": "7.5.10", 259 | "scopedVars": { 260 | "host": { 261 | "selected": true, 262 | "text": "centos8-hands-on", 263 | "value": "centos8-hands-on" 264 | } 265 | }, 266 | "targets": [ 267 | { 268 | "application": { 269 | "filter": "" 270 | }, 271 | "functions": [], 272 | "group": { 273 | "filter": "$group" 274 | }, 275 | "host": { 276 | "filter": "$host" 277 | }, 278 | "item": { 279 | "filter": "Zabbix agent availability" 280 | }, 281 | "options": { 282 | "showDisabledItems": false, 283 | "skipEmptyValues": false 284 | }, 285 | "proxy": { 286 | "filter": "" 287 | }, 288 | "queryType": 0, 289 | "refId": "A", 290 | "resultFormat": "time_series", 291 | "table": { 292 | "skipEmptyValues": false 293 | }, 294 | "tags": { 295 | "filter": "" 296 | }, 297 | "trigger": { 298 | "filter": "" 299 | }, 300 | "triggers": { 301 | "acknowledged": 2, 302 | "count": true, 303 | "minSeverity": 3 304 | } 305 | } 306 | ], 307 | "title": "Zabbix Agent", 308 | "type": "stat" 309 | }, 310 | { 311 | "cacheTimeout": null, 312 | "datasource": "Zabbix", 313 | "description": "", 314 | "fieldConfig": { 315 | "defaults": { 316 | "color": { 317 | "mode": "thresholds" 318 | }, 319 | "mappings": [], 320 | "thresholds": { 321 | "mode": "absolute", 322 | "steps": [ 323 | { 324 | "color": "dark-green", 325 | "value": null 326 | }, 327 | { 328 | "color": "red", 329 | "value": 80 330 | } 331 | ] 332 | }, 333 | "unit": "none" 334 | }, 335 | "overrides": [] 336 | }, 337 | "gridPos": { 338 | "h": 5, 339 | "w": 5, 340 | "x": 14, 341 | "y": 1 342 | }, 343 | "id": 58, 344 | "interval": null, 345 | "links": [], 346 | "maxDataPoints": 100, 347 | "options": { 348 | "colorMode": "value", 349 | "graphMode": "none", 350 | "justifyMode": "auto", 351 | "orientation": "horizontal", 352 | "reduceOptions": { 353 | "calcs": [ 354 | "lastNotNull" 355 | ], 356 | "fields": "", 357 | "values": false 358 | }, 359 | "text": {}, 360 | "textMode": "auto" 361 | }, 362 | "pluginVersion": "7.5.10", 363 | "scopedVars": { 364 | "host": { 365 | "selected": true, 366 | "text": "centos8-hands-on", 367 | "value": "centos8-hands-on" 368 | } 369 | }, 370 | "targets": [ 371 | { 372 | "application": { 373 | "filter": "" 374 | }, 375 | "functions": [], 376 | "group": { 377 | "filter": "$group" 378 | }, 379 | "host": { 380 | "filter": "$host" 381 | }, 382 | "item": { 383 | "filter": "Total number of hosts monitored" 384 | }, 385 | "options": { 386 | "showDisabledItems": false, 387 | "skipEmptyValues": false 388 | }, 389 | "proxy": { 390 | "filter": "" 391 | }, 392 | "queryType": 0, 393 | "refId": "A", 394 | "resultFormat": "time_series", 395 | "table": { 396 | "skipEmptyValues": false 397 | }, 398 | "tags": { 399 | "filter": "" 400 | }, 401 | "trigger": { 402 | "filter": "" 403 | }, 404 | "triggers": { 405 | "acknowledged": 2, 406 | "count": true, 407 | "minSeverity": 3 408 | } 409 | } 410 | ], 411 | "title": "Total number of hosts monitored", 412 | "type": "stat" 413 | }, 414 | { 415 | "cacheTimeout": null, 416 | "datasource": "Zabbix", 417 | "description": "", 418 | "fieldConfig": { 419 | "defaults": { 420 | "color": { 421 | "mode": "thresholds" 422 | }, 423 | "mappings": [], 424 | "thresholds": { 425 | "mode": "absolute", 426 | "steps": [ 427 | { 428 | "color": "dark-green", 429 | "value": null 430 | } 431 | ] 432 | }, 433 | "unit": "none" 434 | }, 435 | "overrides": [] 436 | }, 437 | "gridPos": { 438 | "h": 5, 439 | "w": 5, 440 | "x": 19, 441 | "y": 1 442 | }, 443 | "id": 59, 444 | "interval": null, 445 | "links": [], 446 | "maxDataPoints": 100, 447 | "options": { 448 | "colorMode": "value", 449 | "graphMode": "none", 450 | "justifyMode": "auto", 451 | "orientation": "horizontal", 452 | "reduceOptions": { 453 | "calcs": [ 454 | "lastNotNull" 455 | ], 456 | "fields": "", 457 | "values": false 458 | }, 459 | "text": {}, 460 | "textMode": "auto" 461 | }, 462 | "pluginVersion": "7.5.10", 463 | "scopedVars": { 464 | "host": { 465 | "selected": true, 466 | "text": "centos8-hands-on", 467 | "value": "centos8-hands-on" 468 | } 469 | }, 470 | "targets": [ 471 | { 472 | "application": { 473 | "filter": "" 474 | }, 475 | "functions": [], 476 | "group": { 477 | "filter": "$group" 478 | }, 479 | "host": { 480 | "filter": "$host" 481 | }, 482 | "item": { 483 | "filter": "Total number of items monitored" 484 | }, 485 | "options": { 486 | "showDisabledItems": false, 487 | "skipEmptyValues": false 488 | }, 489 | "proxy": { 490 | "filter": "" 491 | }, 492 | "queryType": 0, 493 | "refId": "A", 494 | "resultFormat": "time_series", 495 | "table": { 496 | "skipEmptyValues": false 497 | }, 498 | "tags": { 499 | "filter": "" 500 | }, 501 | "trigger": { 502 | "filter": "" 503 | }, 504 | "triggers": { 505 | "acknowledged": 2, 506 | "count": true, 507 | "minSeverity": 3 508 | } 509 | } 510 | ], 511 | "title": "Total number of items monitored", 512 | "type": "stat" 513 | }, 514 | { 515 | "cacheTimeout": null, 516 | "datasource": "Zabbix", 517 | "description": "", 518 | "fieldConfig": { 519 | "defaults": { 520 | "color": { 521 | "mode": "thresholds" 522 | }, 523 | "mappings": [], 524 | "thresholds": { 525 | "mode": "absolute", 526 | "steps": [ 527 | { 528 | "color": "dark-green", 529 | "value": null 530 | } 531 | ] 532 | }, 533 | "unit": "none" 534 | }, 535 | "overrides": [] 536 | }, 537 | "gridPos": { 538 | "h": 5, 539 | "w": 4, 540 | "x": 0, 541 | "y": 6 542 | }, 543 | "id": 22, 544 | "interval": null, 545 | "links": [], 546 | "maxDataPoints": 100, 547 | "options": { 548 | "colorMode": "value", 549 | "graphMode": "none", 550 | "justifyMode": "auto", 551 | "orientation": "horizontal", 552 | "reduceOptions": { 553 | "calcs": [ 554 | "lastNotNull" 555 | ], 556 | "fields": "", 557 | "values": false 558 | }, 559 | "text": {}, 560 | "textMode": "auto" 561 | }, 562 | "pluginVersion": "7.5.10", 563 | "scopedVars": { 564 | "host": { 565 | "selected": true, 566 | "text": "centos8-hands-on", 567 | "value": "centos8-hands-on" 568 | } 569 | }, 570 | "targets": [ 571 | { 572 | "application": { 573 | "filter": "General" 574 | }, 575 | "functions": [], 576 | "group": { 577 | "filter": "$group" 578 | }, 579 | "host": { 580 | "filter": "$host" 581 | }, 582 | "item": { 583 | "filter": "Number of logged in users" 584 | }, 585 | "options": { 586 | "showDisabledItems": false, 587 | "skipEmptyValues": false 588 | }, 589 | "proxy": { 590 | "filter": "" 591 | }, 592 | "queryType": 0, 593 | "refId": "A", 594 | "resultFormat": "time_series", 595 | "table": { 596 | "skipEmptyValues": false 597 | }, 598 | "tags": { 599 | "filter": "" 600 | }, 601 | "trigger": { 602 | "filter": "" 603 | }, 604 | "triggers": { 605 | "acknowledged": 2, 606 | "count": true, 607 | "minSeverity": 3 608 | } 609 | } 610 | ], 611 | "title": "System login users", 612 | "type": "stat" 613 | }, 614 | { 615 | "cacheTimeout": null, 616 | "datasource": "Zabbix", 617 | "description": "", 618 | "fieldConfig": { 619 | "defaults": { 620 | "color": { 621 | "mode": "thresholds" 622 | }, 623 | "mappings": [], 624 | "thresholds": { 625 | "mode": "absolute", 626 | "steps": [ 627 | { 628 | "color": "dark-green", 629 | "value": null 630 | } 631 | ] 632 | }, 633 | "unit": "none" 634 | }, 635 | "overrides": [] 636 | }, 637 | "gridPos": { 638 | "h": 5, 639 | "w": 5, 640 | "x": 4, 641 | "y": 6 642 | }, 643 | "id": 23, 644 | "interval": null, 645 | "links": [], 646 | "maxDataPoints": 100, 647 | "options": { 648 | "colorMode": "value", 649 | "graphMode": "area", 650 | "justifyMode": "auto", 651 | "orientation": "horizontal", 652 | "reduceOptions": { 653 | "calcs": [ 654 | "lastNotNull" 655 | ], 656 | "fields": "", 657 | "values": false 658 | }, 659 | "text": {}, 660 | "textMode": "auto" 661 | }, 662 | "pluginVersion": "7.5.10", 663 | "scopedVars": { 664 | "host": { 665 | "selected": true, 666 | "text": "centos8-hands-on", 667 | "value": "centos8-hands-on" 668 | } 669 | }, 670 | "targets": [ 671 | { 672 | "application": { 673 | "filter": "" 674 | }, 675 | "functions": [], 676 | "group": { 677 | "filter": "$group" 678 | }, 679 | "host": { 680 | "filter": "$host" 681 | }, 682 | "item": { 683 | "filter": "Number of processes" 684 | }, 685 | "options": { 686 | "showDisabledItems": false, 687 | "skipEmptyValues": false 688 | }, 689 | "proxy": { 690 | "filter": "" 691 | }, 692 | "queryType": 0, 693 | "refId": "A", 694 | "resultFormat": "time_series", 695 | "table": { 696 | "skipEmptyValues": false 697 | }, 698 | "tags": { 699 | "filter": "" 700 | }, 701 | "trigger": { 702 | "filter": "" 703 | }, 704 | "triggers": { 705 | "acknowledged": 2, 706 | "count": true, 707 | "minSeverity": 3 708 | } 709 | } 710 | ], 711 | "title": "Running process", 712 | "type": "stat" 713 | }, 714 | { 715 | "cacheTimeout": null, 716 | "datasource": "Zabbix", 717 | "description": "", 718 | "fieldConfig": { 719 | "defaults": { 720 | "color": { 721 | "mode": "thresholds" 722 | }, 723 | "decimals": 4, 724 | "mappings": [ 725 | { 726 | "id": 0, 727 | "op": "=", 728 | "text": "N/A", 729 | "type": 1, 730 | "value": "null" 731 | } 732 | ], 733 | "thresholds": { 734 | "mode": "absolute", 735 | "steps": [ 736 | { 737 | "color": "dark-green", 738 | "value": null 739 | } 740 | ] 741 | }, 742 | "unit": "none" 743 | }, 744 | "overrides": [] 745 | }, 746 | "gridPos": { 747 | "h": 5, 748 | "w": 5, 749 | "x": 9, 750 | "y": 6 751 | }, 752 | "id": 11, 753 | "interval": null, 754 | "links": [], 755 | "maxDataPoints": 100, 756 | "options": { 757 | "colorMode": "value", 758 | "graphMode": "area", 759 | "justifyMode": "auto", 760 | "orientation": "horizontal", 761 | "reduceOptions": { 762 | "calcs": [ 763 | "lastNotNull" 764 | ], 765 | "fields": "", 766 | "values": false 767 | }, 768 | "text": {}, 769 | "textMode": "auto" 770 | }, 771 | "pluginVersion": "7.5.10", 772 | "scopedVars": { 773 | "host": { 774 | "selected": true, 775 | "text": "centos8-hands-on", 776 | "value": "centos8-hands-on" 777 | } 778 | }, 779 | "targets": [ 780 | { 781 | "application": { 782 | "filter": "" 783 | }, 784 | "functions": [], 785 | "group": { 786 | "filter": "$group" 787 | }, 788 | "host": { 789 | "filter": "$host" 790 | }, 791 | "item": { 792 | "filter": "Number of processed values per second" 793 | }, 794 | "options": { 795 | "showDisabledItems": false, 796 | "skipEmptyValues": false 797 | }, 798 | "proxy": { 799 | "filter": "" 800 | }, 801 | "queryType": 0, 802 | "refId": "A", 803 | "resultFormat": "time_series", 804 | "table": { 805 | "skipEmptyValues": false 806 | }, 807 | "tags": { 808 | "filter": "" 809 | }, 810 | "trigger": { 811 | "filter": "" 812 | }, 813 | "triggers": { 814 | "acknowledged": 2, 815 | "count": true, 816 | "minSeverity": 3 817 | } 818 | } 819 | ], 820 | "title": "Number of processed values per second", 821 | "type": "stat" 822 | }, 823 | { 824 | "cacheTimeout": null, 825 | "datasource": "Zabbix", 826 | "description": "", 827 | "fieldConfig": { 828 | "defaults": { 829 | "color": { 830 | "mode": "thresholds" 831 | }, 832 | "mappings": [], 833 | "thresholds": { 834 | "mode": "absolute", 835 | "steps": [ 836 | { 837 | "color": "dark-green", 838 | "value": null 839 | } 840 | ] 841 | }, 842 | "unit": "none" 843 | }, 844 | "overrides": [] 845 | }, 846 | "gridPos": { 847 | "h": 5, 848 | "w": 5, 849 | "x": 14, 850 | "y": 6 851 | }, 852 | "id": 25, 853 | "interval": null, 854 | "links": [], 855 | "maxDataPoints": 100, 856 | "options": { 857 | "colorMode": "value", 858 | "graphMode": "area", 859 | "justifyMode": "auto", 860 | "orientation": "horizontal", 861 | "reduceOptions": { 862 | "calcs": [ 863 | "lastNotNull" 864 | ], 865 | "fields": "", 866 | "values": false 867 | }, 868 | "text": {}, 869 | "textMode": "auto" 870 | }, 871 | "pluginVersion": "7.5.10", 872 | "scopedVars": { 873 | "host": { 874 | "selected": true, 875 | "text": "centos8-hands-on", 876 | "value": "centos8-hands-on" 877 | } 878 | }, 879 | "targets": [ 880 | { 881 | "application": { 882 | "filter": "" 883 | }, 884 | "functions": [], 885 | "group": { 886 | "filter": "$group" 887 | }, 888 | "host": { 889 | "filter": "$host" 890 | }, 891 | "item": { 892 | "filter": "Zabbix value cache hits" 893 | }, 894 | "options": { 895 | "showDisabledItems": false, 896 | "skipEmptyValues": false 897 | }, 898 | "proxy": { 899 | "filter": "" 900 | }, 901 | "queryType": 0, 902 | "refId": "A", 903 | "resultFormat": "time_series", 904 | "table": { 905 | "skipEmptyValues": false 906 | }, 907 | "tags": { 908 | "filter": "" 909 | }, 910 | "trigger": { 911 | "filter": "" 912 | }, 913 | "triggers": { 914 | "acknowledged": 2, 915 | "count": true, 916 | "minSeverity": 3 917 | } 918 | } 919 | ], 920 | "title": "Value cache hits", 921 | "type": "stat" 922 | }, 923 | { 924 | "cacheTimeout": null, 925 | "datasource": "Zabbix", 926 | "fieldConfig": { 927 | "defaults": { 928 | "color": { 929 | "mode": "thresholds" 930 | }, 931 | "decimals": 2, 932 | "mappings": [ 933 | { 934 | "id": 0, 935 | "op": "=", 936 | "text": "N/A", 937 | "type": 1, 938 | "value": "null" 939 | } 940 | ], 941 | "max": 100, 942 | "min": 0, 943 | "thresholds": { 944 | "mode": "absolute", 945 | "steps": [ 946 | { 947 | "color": "dark-green", 948 | "value": null 949 | }, 950 | { 951 | "color": "rgba(237, 129, 40, 0.89)", 952 | "value": 80 953 | }, 954 | { 955 | "color": "rgba(245, 54, 54, 0.9)", 956 | "value": 90 957 | } 958 | ] 959 | }, 960 | "unit": "percent" 961 | }, 962 | "overrides": [] 963 | }, 964 | "gridPos": { 965 | "h": 5, 966 | "w": 5, 967 | "x": 19, 968 | "y": 6 969 | }, 970 | "id": 8, 971 | "interval": null, 972 | "links": [], 973 | "maxDataPoints": 100, 974 | "options": { 975 | "orientation": "horizontal", 976 | "reduceOptions": { 977 | "calcs": [ 978 | "lastNotNull" 979 | ], 980 | "fields": "", 981 | "values": false 982 | }, 983 | "showThresholdLabels": false, 984 | "showThresholdMarkers": true, 985 | "text": {} 986 | }, 987 | "pluginVersion": "7.5.10", 988 | "scopedVars": { 989 | "host": { 990 | "selected": true, 991 | "text": "centos8-hands-on", 992 | "value": "centos8-hands-on" 993 | } 994 | }, 995 | "targets": [ 996 | { 997 | "application": { 998 | "filter": "" 999 | }, 1000 | "functions": [], 1001 | "group": { 1002 | "filter": "$group" 1003 | }, 1004 | "host": { 1005 | "filter": "$host" 1006 | }, 1007 | "item": { 1008 | "filter": "CPU iowait time" 1009 | }, 1010 | "options": { 1011 | "showDisabledItems": true, 1012 | "skipEmptyValues": false 1013 | }, 1014 | "proxy": { 1015 | "filter": "" 1016 | }, 1017 | "queryType": 0, 1018 | "refId": "A", 1019 | "resultFormat": "time_series", 1020 | "table": { 1021 | "skipEmptyValues": false 1022 | }, 1023 | "tags": { 1024 | "filter": "" 1025 | }, 1026 | "trigger": { 1027 | "filter": "" 1028 | }, 1029 | "triggers": { 1030 | "acknowledged": 2, 1031 | "count": true, 1032 | "minSeverity": 3 1033 | } 1034 | } 1035 | ], 1036 | "timeFrom": null, 1037 | "timeShift": null, 1038 | "title": "CPU iowait time", 1039 | "type": "gauge" 1040 | }, 1041 | { 1042 | "collapsed": false, 1043 | "datasource": null, 1044 | "gridPos": { 1045 | "h": 1, 1046 | "w": 24, 1047 | "x": 0, 1048 | "y": 11 1049 | }, 1050 | "id": 57, 1051 | "panels": [], 1052 | "title": "Triggers Alert", 1053 | "type": "row" 1054 | }, 1055 | { 1056 | "ackEventColor": "rgb(56, 219, 156)", 1057 | "ackField": false, 1058 | "ageField": true, 1059 | "customLastChangeFormat": false, 1060 | "datasource": "Zabbix", 1061 | "descriptionAtNewLine": false, 1062 | "descriptionField": true, 1063 | "fieldConfig": { 1064 | "defaults": {}, 1065 | "overrides": [] 1066 | }, 1067 | "fontSize": "100%", 1068 | "gridPos": { 1069 | "h": 7, 1070 | "w": 24, 1071 | "x": 0, 1072 | "y": 12 1073 | }, 1074 | "highlightBackground": false, 1075 | "highlightNewEvents": true, 1076 | "highlightNewerThan": "1h", 1077 | "hostField": true, 1078 | "hostGroups": false, 1079 | "hostProxy": false, 1080 | "hostTechNameField": false, 1081 | "id": 39, 1082 | "lastChangeFormat": "", 1083 | "layout": "table", 1084 | "limit": 100, 1085 | "links": [], 1086 | "markAckEvents": false, 1087 | "okEventColor": "rgb(56, 189, 113)", 1088 | "pageSize": 10, 1089 | "problemTimeline": true, 1090 | "resizedColumns": [], 1091 | "schemaVersion": 8, 1092 | "severityField": true, 1093 | "showTags": false, 1094 | "sortProblems": "lastchange", 1095 | "statusField": true, 1096 | "statusIcon": false, 1097 | "targets": [ 1098 | { 1099 | "application": { 1100 | "filter": "" 1101 | }, 1102 | "functions": [], 1103 | "group": { 1104 | "filter": "" 1105 | }, 1106 | "host": { 1107 | "filter": "" 1108 | }, 1109 | "item": { 1110 | "filter": "" 1111 | }, 1112 | "options": { 1113 | "acknowledged": 2, 1114 | "hostProxy": false, 1115 | "hostsInMaintenance": true, 1116 | "limit": 1001, 1117 | "minSeverity": 0, 1118 | "severities": [ 1119 | 2, 1120 | 3, 1121 | 4, 1122 | 5 1123 | ], 1124 | "showDisabledItems": false, 1125 | "skipEmptyValues": false, 1126 | "sortProblems": "default" 1127 | }, 1128 | "proxy": { 1129 | "filter": "" 1130 | }, 1131 | "queryType": 5, 1132 | "refId": "B", 1133 | "resultFormat": "time_series", 1134 | "showProblems": "problems", 1135 | "table": { 1136 | "skipEmptyValues": false 1137 | }, 1138 | "tags": { 1139 | "filter": "" 1140 | }, 1141 | "trigger": { 1142 | "filter": "" 1143 | }, 1144 | "triggers": { 1145 | "acknowledged": 2, 1146 | "count": true, 1147 | "minSeverity": 3 1148 | } 1149 | } 1150 | ], 1151 | "title": "Triggers Alert", 1152 | "triggerSeverity": [ 1153 | { 1154 | "color": "rgb(108, 108, 108)", 1155 | "priority": 0, 1156 | "severity": "Not classified", 1157 | "show": false 1158 | }, 1159 | { 1160 | "color": "rgb(120, 158, 183)", 1161 | "priority": 1, 1162 | "severity": "Information", 1163 | "show": false 1164 | }, 1165 | { 1166 | "color": "rgb(175, 180, 36)", 1167 | "priority": 2, 1168 | "severity": "Warning", 1169 | "show": true 1170 | }, 1171 | { 1172 | "color": "rgb(255, 137, 30)", 1173 | "priority": 3, 1174 | "severity": "Average", 1175 | "show": true 1176 | }, 1177 | { 1178 | "color": "rgb(255, 101, 72)", 1179 | "priority": 4, 1180 | "severity": "High", 1181 | "show": true 1182 | }, 1183 | { 1184 | "color": "rgb(215, 0, 0)", 1185 | "priority": 5, 1186 | "severity": "Disaster", 1187 | "show": true 1188 | } 1189 | ], 1190 | "type": "alexanderzobnin-zabbix-triggers-panel" 1191 | }, 1192 | { 1193 | "collapsed": false, 1194 | "datasource": null, 1195 | "gridPos": { 1196 | "h": 1, 1197 | "w": 24, 1198 | "x": 0, 1199 | "y": 19 1200 | }, 1201 | "id": 53, 1202 | "panels": [], 1203 | "repeat": "host", 1204 | "scopedVars": { 1205 | "host": { 1206 | "selected": true, 1207 | "text": "centos8-hands-on", 1208 | "value": "centos8-hands-on" 1209 | } 1210 | }, 1211 | "title": "Busy Processes of $host", 1212 | "type": "row" 1213 | }, 1214 | { 1215 | "cacheTimeout": null, 1216 | "datasource": "Zabbix", 1217 | "fieldConfig": { 1218 | "defaults": { 1219 | "color": { 1220 | "mode": "thresholds" 1221 | }, 1222 | "decimals": 2, 1223 | "mappings": [ 1224 | { 1225 | "id": 0, 1226 | "op": "=", 1227 | "text": "N/A", 1228 | "type": 1, 1229 | "value": "null" 1230 | } 1231 | ], 1232 | "max": 100, 1233 | "min": 0, 1234 | "thresholds": { 1235 | "mode": "absolute", 1236 | "steps": [ 1237 | { 1238 | "color": "dark-green", 1239 | "value": null 1240 | }, 1241 | { 1242 | "color": "rgba(237, 129, 40, 0.89)", 1243 | "value": 75 1244 | }, 1245 | { 1246 | "color": "rgba(245, 54, 54, 0.9)", 1247 | "value": 85 1248 | } 1249 | ] 1250 | }, 1251 | "unit": "percent" 1252 | }, 1253 | "overrides": [] 1254 | }, 1255 | "gridPos": { 1256 | "h": 5, 1257 | "w": 4, 1258 | "x": 0, 1259 | "y": 20 1260 | }, 1261 | "id": 5, 1262 | "links": [], 1263 | "options": { 1264 | "orientation": "horizontal", 1265 | "reduceOptions": { 1266 | "calcs": [ 1267 | "last" 1268 | ], 1269 | "fields": "", 1270 | "values": false 1271 | }, 1272 | "showThresholdLabels": false, 1273 | "showThresholdMarkers": true, 1274 | "text": {} 1275 | }, 1276 | "pluginVersion": "7.5.10", 1277 | "scopedVars": { 1278 | "host": { 1279 | "selected": true, 1280 | "text": "centos8-hands-on", 1281 | "value": "centos8-hands-on" 1282 | } 1283 | }, 1284 | "targets": [ 1285 | { 1286 | "application": { 1287 | "filter": "" 1288 | }, 1289 | "functions": [], 1290 | "group": { 1291 | "filter": "$group" 1292 | }, 1293 | "host": { 1294 | "filter": "$host" 1295 | }, 1296 | "item": { 1297 | "filter": "Utilization of icmp pinger data collector processes, in %" 1298 | }, 1299 | "options": { 1300 | "showDisabledItems": false, 1301 | "skipEmptyValues": false 1302 | }, 1303 | "proxy": { 1304 | "filter": "" 1305 | }, 1306 | "queryType": 0, 1307 | "refId": "A", 1308 | "resultFormat": "time_series", 1309 | "table": { 1310 | "skipEmptyValues": false 1311 | }, 1312 | "tags": { 1313 | "filter": "" 1314 | }, 1315 | "trigger": { 1316 | "filter": "" 1317 | }, 1318 | "triggers": { 1319 | "acknowledged": 2, 1320 | "count": true, 1321 | "minSeverity": 3 1322 | } 1323 | } 1324 | ], 1325 | "title": "Pinger Processes", 1326 | "type": "gauge" 1327 | }, 1328 | { 1329 | "cacheTimeout": null, 1330 | "datasource": "Zabbix", 1331 | "fieldConfig": { 1332 | "defaults": { 1333 | "color": { 1334 | "mode": "thresholds" 1335 | }, 1336 | "decimals": 2, 1337 | "mappings": [ 1338 | { 1339 | "id": 0, 1340 | "op": "=", 1341 | "text": "N/A", 1342 | "type": 1, 1343 | "value": "null" 1344 | } 1345 | ], 1346 | "max": 100, 1347 | "min": 0, 1348 | "thresholds": { 1349 | "mode": "absolute", 1350 | "steps": [ 1351 | { 1352 | "color": "dark-green", 1353 | "value": null 1354 | }, 1355 | { 1356 | "color": "rgba(237, 129, 40, 0.89)", 1357 | "value": 75 1358 | }, 1359 | { 1360 | "color": "rgba(245, 54, 54, 0.9)", 1361 | "value": 85 1362 | } 1363 | ] 1364 | }, 1365 | "unit": "percent" 1366 | }, 1367 | "overrides": [] 1368 | }, 1369 | "gridPos": { 1370 | "h": 5, 1371 | "w": 4, 1372 | "x": 4, 1373 | "y": 20 1374 | }, 1375 | "id": 28, 1376 | "links": [], 1377 | "options": { 1378 | "orientation": "horizontal", 1379 | "reduceOptions": { 1380 | "calcs": [ 1381 | "last" 1382 | ], 1383 | "fields": "", 1384 | "values": false 1385 | }, 1386 | "showThresholdLabels": false, 1387 | "showThresholdMarkers": true, 1388 | "text": {} 1389 | }, 1390 | "pluginVersion": "7.5.10", 1391 | "scopedVars": { 1392 | "host": { 1393 | "selected": true, 1394 | "text": "centos8-hands-on", 1395 | "value": "centos8-hands-on" 1396 | } 1397 | }, 1398 | "targets": [ 1399 | { 1400 | "application": { 1401 | "filter": "" 1402 | }, 1403 | "functions": [], 1404 | "group": { 1405 | "filter": "$group" 1406 | }, 1407 | "host": { 1408 | "filter": "$host" 1409 | }, 1410 | "item": { 1411 | "filter": "Utilization of housekeeper internal processes, in %" 1412 | }, 1413 | "options": { 1414 | "showDisabledItems": false, 1415 | "skipEmptyValues": false 1416 | }, 1417 | "proxy": { 1418 | "filter": "" 1419 | }, 1420 | "queryType": 0, 1421 | "refId": "A", 1422 | "resultFormat": "time_series", 1423 | "table": { 1424 | "skipEmptyValues": false 1425 | }, 1426 | "tags": { 1427 | "filter": "" 1428 | }, 1429 | "trigger": { 1430 | "filter": "" 1431 | }, 1432 | "triggers": { 1433 | "acknowledged": 2, 1434 | "count": true, 1435 | "minSeverity": 3 1436 | } 1437 | } 1438 | ], 1439 | "title": "Housekeeper Processes", 1440 | "type": "gauge" 1441 | }, 1442 | { 1443 | "cacheTimeout": null, 1444 | "datasource": "Zabbix", 1445 | "fieldConfig": { 1446 | "defaults": { 1447 | "color": { 1448 | "mode": "thresholds" 1449 | }, 1450 | "decimals": 2, 1451 | "mappings": [ 1452 | { 1453 | "id": 0, 1454 | "op": "=", 1455 | "text": "N/A", 1456 | "type": 1, 1457 | "value": "null" 1458 | } 1459 | ], 1460 | "max": 100, 1461 | "min": 0, 1462 | "thresholds": { 1463 | "mode": "absolute", 1464 | "steps": [ 1465 | { 1466 | "color": "dark-green", 1467 | "value": null 1468 | }, 1469 | { 1470 | "color": "rgba(237, 129, 40, 0.89)", 1471 | "value": 75 1472 | }, 1473 | { 1474 | "color": "rgba(245, 54, 54, 0.9)", 1475 | "value": 85 1476 | } 1477 | ] 1478 | }, 1479 | "unit": "percent" 1480 | }, 1481 | "overrides": [] 1482 | }, 1483 | "gridPos": { 1484 | "h": 5, 1485 | "w": 4, 1486 | "x": 8, 1487 | "y": 20 1488 | }, 1489 | "id": 29, 1490 | "links": [], 1491 | "options": { 1492 | "orientation": "horizontal", 1493 | "reduceOptions": { 1494 | "calcs": [ 1495 | "last" 1496 | ], 1497 | "fields": "", 1498 | "values": false 1499 | }, 1500 | "showThresholdLabels": false, 1501 | "showThresholdMarkers": true, 1502 | "text": {} 1503 | }, 1504 | "pluginVersion": "7.5.10", 1505 | "scopedVars": { 1506 | "host": { 1507 | "selected": true, 1508 | "text": "centos8-hands-on", 1509 | "value": "centos8-hands-on" 1510 | } 1511 | }, 1512 | "targets": [ 1513 | { 1514 | "application": { 1515 | "filter": "" 1516 | }, 1517 | "functions": [], 1518 | "group": { 1519 | "filter": "$group" 1520 | }, 1521 | "host": { 1522 | "filter": "$host" 1523 | }, 1524 | "item": { 1525 | "filter": "Utilization of poller data collector processes, in %" 1526 | }, 1527 | "options": { 1528 | "showDisabledItems": false, 1529 | "skipEmptyValues": false 1530 | }, 1531 | "proxy": { 1532 | "filter": "" 1533 | }, 1534 | "queryType": 0, 1535 | "refId": "A", 1536 | "resultFormat": "time_series", 1537 | "table": { 1538 | "skipEmptyValues": false 1539 | }, 1540 | "tags": { 1541 | "filter": "" 1542 | }, 1543 | "trigger": { 1544 | "filter": "" 1545 | }, 1546 | "triggers": { 1547 | "acknowledged": 2, 1548 | "count": true, 1549 | "minSeverity": 3 1550 | } 1551 | } 1552 | ], 1553 | "title": "Poller Processes", 1554 | "type": "gauge" 1555 | }, 1556 | { 1557 | "cacheTimeout": null, 1558 | "datasource": "Zabbix", 1559 | "fieldConfig": { 1560 | "defaults": { 1561 | "color": { 1562 | "mode": "thresholds" 1563 | }, 1564 | "decimals": 2, 1565 | "mappings": [ 1566 | { 1567 | "id": 0, 1568 | "op": "=", 1569 | "text": "N/A", 1570 | "type": 1, 1571 | "value": "null" 1572 | } 1573 | ], 1574 | "max": 100, 1575 | "min": 0, 1576 | "thresholds": { 1577 | "mode": "absolute", 1578 | "steps": [ 1579 | { 1580 | "color": "dark-green", 1581 | "value": null 1582 | }, 1583 | { 1584 | "color": "rgba(237, 129, 40, 0.89)", 1585 | "value": 75 1586 | }, 1587 | { 1588 | "color": "rgba(245, 54, 54, 0.9)", 1589 | "value": 85 1590 | } 1591 | ] 1592 | }, 1593 | "unit": "percent" 1594 | }, 1595 | "overrides": [] 1596 | }, 1597 | "gridPos": { 1598 | "h": 5, 1599 | "w": 4, 1600 | "x": 12, 1601 | "y": 20 1602 | }, 1603 | "id": 30, 1604 | "links": [], 1605 | "options": { 1606 | "orientation": "horizontal", 1607 | "reduceOptions": { 1608 | "calcs": [ 1609 | "last" 1610 | ], 1611 | "fields": "", 1612 | "values": false 1613 | }, 1614 | "showThresholdLabels": false, 1615 | "showThresholdMarkers": true, 1616 | "text": {} 1617 | }, 1618 | "pluginVersion": "7.5.10", 1619 | "scopedVars": { 1620 | "host": { 1621 | "selected": true, 1622 | "text": "centos8-hands-on", 1623 | "value": "centos8-hands-on" 1624 | } 1625 | }, 1626 | "targets": [ 1627 | { 1628 | "application": { 1629 | "filter": "" 1630 | }, 1631 | "functions": [], 1632 | "group": { 1633 | "filter": "$group" 1634 | }, 1635 | "host": { 1636 | "filter": "$host" 1637 | }, 1638 | "item": { 1639 | "filter": "Utilization of alerter internal processes, in %" 1640 | }, 1641 | "options": { 1642 | "showDisabledItems": false, 1643 | "skipEmptyValues": false 1644 | }, 1645 | "proxy": { 1646 | "filter": "" 1647 | }, 1648 | "queryType": 0, 1649 | "refId": "A", 1650 | "resultFormat": "time_series", 1651 | "table": { 1652 | "skipEmptyValues": false 1653 | }, 1654 | "tags": { 1655 | "filter": "" 1656 | }, 1657 | "trigger": { 1658 | "filter": "" 1659 | }, 1660 | "triggers": { 1661 | "acknowledged": 2, 1662 | "count": true, 1663 | "minSeverity": 3 1664 | } 1665 | } 1666 | ], 1667 | "title": "Alerter Processes", 1668 | "type": "gauge" 1669 | }, 1670 | { 1671 | "cacheTimeout": null, 1672 | "datasource": "Zabbix", 1673 | "fieldConfig": { 1674 | "defaults": { 1675 | "color": { 1676 | "mode": "thresholds" 1677 | }, 1678 | "decimals": 2, 1679 | "mappings": [ 1680 | { 1681 | "id": 0, 1682 | "op": "=", 1683 | "text": "N/A", 1684 | "type": 1, 1685 | "value": "null" 1686 | } 1687 | ], 1688 | "max": 100, 1689 | "min": 0, 1690 | "thresholds": { 1691 | "mode": "absolute", 1692 | "steps": [ 1693 | { 1694 | "color": "dark-green", 1695 | "value": null 1696 | }, 1697 | { 1698 | "color": "rgba(237, 129, 40, 0.89)", 1699 | "value": 75 1700 | }, 1701 | { 1702 | "color": "rgba(245, 54, 54, 0.9)", 1703 | "value": 85 1704 | } 1705 | ] 1706 | }, 1707 | "unit": "percent" 1708 | }, 1709 | "overrides": [] 1710 | }, 1711 | "gridPos": { 1712 | "h": 5, 1713 | "w": 4, 1714 | "x": 16, 1715 | "y": 20 1716 | }, 1717 | "id": 31, 1718 | "links": [], 1719 | "options": { 1720 | "orientation": "horizontal", 1721 | "reduceOptions": { 1722 | "calcs": [ 1723 | "last" 1724 | ], 1725 | "fields": "", 1726 | "values": false 1727 | }, 1728 | "showThresholdLabels": false, 1729 | "showThresholdMarkers": true, 1730 | "text": {} 1731 | }, 1732 | "pluginVersion": "7.5.10", 1733 | "scopedVars": { 1734 | "host": { 1735 | "selected": true, 1736 | "text": "centos8-hands-on", 1737 | "value": "centos8-hands-on" 1738 | } 1739 | }, 1740 | "targets": [ 1741 | { 1742 | "application": { 1743 | "filter": "" 1744 | }, 1745 | "functions": [], 1746 | "group": { 1747 | "filter": "$group" 1748 | }, 1749 | "host": { 1750 | "filter": "$host" 1751 | }, 1752 | "item": { 1753 | "filter": "Utilization of history syncer internal processes, in %" 1754 | }, 1755 | "options": { 1756 | "showDisabledItems": false, 1757 | "skipEmptyValues": false 1758 | }, 1759 | "proxy": { 1760 | "filter": "" 1761 | }, 1762 | "queryType": 0, 1763 | "refId": "A", 1764 | "resultFormat": "time_series", 1765 | "table": { 1766 | "skipEmptyValues": false 1767 | }, 1768 | "tags": { 1769 | "filter": "" 1770 | }, 1771 | "trigger": { 1772 | "filter": "" 1773 | }, 1774 | "triggers": { 1775 | "acknowledged": 2, 1776 | "count": true, 1777 | "minSeverity": 3 1778 | } 1779 | } 1780 | ], 1781 | "title": "History Syncer Processes", 1782 | "type": "gauge" 1783 | }, 1784 | { 1785 | "cacheTimeout": null, 1786 | "datasource": "Zabbix", 1787 | "fieldConfig": { 1788 | "defaults": { 1789 | "color": { 1790 | "mode": "thresholds" 1791 | }, 1792 | "decimals": 2, 1793 | "mappings": [ 1794 | { 1795 | "id": 0, 1796 | "op": "=", 1797 | "text": "N/A", 1798 | "type": 1, 1799 | "value": "null" 1800 | } 1801 | ], 1802 | "max": 100, 1803 | "min": 0, 1804 | "thresholds": { 1805 | "mode": "absolute", 1806 | "steps": [ 1807 | { 1808 | "color": "dark-green", 1809 | "value": null 1810 | }, 1811 | { 1812 | "color": "rgba(237, 129, 40, 0.89)", 1813 | "value": 75 1814 | }, 1815 | { 1816 | "color": "rgba(245, 54, 54, 0.9)", 1817 | "value": 85 1818 | } 1819 | ] 1820 | }, 1821 | "unit": "percent" 1822 | }, 1823 | "overrides": [] 1824 | }, 1825 | "gridPos": { 1826 | "h": 5, 1827 | "w": 4, 1828 | "x": 20, 1829 | "y": 20 1830 | }, 1831 | "id": 32, 1832 | "links": [], 1833 | "options": { 1834 | "orientation": "horizontal", 1835 | "reduceOptions": { 1836 | "calcs": [ 1837 | "last" 1838 | ], 1839 | "fields": "", 1840 | "values": false 1841 | }, 1842 | "showThresholdLabels": false, 1843 | "showThresholdMarkers": true, 1844 | "text": {} 1845 | }, 1846 | "pluginVersion": "7.5.10", 1847 | "scopedVars": { 1848 | "host": { 1849 | "selected": true, 1850 | "text": "centos8-hands-on", 1851 | "value": "centos8-hands-on" 1852 | } 1853 | }, 1854 | "targets": [ 1855 | { 1856 | "application": { 1857 | "filter": "" 1858 | }, 1859 | "functions": [], 1860 | "group": { 1861 | "filter": "$group" 1862 | }, 1863 | "host": { 1864 | "filter": "$host" 1865 | }, 1866 | "item": { 1867 | "filter": "Utilization of trapper data collector processes, in %" 1868 | }, 1869 | "options": { 1870 | "showDisabledItems": false, 1871 | "skipEmptyValues": false 1872 | }, 1873 | "proxy": { 1874 | "filter": "" 1875 | }, 1876 | "queryType": 0, 1877 | "refId": "A", 1878 | "resultFormat": "time_series", 1879 | "table": { 1880 | "skipEmptyValues": false 1881 | }, 1882 | "tags": { 1883 | "filter": "" 1884 | }, 1885 | "trigger": { 1886 | "filter": "" 1887 | }, 1888 | "triggers": { 1889 | "acknowledged": 2, 1890 | "count": true, 1891 | "minSeverity": 3 1892 | } 1893 | } 1894 | ], 1895 | "title": "Trapper Processes", 1896 | "type": "gauge" 1897 | }, 1898 | { 1899 | "collapsed": false, 1900 | "datasource": null, 1901 | "gridPos": { 1902 | "h": 1, 1903 | "w": 24, 1904 | "x": 0, 1905 | "y": 25 1906 | }, 1907 | "id": 55, 1908 | "panels": [], 1909 | "repeat": "host", 1910 | "scopedVars": { 1911 | "host": { 1912 | "selected": true, 1913 | "text": "centos8-hands-on", 1914 | "value": "centos8-hands-on" 1915 | } 1916 | }, 1917 | "title": "CPU/Memory/Disk/Network of $host", 1918 | "type": "row" 1919 | }, 1920 | { 1921 | "aliasColors": {}, 1922 | "bars": false, 1923 | "dashLength": 10, 1924 | "dashes": false, 1925 | "datasource": "Zabbix", 1926 | "fieldConfig": { 1927 | "defaults": { 1928 | "links": [] 1929 | }, 1930 | "overrides": [] 1931 | }, 1932 | "fill": 1, 1933 | "fillGradient": 0, 1934 | "gridPos": { 1935 | "h": 8, 1936 | "w": 8, 1937 | "x": 0, 1938 | "y": 26 1939 | }, 1940 | "hiddenSeries": false, 1941 | "id": 27, 1942 | "legend": { 1943 | "alignAsTable": true, 1944 | "avg": false, 1945 | "current": true, 1946 | "max": false, 1947 | "min": false, 1948 | "rightSide": true, 1949 | "show": true, 1950 | "total": false, 1951 | "values": true 1952 | }, 1953 | "lines": true, 1954 | "linewidth": 1, 1955 | "links": [], 1956 | "nullPointMode": "null", 1957 | "options": { 1958 | "alertThreshold": true 1959 | }, 1960 | "percentage": false, 1961 | "pluginVersion": "7.5.10", 1962 | "pointradius": 5, 1963 | "points": false, 1964 | "renderer": "flot", 1965 | "scopedVars": { 1966 | "host": { 1967 | "selected": true, 1968 | "text": "centos8-hands-on", 1969 | "value": "centos8-hands-on" 1970 | } 1971 | }, 1972 | "seriesOverrides": [], 1973 | "spaceLength": 10, 1974 | "stack": false, 1975 | "steppedLine": false, 1976 | "targets": [ 1977 | { 1978 | "application": { 1979 | "filter": "" 1980 | }, 1981 | "bucketAggs": [ 1982 | { 1983 | "id": "2", 1984 | "settings": { 1985 | "interval": "auto" 1986 | }, 1987 | "type": "date_histogram" 1988 | } 1989 | ], 1990 | "dsType": "elasticsearch", 1991 | "functions": [], 1992 | "group": { 1993 | "filter": "$group" 1994 | }, 1995 | "host": { 1996 | "filter": "$host" 1997 | }, 1998 | "item": { 1999 | "filter": "/CPU .* time$/" 2000 | }, 2001 | "metrics": [ 2002 | { 2003 | "id": "1", 2004 | "type": "count" 2005 | } 2006 | ], 2007 | "mode": 0, 2008 | "options": { 2009 | "showDisabledItems": false 2010 | }, 2011 | "refId": "A", 2012 | "resultFormat": "time_series", 2013 | "table": { 2014 | "skipEmptyValues": false 2015 | }, 2016 | "timeField": "@timestamp", 2017 | "triggers": { 2018 | "acknowledged": 2, 2019 | "count": true, 2020 | "minSeverity": 3 2021 | } 2022 | } 2023 | ], 2024 | "thresholds": [], 2025 | "timeFrom": null, 2026 | "timeRegions": [], 2027 | "timeShift": null, 2028 | "title": "CPU Time Overview", 2029 | "tooltip": { 2030 | "shared": true, 2031 | "sort": 0, 2032 | "value_type": "individual" 2033 | }, 2034 | "type": "graph", 2035 | "xaxis": { 2036 | "buckets": null, 2037 | "mode": "time", 2038 | "name": null, 2039 | "show": true, 2040 | "values": [] 2041 | }, 2042 | "yaxes": [ 2043 | { 2044 | "format": "percent", 2045 | "label": null, 2046 | "logBase": 1, 2047 | "max": null, 2048 | "min": null, 2049 | "show": true 2050 | }, 2051 | { 2052 | "format": "short", 2053 | "label": null, 2054 | "logBase": 1, 2055 | "max": null, 2056 | "min": null, 2057 | "show": true 2058 | } 2059 | ], 2060 | "yaxis": { 2061 | "align": false, 2062 | "alignLevel": null 2063 | } 2064 | }, 2065 | { 2066 | "aliasColors": { 2067 | "CPU iowait time": "#F2C96D", 2068 | "CPU system time": "#65C5DB", 2069 | "CPU user time": "#E24D42" 2070 | }, 2071 | "bars": false, 2072 | "dashLength": 10, 2073 | "dashes": false, 2074 | "datasource": "Zabbix", 2075 | "editable": true, 2076 | "error": false, 2077 | "fieldConfig": { 2078 | "defaults": { 2079 | "links": [] 2080 | }, 2081 | "overrides": [] 2082 | }, 2083 | "fill": 1, 2084 | "fillGradient": 0, 2085 | "grid": {}, 2086 | "gridPos": { 2087 | "h": 8, 2088 | "w": 8, 2089 | "x": 8, 2090 | "y": 26 2091 | }, 2092 | "hiddenSeries": false, 2093 | "id": 10, 2094 | "legend": { 2095 | "alignAsTable": true, 2096 | "avg": false, 2097 | "current": true, 2098 | "hideEmpty": false, 2099 | "hideZero": false, 2100 | "max": true, 2101 | "min": true, 2102 | "rightSide": false, 2103 | "show": true, 2104 | "total": false, 2105 | "values": true 2106 | }, 2107 | "lines": true, 2108 | "linewidth": 2, 2109 | "links": [], 2110 | "nullPointMode": "connected", 2111 | "options": { 2112 | "alertThreshold": true 2113 | }, 2114 | "percentage": false, 2115 | "pluginVersion": "7.5.10", 2116 | "pointradius": 5, 2117 | "points": false, 2118 | "renderer": "flot", 2119 | "scopedVars": { 2120 | "host": { 2121 | "selected": true, 2122 | "text": "centos8-hands-on", 2123 | "value": "centos8-hands-on" 2124 | } 2125 | }, 2126 | "seriesOverrides": [], 2127 | "spaceLength": 10, 2128 | "stack": false, 2129 | "steppedLine": false, 2130 | "targets": [ 2131 | { 2132 | "application": { 2133 | "filter": "CPU" 2134 | }, 2135 | "functions": [], 2136 | "group": { 2137 | "filter": "$group" 2138 | }, 2139 | "host": { 2140 | "filter": "$host" 2141 | }, 2142 | "item": { 2143 | "filter": "Load average (1m avg)" 2144 | }, 2145 | "mode": 0, 2146 | "options": { 2147 | "showDisabledItems": false 2148 | }, 2149 | "refId": "A", 2150 | "resultFormat": "time_series", 2151 | "table": { 2152 | "skipEmptyValues": false 2153 | }, 2154 | "triggers": { 2155 | "acknowledged": 2, 2156 | "count": true, 2157 | "minSeverity": 3 2158 | } 2159 | }, 2160 | { 2161 | "application": { 2162 | "filter": "CPU" 2163 | }, 2164 | "functions": [], 2165 | "group": { 2166 | "filter": "$group" 2167 | }, 2168 | "host": { 2169 | "filter": "$host" 2170 | }, 2171 | "item": { 2172 | "filter": "Load average (5m avg)" 2173 | }, 2174 | "mode": 0, 2175 | "options": { 2176 | "showDisabledItems": false 2177 | }, 2178 | "refId": "B", 2179 | "resultFormat": "time_series", 2180 | "table": { 2181 | "skipEmptyValues": false 2182 | }, 2183 | "triggers": { 2184 | "acknowledged": 2, 2185 | "count": true, 2186 | "minSeverity": 3 2187 | } 2188 | }, 2189 | { 2190 | "application": { 2191 | "filter": "CPU" 2192 | }, 2193 | "functions": [], 2194 | "group": { 2195 | "filter": "$group" 2196 | }, 2197 | "host": { 2198 | "filter": "$host" 2199 | }, 2200 | "item": { 2201 | "filter": "Load average (15m avg)" 2202 | }, 2203 | "mode": 0, 2204 | "options": { 2205 | "showDisabledItems": false 2206 | }, 2207 | "refId": "C", 2208 | "resultFormat": "time_series", 2209 | "table": { 2210 | "skipEmptyValues": false 2211 | }, 2212 | "triggers": { 2213 | "acknowledged": 2, 2214 | "count": true, 2215 | "minSeverity": 3 2216 | } 2217 | } 2218 | ], 2219 | "thresholds": [], 2220 | "timeFrom": null, 2221 | "timeRegions": [], 2222 | "timeShift": null, 2223 | "title": "Processor load", 2224 | "tooltip": { 2225 | "msResolution": true, 2226 | "shared": true, 2227 | "sort": 0, 2228 | "value_type": "cumulative" 2229 | }, 2230 | "type": "graph", 2231 | "xaxis": { 2232 | "buckets": null, 2233 | "mode": "time", 2234 | "name": null, 2235 | "show": true, 2236 | "values": [] 2237 | }, 2238 | "yaxes": [ 2239 | { 2240 | "decimals": 1, 2241 | "format": "short", 2242 | "label": null, 2243 | "logBase": 1, 2244 | "max": null, 2245 | "min": null, 2246 | "show": true 2247 | }, 2248 | { 2249 | "decimals": 1, 2250 | "format": "short", 2251 | "label": "", 2252 | "logBase": 1, 2253 | "max": null, 2254 | "min": null, 2255 | "show": true 2256 | } 2257 | ], 2258 | "yaxis": { 2259 | "align": false, 2260 | "alignLevel": 1 2261 | } 2262 | }, 2263 | { 2264 | "aliasColors": { 2265 | "Zabbix queue": "#BF1B00" 2266 | }, 2267 | "bars": false, 2268 | "dashLength": 10, 2269 | "dashes": false, 2270 | "datasource": "Zabbix", 2271 | "editable": true, 2272 | "error": false, 2273 | "fieldConfig": { 2274 | "defaults": { 2275 | "links": [] 2276 | }, 2277 | "overrides": [] 2278 | }, 2279 | "fill": 1, 2280 | "fillGradient": 0, 2281 | "grid": {}, 2282 | "gridPos": { 2283 | "h": 8, 2284 | "w": 8, 2285 | "x": 16, 2286 | "y": 26 2287 | }, 2288 | "hiddenSeries": false, 2289 | "id": 9, 2290 | "legend": { 2291 | "alignAsTable": true, 2292 | "avg": true, 2293 | "current": true, 2294 | "hideEmpty": false, 2295 | "hideZero": false, 2296 | "max": true, 2297 | "min": true, 2298 | "rightSide": false, 2299 | "show": true, 2300 | "total": false, 2301 | "values": true 2302 | }, 2303 | "lines": true, 2304 | "linewidth": 2, 2305 | "links": [], 2306 | "nullPointMode": "connected", 2307 | "options": { 2308 | "alertThreshold": true 2309 | }, 2310 | "percentage": false, 2311 | "pluginVersion": "7.5.10", 2312 | "pointradius": 5, 2313 | "points": false, 2314 | "renderer": "flot", 2315 | "scopedVars": { 2316 | "host": { 2317 | "selected": true, 2318 | "text": "centos8-hands-on", 2319 | "value": "centos8-hands-on" 2320 | } 2321 | }, 2322 | "seriesOverrides": [], 2323 | "spaceLength": 10, 2324 | "stack": false, 2325 | "steppedLine": false, 2326 | "targets": [ 2327 | { 2328 | "application": { 2329 | "filter": "" 2330 | }, 2331 | "functions": [], 2332 | "group": { 2333 | "filter": "$group" 2334 | }, 2335 | "host": { 2336 | "filter": "$host" 2337 | }, 2338 | "item": { 2339 | "filter": "Zabbix preprocessing queue" 2340 | }, 2341 | "mode": 0, 2342 | "options": { 2343 | "showDisabledItems": false, 2344 | "skipEmptyValues": false 2345 | }, 2346 | "refId": "A", 2347 | "resultFormat": "time_series", 2348 | "table": { 2349 | "skipEmptyValues": false 2350 | }, 2351 | "triggers": { 2352 | "acknowledged": 2, 2353 | "count": true, 2354 | "minSeverity": 3 2355 | } 2356 | }, 2357 | { 2358 | "application": { 2359 | "filter": "" 2360 | }, 2361 | "functions": [], 2362 | "group": { 2363 | "filter": "$group" 2364 | }, 2365 | "host": { 2366 | "filter": "$host" 2367 | }, 2368 | "item": { 2369 | "filter": "Zabbix queue" 2370 | }, 2371 | "mode": 0, 2372 | "options": { 2373 | "showDisabledItems": false 2374 | }, 2375 | "refId": "B", 2376 | "resultFormat": "time_series", 2377 | "table": { 2378 | "skipEmptyValues": false 2379 | }, 2380 | "triggers": { 2381 | "acknowledged": 2, 2382 | "count": true, 2383 | "minSeverity": 3 2384 | } 2385 | }, 2386 | { 2387 | "application": { 2388 | "filter": "" 2389 | }, 2390 | "functions": [], 2391 | "group": { 2392 | "filter": "$group" 2393 | }, 2394 | "host": { 2395 | "filter": "$host" 2396 | }, 2397 | "item": { 2398 | "filter": "Zabbix queue over 10 minutes" 2399 | }, 2400 | "mode": 0, 2401 | "options": { 2402 | "showDisabledItems": false 2403 | }, 2404 | "refId": "C", 2405 | "resultFormat": "time_series", 2406 | "table": { 2407 | "skipEmptyValues": false 2408 | }, 2409 | "triggers": { 2410 | "acknowledged": 2, 2411 | "count": true, 2412 | "minSeverity": 3 2413 | } 2414 | } 2415 | ], 2416 | "thresholds": [], 2417 | "timeFrom": null, 2418 | "timeRegions": [], 2419 | "timeShift": null, 2420 | "title": "Zabbix Server Queue", 2421 | "tooltip": { 2422 | "msResolution": true, 2423 | "shared": false, 2424 | "sort": 0, 2425 | "value_type": "cumulative" 2426 | }, 2427 | "type": "graph", 2428 | "xaxis": { 2429 | "buckets": null, 2430 | "mode": "time", 2431 | "name": null, 2432 | "show": true, 2433 | "values": [] 2434 | }, 2435 | "yaxes": [ 2436 | { 2437 | "decimals": 1, 2438 | "format": "short", 2439 | "label": "", 2440 | "logBase": 1, 2441 | "max": null, 2442 | "min": null, 2443 | "show": true 2444 | }, 2445 | { 2446 | "decimals": 1, 2447 | "format": "short", 2448 | "label": "", 2449 | "logBase": 1, 2450 | "max": null, 2451 | "min": null, 2452 | "show": true 2453 | } 2454 | ], 2455 | "yaxis": { 2456 | "align": false, 2457 | "alignLevel": null 2458 | } 2459 | }, 2460 | { 2461 | "aliasColors": { 2462 | "Incoming network traffic on eno16777984": "#70DBED", 2463 | "Incoming network traffic on eno33557248": "#1F78C1", 2464 | "Outgoing network traffic on eno16777984": "#F29191" 2465 | }, 2466 | "bars": false, 2467 | "dashLength": 10, 2468 | "dashes": false, 2469 | "datasource": "Zabbix", 2470 | "decimals": null, 2471 | "editable": true, 2472 | "error": false, 2473 | "fieldConfig": { 2474 | "defaults": { 2475 | "links": [] 2476 | }, 2477 | "overrides": [] 2478 | }, 2479 | "fill": 6, 2480 | "fillGradient": 0, 2481 | "grid": {}, 2482 | "gridPos": { 2483 | "h": 8, 2484 | "w": 8, 2485 | "x": 0, 2486 | "y": 34 2487 | }, 2488 | "hiddenSeries": false, 2489 | "hideTimeOverride": false, 2490 | "id": 4, 2491 | "legend": { 2492 | "alignAsTable": true, 2493 | "avg": false, 2494 | "current": true, 2495 | "hideEmpty": false, 2496 | "hideZero": false, 2497 | "max": true, 2498 | "min": true, 2499 | "rightSide": false, 2500 | "show": true, 2501 | "sideWidth": null, 2502 | "total": false, 2503 | "values": true 2504 | }, 2505 | "lines": true, 2506 | "linewidth": 1, 2507 | "links": [], 2508 | "nullPointMode": "connected", 2509 | "options": { 2510 | "alertThreshold": true 2511 | }, 2512 | "percentage": false, 2513 | "pluginVersion": "7.5.10", 2514 | "pointradius": 5, 2515 | "points": false, 2516 | "renderer": "flot", 2517 | "scopedVars": { 2518 | "host": { 2519 | "selected": true, 2520 | "text": "centos8-hands-on", 2521 | "value": "centos8-hands-on" 2522 | } 2523 | }, 2524 | "seriesOverrides": [ 2525 | { 2526 | "alias": "Outgoing network traffic on ens160", 2527 | "transform": "negative-Y" 2528 | }, 2529 | { 2530 | "alias": "Outgoing network traffic on ens192", 2531 | "transform": "negative-Y" 2532 | } 2533 | ], 2534 | "spaceLength": 10, 2535 | "stack": false, 2536 | "steppedLine": false, 2537 | "targets": [ 2538 | { 2539 | "application": { 2540 | "filter": "" 2541 | }, 2542 | "functions": [], 2543 | "group": { 2544 | "filter": "$group" 2545 | }, 2546 | "host": { 2547 | "filter": "$host" 2548 | }, 2549 | "item": { 2550 | "filter": "Interface ens3: Bits received" 2551 | }, 2552 | "options": { 2553 | "showDisabledItems": false, 2554 | "skipEmptyValues": false 2555 | }, 2556 | "proxy": { 2557 | "filter": "" 2558 | }, 2559 | "queryType": 0, 2560 | "refId": "A", 2561 | "resultFormat": "time_series", 2562 | "table": { 2563 | "skipEmptyValues": false 2564 | }, 2565 | "tags": { 2566 | "filter": "" 2567 | }, 2568 | "trigger": { 2569 | "filter": "" 2570 | }, 2571 | "triggers": { 2572 | "acknowledged": 2, 2573 | "count": true, 2574 | "minSeverity": 3 2575 | } 2576 | }, 2577 | { 2578 | "application": { 2579 | "filter": "" 2580 | }, 2581 | "functions": [], 2582 | "group": { 2583 | "filter": "$group" 2584 | }, 2585 | "host": { 2586 | "filter": "$host" 2587 | }, 2588 | "item": { 2589 | "filter": "Interface ens3: Bits sent" 2590 | }, 2591 | "options": { 2592 | "showDisabledItems": false, 2593 | "skipEmptyValues": false 2594 | }, 2595 | "proxy": { 2596 | "filter": "" 2597 | }, 2598 | "queryType": 0, 2599 | "refId": "D", 2600 | "resultFormat": "time_series", 2601 | "table": { 2602 | "skipEmptyValues": false 2603 | }, 2604 | "tags": { 2605 | "filter": "" 2606 | }, 2607 | "trigger": { 2608 | "filter": "" 2609 | }, 2610 | "triggers": { 2611 | "acknowledged": 2, 2612 | "count": true, 2613 | "minSeverity": 3 2614 | } 2615 | } 2616 | ], 2617 | "thresholds": [], 2618 | "timeFrom": null, 2619 | "timeRegions": [], 2620 | "timeShift": null, 2621 | "title": "Network Adapters", 2622 | "tooltip": { 2623 | "msResolution": true, 2624 | "shared": true, 2625 | "sort": 0, 2626 | "value_type": "cumulative" 2627 | }, 2628 | "type": "graph", 2629 | "xaxis": { 2630 | "buckets": null, 2631 | "mode": "time", 2632 | "name": null, 2633 | "show": true, 2634 | "values": [] 2635 | }, 2636 | "yaxes": [ 2637 | { 2638 | "decimals": 1, 2639 | "format": "Bps", 2640 | "label": null, 2641 | "logBase": 1, 2642 | "max": null, 2643 | "min": null, 2644 | "show": true 2645 | }, 2646 | { 2647 | "decimals": 1, 2648 | "format": "short", 2649 | "label": null, 2650 | "logBase": 1, 2651 | "max": null, 2652 | "min": null, 2653 | "show": true 2654 | } 2655 | ], 2656 | "yaxis": { 2657 | "align": false, 2658 | "alignLevel": null 2659 | } 2660 | }, 2661 | { 2662 | "aliasColors": { 2663 | "Available memory": "#BADFF4" 2664 | }, 2665 | "bars": false, 2666 | "dashLength": 10, 2667 | "dashes": false, 2668 | "datasource": "Zabbix", 2669 | "decimals": 2, 2670 | "editable": true, 2671 | "error": false, 2672 | "fieldConfig": { 2673 | "defaults": { 2674 | "links": [] 2675 | }, 2676 | "overrides": [] 2677 | }, 2678 | "fill": 2, 2679 | "fillGradient": 0, 2680 | "grid": {}, 2681 | "gridPos": { 2682 | "h": 8, 2683 | "w": 8, 2684 | "x": 8, 2685 | "y": 34 2686 | }, 2687 | "hiddenSeries": false, 2688 | "id": 2, 2689 | "legend": { 2690 | "alignAsTable": true, 2691 | "avg": false, 2692 | "current": true, 2693 | "hideEmpty": false, 2694 | "hideZero": false, 2695 | "max": true, 2696 | "min": true, 2697 | "rightSide": false, 2698 | "show": true, 2699 | "sideWidth": 250, 2700 | "sort": null, 2701 | "sortDesc": null, 2702 | "total": false, 2703 | "values": true 2704 | }, 2705 | "lines": true, 2706 | "linewidth": 2, 2707 | "links": [], 2708 | "maxDataPoints": "", 2709 | "nullPointMode": "connected", 2710 | "options": { 2711 | "alertThreshold": true 2712 | }, 2713 | "percentage": false, 2714 | "pluginVersion": "7.5.10", 2715 | "pointradius": 1, 2716 | "points": false, 2717 | "renderer": "flot", 2718 | "scopedVars": { 2719 | "host": { 2720 | "selected": true, 2721 | "text": "centos8-hands-on", 2722 | "value": "centos8-hands-on" 2723 | } 2724 | }, 2725 | "seriesOverrides": [ 2726 | { 2727 | "alias": "Available memory", 2728 | "yaxis": 1 2729 | } 2730 | ], 2731 | "spaceLength": 10, 2732 | "stack": false, 2733 | "steppedLine": false, 2734 | "targets": [ 2735 | { 2736 | "application": { 2737 | "filter": "Memory" 2738 | }, 2739 | "functions": [], 2740 | "group": { 2741 | "filter": "$group" 2742 | }, 2743 | "hide": false, 2744 | "host": { 2745 | "filter": "$host" 2746 | }, 2747 | "item": { 2748 | "filter": "Available memory" 2749 | }, 2750 | "mode": 0, 2751 | "options": { 2752 | "showDisabledItems": false 2753 | }, 2754 | "refId": "A", 2755 | "resultFormat": "time_series", 2756 | "table": { 2757 | "skipEmptyValues": false 2758 | }, 2759 | "triggers": { 2760 | "acknowledged": 2, 2761 | "count": true, 2762 | "minSeverity": 3 2763 | } 2764 | } 2765 | ], 2766 | "thresholds": [], 2767 | "timeFrom": null, 2768 | "timeRegions": [], 2769 | "timeShift": null, 2770 | "title": "Available memory", 2771 | "tooltip": { 2772 | "msResolution": true, 2773 | "shared": true, 2774 | "sort": 0, 2775 | "value_type": "cumulative" 2776 | }, 2777 | "type": "graph", 2778 | "xaxis": { 2779 | "buckets": null, 2780 | "mode": "time", 2781 | "name": null, 2782 | "show": true, 2783 | "values": [] 2784 | }, 2785 | "yaxes": [ 2786 | { 2787 | "decimals": 1, 2788 | "format": "bytes", 2789 | "label": "Memória", 2790 | "logBase": 1, 2791 | "max": null, 2792 | "min": null, 2793 | "show": true 2794 | }, 2795 | { 2796 | "decimals": 1, 2797 | "format": "short", 2798 | "label": "", 2799 | "logBase": 1, 2800 | "max": null, 2801 | "min": null, 2802 | "show": true 2803 | } 2804 | ], 2805 | "yaxis": { 2806 | "align": false, 2807 | "alignLevel": null 2808 | } 2809 | }, 2810 | { 2811 | "aliasColors": {}, 2812 | "bars": false, 2813 | "dashLength": 10, 2814 | "dashes": false, 2815 | "datasource": "Zabbix", 2816 | "fieldConfig": { 2817 | "defaults": { 2818 | "links": [] 2819 | }, 2820 | "overrides": [] 2821 | }, 2822 | "fill": 1, 2823 | "fillGradient": 0, 2824 | "gridPos": { 2825 | "h": 8, 2826 | "w": 8, 2827 | "x": 16, 2828 | "y": 34 2829 | }, 2830 | "hiddenSeries": false, 2831 | "id": 13, 2832 | "legend": { 2833 | "alignAsTable": true, 2834 | "avg": false, 2835 | "current": true, 2836 | "max": true, 2837 | "min": true, 2838 | "show": true, 2839 | "total": false, 2840 | "values": true 2841 | }, 2842 | "lines": true, 2843 | "linewidth": 2, 2844 | "links": [], 2845 | "nullPointMode": "null as zero", 2846 | "options": { 2847 | "alertThreshold": true 2848 | }, 2849 | "percentage": false, 2850 | "pluginVersion": "7.5.10", 2851 | "pointradius": 5, 2852 | "points": false, 2853 | "renderer": "flot", 2854 | "scopedVars": { 2855 | "host": { 2856 | "selected": true, 2857 | "text": "centos8-hands-on", 2858 | "value": "centos8-hands-on" 2859 | } 2860 | }, 2861 | "seriesOverrides": [], 2862 | "spaceLength": 10, 2863 | "stack": false, 2864 | "steppedLine": false, 2865 | "targets": [ 2866 | { 2867 | "application": { 2868 | "filter": "" 2869 | }, 2870 | "functions": [], 2871 | "group": { 2872 | "filter": "$group" 2873 | }, 2874 | "host": { 2875 | "filter": "$host" 2876 | }, 2877 | "item": { 2878 | "filter": "/: Free space in %" 2879 | }, 2880 | "mode": 0, 2881 | "options": { 2882 | "showDisabledItems": false 2883 | }, 2884 | "refId": "A", 2885 | "resultFormat": "time_series", 2886 | "table": { 2887 | "skipEmptyValues": false 2888 | }, 2889 | "triggers": { 2890 | "acknowledged": 2, 2891 | "count": true, 2892 | "minSeverity": 3 2893 | } 2894 | }, 2895 | { 2896 | "application": { 2897 | "filter": "" 2898 | }, 2899 | "functions": [], 2900 | "group": { 2901 | "filter": "$group" 2902 | }, 2903 | "host": { 2904 | "filter": "$host" 2905 | }, 2906 | "item": { 2907 | "filter": "/boot: Free space in %" 2908 | }, 2909 | "mode": 0, 2910 | "options": { 2911 | "showDisabledItems": false 2912 | }, 2913 | "refId": "B", 2914 | "resultFormat": "time_series", 2915 | "table": { 2916 | "skipEmptyValues": false 2917 | }, 2918 | "triggers": { 2919 | "acknowledged": 2, 2920 | "count": true, 2921 | "minSeverity": 3 2922 | } 2923 | }, 2924 | { 2925 | "application": { 2926 | "filter": "" 2927 | }, 2928 | "functions": [], 2929 | "group": { 2930 | "filter": "$group" 2931 | }, 2932 | "host": { 2933 | "filter": "$host" 2934 | }, 2935 | "item": { 2936 | "filter": "/home: Free space in %" 2937 | }, 2938 | "mode": 0, 2939 | "options": { 2940 | "showDisabledItems": false 2941 | }, 2942 | "refId": "C", 2943 | "resultFormat": "time_series", 2944 | "table": { 2945 | "skipEmptyValues": false 2946 | }, 2947 | "triggers": { 2948 | "acknowledged": 2, 2949 | "count": true, 2950 | "minSeverity": 3 2951 | } 2952 | }, 2953 | { 2954 | "application": { 2955 | "filter": "" 2956 | }, 2957 | "functions": [], 2958 | "group": { 2959 | "filter": "$group" 2960 | }, 2961 | "host": { 2962 | "filter": "$host" 2963 | }, 2964 | "item": { 2965 | "filter": "/opt: Free space in %" 2966 | }, 2967 | "mode": 0, 2968 | "options": { 2969 | "showDisabledItems": false 2970 | }, 2971 | "refId": "D", 2972 | "resultFormat": "time_series", 2973 | "table": { 2974 | "skipEmptyValues": false 2975 | }, 2976 | "triggers": { 2977 | "acknowledged": 2, 2978 | "count": true, 2979 | "minSeverity": 3 2980 | } 2981 | }, 2982 | { 2983 | "application": { 2984 | "filter": "" 2985 | }, 2986 | "functions": [], 2987 | "group": { 2988 | "filter": "$group" 2989 | }, 2990 | "host": { 2991 | "filter": "$host" 2992 | }, 2993 | "item": { 2994 | "filter": "/var: Free space in %" 2995 | }, 2996 | "mode": 0, 2997 | "options": { 2998 | "showDisabledItems": false 2999 | }, 3000 | "refId": "E", 3001 | "resultFormat": "time_series", 3002 | "table": { 3003 | "skipEmptyValues": false 3004 | }, 3005 | "triggers": { 3006 | "acknowledged": 2, 3007 | "count": true, 3008 | "minSeverity": 3 3009 | } 3010 | } 3011 | ], 3012 | "thresholds": [], 3013 | "timeFrom": null, 3014 | "timeRegions": [], 3015 | "timeShift": null, 3016 | "title": "Free disk space", 3017 | "tooltip": { 3018 | "shared": true, 3019 | "sort": 0, 3020 | "value_type": "individual" 3021 | }, 3022 | "type": "graph", 3023 | "xaxis": { 3024 | "buckets": null, 3025 | "mode": "time", 3026 | "name": null, 3027 | "show": true, 3028 | "values": [] 3029 | }, 3030 | "yaxes": [ 3031 | { 3032 | "decimals": null, 3033 | "format": "percent", 3034 | "label": null, 3035 | "logBase": 1, 3036 | "max": null, 3037 | "min": null, 3038 | "show": true 3039 | }, 3040 | { 3041 | "decimals": null, 3042 | "format": "percent", 3043 | "label": null, 3044 | "logBase": 1, 3045 | "max": null, 3046 | "min": null, 3047 | "show": true 3048 | } 3049 | ], 3050 | "yaxis": { 3051 | "align": false, 3052 | "alignLevel": null 3053 | } 3054 | }, 3055 | { 3056 | "collapsed": false, 3057 | "datasource": null, 3058 | "gridPos": { 3059 | "h": 1, 3060 | "w": 24, 3061 | "x": 0, 3062 | "y": 42 3063 | }, 3064 | "id": 41, 3065 | "panels": [], 3066 | "title": "Zabbix Server Database", 3067 | "type": "row" 3068 | }, 3069 | { 3070 | "cacheTimeout": null, 3071 | "datasource": "Zabbix", 3072 | "fieldConfig": { 3073 | "defaults": { 3074 | "color": { 3075 | "mode": "thresholds" 3076 | }, 3077 | "mappings": [ 3078 | { 3079 | "id": 0, 3080 | "op": "=", 3081 | "text": "N/A", 3082 | "type": 1, 3083 | "value": "null" 3084 | } 3085 | ], 3086 | "thresholds": { 3087 | "mode": "absolute", 3088 | "steps": [ 3089 | { 3090 | "color": "dark-green", 3091 | "value": null 3092 | } 3093 | ] 3094 | }, 3095 | "unit": "dtdurations" 3096 | }, 3097 | "overrides": [] 3098 | }, 3099 | "gridPos": { 3100 | "h": 5, 3101 | "w": 4, 3102 | "x": 0, 3103 | "y": 43 3104 | }, 3105 | "id": 43, 3106 | "interval": null, 3107 | "links": [], 3108 | "maxDataPoints": 100, 3109 | "options": { 3110 | "colorMode": "value", 3111 | "graphMode": "none", 3112 | "justifyMode": "auto", 3113 | "orientation": "horizontal", 3114 | "reduceOptions": { 3115 | "calcs": [ 3116 | "lastNotNull" 3117 | ], 3118 | "fields": "", 3119 | "values": false 3120 | }, 3121 | "text": {}, 3122 | "textMode": "auto" 3123 | }, 3124 | "pluginVersion": "7.5.10", 3125 | "targets": [ 3126 | { 3127 | "application": { 3128 | "filter": "PostgreSQL" 3129 | }, 3130 | "bucketAggs": [ 3131 | { 3132 | "field": "@timestamp", 3133 | "id": "2", 3134 | "settings": { 3135 | "interval": "auto", 3136 | "min_doc_count": 0, 3137 | "trimEdges": 0 3138 | }, 3139 | "type": "date_histogram" 3140 | } 3141 | ], 3142 | "functions": [], 3143 | "group": { 3144 | "filter": "Linux servers" 3145 | }, 3146 | "host": { 3147 | "filter": "postgres-zabbix" 3148 | }, 3149 | "item": { 3150 | "filter": "Status: Uptime" 3151 | }, 3152 | "metrics": [ 3153 | { 3154 | "field": "select field", 3155 | "id": "1", 3156 | "type": "count" 3157 | } 3158 | ], 3159 | "options": { 3160 | "showDisabledItems": false, 3161 | "skipEmptyValues": false 3162 | }, 3163 | "proxy": { 3164 | "filter": "" 3165 | }, 3166 | "queryType": 0, 3167 | "refId": "A", 3168 | "resultFormat": "time_series", 3169 | "table": { 3170 | "skipEmptyValues": false 3171 | }, 3172 | "tags": { 3173 | "filter": "" 3174 | }, 3175 | "timeField": "@timestamp", 3176 | "trigger": { 3177 | "filter": "" 3178 | }, 3179 | "triggers": { 3180 | "acknowledged": 2, 3181 | "count": true, 3182 | "minSeverity": 3 3183 | } 3184 | } 3185 | ], 3186 | "title": "PostgreSQL Uptime", 3187 | "type": "stat" 3188 | }, 3189 | { 3190 | "cacheTimeout": null, 3191 | "colorBackground": false, 3192 | "colorValue": true, 3193 | "colors": [ 3194 | "#d44a3a", 3195 | "rgba(237, 129, 40, 0.89)", 3196 | "#299c46" 3197 | ], 3198 | "datasource": "Zabbix", 3199 | "fieldConfig": { 3200 | "defaults": {}, 3201 | "overrides": [] 3202 | }, 3203 | "format": "none", 3204 | "gauge": { 3205 | "maxValue": 100, 3206 | "minValue": 0, 3207 | "show": false, 3208 | "thresholdLabels": false, 3209 | "thresholdMarkers": true 3210 | }, 3211 | "gridPos": { 3212 | "h": 5, 3213 | "w": 4, 3214 | "x": 4, 3215 | "y": 43 3216 | }, 3217 | "id": 44, 3218 | "interval": null, 3219 | "links": [], 3220 | "mappingType": 1, 3221 | "mappingTypes": [ 3222 | { 3223 | "name": "value to text", 3224 | "value": 1 3225 | }, 3226 | { 3227 | "name": "range to text", 3228 | "value": 2 3229 | } 3230 | ], 3231 | "maxDataPoints": 100, 3232 | "nullPointMode": "connected", 3233 | "nullText": null, 3234 | "postfix": "", 3235 | "postfixFontSize": "50%", 3236 | "prefix": "", 3237 | "prefixFontSize": "50%", 3238 | "rangeMaps": [ 3239 | { 3240 | "from": "null", 3241 | "text": "N/A", 3242 | "to": "null" 3243 | } 3244 | ], 3245 | "sparkline": { 3246 | "fillColor": "rgba(31, 118, 189, 0.18)", 3247 | "full": false, 3248 | "lineColor": "rgb(31, 120, 193)", 3249 | "show": false 3250 | }, 3251 | "tableColumn": "", 3252 | "targets": [ 3253 | { 3254 | "application": { 3255 | "filter": "PostgreSQL" 3256 | }, 3257 | "bucketAggs": [ 3258 | { 3259 | "field": "@timestamp", 3260 | "id": "2", 3261 | "settings": { 3262 | "interval": "auto", 3263 | "min_doc_count": 0, 3264 | "trimEdges": 0 3265 | }, 3266 | "type": "date_histogram" 3267 | } 3268 | ], 3269 | "functions": [], 3270 | "group": { 3271 | "filter": "Linux servers" 3272 | }, 3273 | "host": { 3274 | "filter": "postgres-zabbix" 3275 | }, 3276 | "item": { 3277 | "filter": "Status: Ping" 3278 | }, 3279 | "metrics": [ 3280 | { 3281 | "field": "select field", 3282 | "id": "1", 3283 | "type": "count" 3284 | } 3285 | ], 3286 | "options": { 3287 | "showDisabledItems": false, 3288 | "skipEmptyValues": false 3289 | }, 3290 | "proxy": { 3291 | "filter": "" 3292 | }, 3293 | "queryType": 0, 3294 | "refId": "A", 3295 | "resultFormat": "time_series", 3296 | "table": { 3297 | "skipEmptyValues": false 3298 | }, 3299 | "tags": { 3300 | "filter": "" 3301 | }, 3302 | "timeField": "@timestamp", 3303 | "trigger": { 3304 | "filter": "" 3305 | }, 3306 | "triggers": { 3307 | "acknowledged": 2, 3308 | "count": true, 3309 | "minSeverity": 3 3310 | } 3311 | } 3312 | ], 3313 | "thresholds": "0,1", 3314 | "title": "PostgreSQL Status", 3315 | "type": "singlestat", 3316 | "valueFontSize": "80%", 3317 | "valueMaps": [ 3318 | { 3319 | "op": "=", 3320 | "text": "Down", 3321 | "value": "0" 3322 | }, 3323 | { 3324 | "op": "=", 3325 | "text": "UP", 3326 | "value": "1" 3327 | } 3328 | ], 3329 | "valueName": "current" 3330 | }, 3331 | { 3332 | "cacheTimeout": null, 3333 | "datasource": "Zabbix", 3334 | "fieldConfig": { 3335 | "defaults": { 3336 | "color": { 3337 | "mode": "thresholds" 3338 | }, 3339 | "mappings": [], 3340 | "thresholds": { 3341 | "mode": "absolute", 3342 | "steps": [ 3343 | { 3344 | "color": "dark-green", 3345 | "value": null 3346 | } 3347 | ] 3348 | }, 3349 | "unit": "none" 3350 | }, 3351 | "overrides": [] 3352 | }, 3353 | "gridPos": { 3354 | "h": 5, 3355 | "w": 4, 3356 | "x": 8, 3357 | "y": 43 3358 | }, 3359 | "hideTimeOverride": true, 3360 | "id": 51, 3361 | "interval": null, 3362 | "links": [], 3363 | "maxDataPoints": "", 3364 | "options": { 3365 | "colorMode": "value", 3366 | "graphMode": "none", 3367 | "justifyMode": "auto", 3368 | "orientation": "horizontal", 3369 | "reduceOptions": { 3370 | "calcs": [ 3371 | "lastNotNull" 3372 | ], 3373 | "fields": "", 3374 | "values": false 3375 | }, 3376 | "text": {}, 3377 | "textMode": "auto" 3378 | }, 3379 | "pluginVersion": "7.5.10", 3380 | "targets": [ 3381 | { 3382 | "application": { 3383 | "filter": "PostgreSQL" 3384 | }, 3385 | "bucketAggs": [ 3386 | { 3387 | "field": "@timestamp", 3388 | "id": "2", 3389 | "settings": { 3390 | "interval": "auto", 3391 | "min_doc_count": 0, 3392 | "trimEdges": 0 3393 | }, 3394 | "type": "date_histogram" 3395 | } 3396 | ], 3397 | "functions": [], 3398 | "group": { 3399 | "filter": "Linux servers" 3400 | }, 3401 | "host": { 3402 | "filter": "postgres-zabbix" 3403 | }, 3404 | "item": { 3405 | "filter": "Connections sum: Active" 3406 | }, 3407 | "metrics": [ 3408 | { 3409 | "field": "select field", 3410 | "id": "1", 3411 | "type": "count" 3412 | } 3413 | ], 3414 | "options": { 3415 | "showDisabledItems": false, 3416 | "skipEmptyValues": false 3417 | }, 3418 | "proxy": { 3419 | "filter": "" 3420 | }, 3421 | "queryType": 0, 3422 | "refId": "A", 3423 | "resultFormat": "time_series", 3424 | "table": { 3425 | "skipEmptyValues": false 3426 | }, 3427 | "tags": { 3428 | "filter": "" 3429 | }, 3430 | "textFilter": "", 3431 | "timeField": "@timestamp", 3432 | "trigger": { 3433 | "filter": "" 3434 | }, 3435 | "triggers": { 3436 | "acknowledged": 2, 3437 | "count": true, 3438 | "minSeverity": 3 3439 | }, 3440 | "useCaptureGroups": false 3441 | } 3442 | ], 3443 | "timeFrom": "15m", 3444 | "timeShift": null, 3445 | "title": "Connections sum: Active", 3446 | "type": "stat" 3447 | }, 3448 | { 3449 | "aliasColors": { 3450 | "MySQL delete operations per second": "#bf1b00", 3451 | "MySQL insert operations per second": "#64b0c8", 3452 | "MySQL queries per second": "#f4d598", 3453 | "MySQL select operations per second": "#6ed0e0", 3454 | "MySQL slow queries": "#f29191" 3455 | }, 3456 | "bars": false, 3457 | "cacheTimeout": null, 3458 | "dashLength": 10, 3459 | "dashes": false, 3460 | "datasource": "Zabbix", 3461 | "fieldConfig": { 3462 | "defaults": { 3463 | "links": [] 3464 | }, 3465 | "overrides": [] 3466 | }, 3467 | "fill": 2, 3468 | "fillGradient": 3, 3469 | "gridPos": { 3470 | "h": 9, 3471 | "w": 12, 3472 | "x": 12, 3473 | "y": 43 3474 | }, 3475 | "hiddenSeries": false, 3476 | "id": 50, 3477 | "interval": null, 3478 | "legend": { 3479 | "alignAsTable": true, 3480 | "avg": true, 3481 | "current": true, 3482 | "max": true, 3483 | "min": false, 3484 | "show": true, 3485 | "total": false, 3486 | "values": true 3487 | }, 3488 | "lines": true, 3489 | "linewidth": 2, 3490 | "links": [], 3491 | "nullPointMode": "connected", 3492 | "options": { 3493 | "alertThreshold": true 3494 | }, 3495 | "percentage": false, 3496 | "pluginVersion": "7.5.10", 3497 | "pointradius": 2, 3498 | "points": false, 3499 | "renderer": "flot", 3500 | "seriesOverrides": [ 3501 | { 3502 | "alias": "DB zabbix: Database size", 3503 | "fill": 0, 3504 | "pointradius": 3, 3505 | "points": true 3506 | } 3507 | ], 3508 | "spaceLength": 10, 3509 | "stack": false, 3510 | "steppedLine": false, 3511 | "targets": [ 3512 | { 3513 | "application": { 3514 | "filter": "/.*/" 3515 | }, 3516 | "bucketAggs": [ 3517 | { 3518 | "field": "@timestamp", 3519 | "id": "2", 3520 | "settings": { 3521 | "interval": "auto", 3522 | "min_doc_count": 0, 3523 | "trimEdges": 0 3524 | }, 3525 | "type": "date_histogram" 3526 | } 3527 | ], 3528 | "functions": [], 3529 | "group": { 3530 | "filter": "Linux servers" 3531 | }, 3532 | "host": { 3533 | "filter": "postgres-zabbix" 3534 | }, 3535 | "item": { 3536 | "filter": "DB zabbix: Database size" 3537 | }, 3538 | "metrics": [ 3539 | { 3540 | "field": "select field", 3541 | "id": "1", 3542 | "type": "count" 3543 | } 3544 | ], 3545 | "options": { 3546 | "showDisabledItems": false, 3547 | "skipEmptyValues": false 3548 | }, 3549 | "proxy": { 3550 | "filter": "" 3551 | }, 3552 | "queryType": 0, 3553 | "refId": "A", 3554 | "resultFormat": "time_series", 3555 | "table": { 3556 | "skipEmptyValues": false 3557 | }, 3558 | "tags": { 3559 | "filter": "" 3560 | }, 3561 | "timeField": "@timestamp", 3562 | "trigger": { 3563 | "filter": "" 3564 | }, 3565 | "triggers": { 3566 | "acknowledged": 2, 3567 | "count": true, 3568 | "minSeverity": 3 3569 | } 3570 | } 3571 | ], 3572 | "thresholds": [], 3573 | "timeFrom": null, 3574 | "timeRegions": [], 3575 | "timeShift": null, 3576 | "title": "Database size", 3577 | "tooltip": { 3578 | "shared": true, 3579 | "sort": 0, 3580 | "value_type": "individual" 3581 | }, 3582 | "type": "graph", 3583 | "xaxis": { 3584 | "buckets": null, 3585 | "mode": "time", 3586 | "name": null, 3587 | "show": true, 3588 | "values": [] 3589 | }, 3590 | "yaxes": [ 3591 | { 3592 | "decimals": 2, 3593 | "format": "decbytes", 3594 | "label": null, 3595 | "logBase": 1, 3596 | "max": null, 3597 | "min": null, 3598 | "show": true 3599 | }, 3600 | { 3601 | "decimals": 2, 3602 | "format": "decbytes", 3603 | "label": null, 3604 | "logBase": 1, 3605 | "max": null, 3606 | "min": null, 3607 | "show": true 3608 | } 3609 | ], 3610 | "yaxis": { 3611 | "align": false, 3612 | "alignLevel": null 3613 | } 3614 | }, 3615 | { 3616 | "aliasColors": { 3617 | "MySQL slow queries": "#f29191" 3618 | }, 3619 | "bars": false, 3620 | "dashLength": 10, 3621 | "dashes": false, 3622 | "datasource": "Zabbix", 3623 | "fieldConfig": { 3624 | "defaults": { 3625 | "links": [] 3626 | }, 3627 | "overrides": [] 3628 | }, 3629 | "fill": 1, 3630 | "fillGradient": 0, 3631 | "gridPos": { 3632 | "h": 4, 3633 | "w": 12, 3634 | "x": 0, 3635 | "y": 48 3636 | }, 3637 | "hiddenSeries": false, 3638 | "id": 46, 3639 | "legend": { 3640 | "alignAsTable": true, 3641 | "avg": true, 3642 | "current": true, 3643 | "max": true, 3644 | "min": false, 3645 | "show": true, 3646 | "total": false, 3647 | "values": true 3648 | }, 3649 | "lines": true, 3650 | "linewidth": 1, 3651 | "links": [], 3652 | "nullPointMode": "null", 3653 | "options": { 3654 | "alertThreshold": true 3655 | }, 3656 | "percentage": false, 3657 | "pluginVersion": "7.5.10", 3658 | "pointradius": 2, 3659 | "points": false, 3660 | "renderer": "flot", 3661 | "seriesOverrides": [], 3662 | "spaceLength": 10, 3663 | "stack": false, 3664 | "steppedLine": false, 3665 | "targets": [ 3666 | { 3667 | "application": { 3668 | "filter": "" 3669 | }, 3670 | "bucketAggs": [ 3671 | { 3672 | "field": "@timestamp", 3673 | "id": "2", 3674 | "settings": { 3675 | "interval": "auto", 3676 | "min_doc_count": 0, 3677 | "trimEdges": 0 3678 | }, 3679 | "type": "date_histogram" 3680 | } 3681 | ], 3682 | "functions": [], 3683 | "group": { 3684 | "filter": "Linux servers" 3685 | }, 3686 | "host": { 3687 | "filter": "postgres-zabbix" 3688 | }, 3689 | "item": { 3690 | "filter": "Bgwriter: Buffers allocated per second" 3691 | }, 3692 | "metrics": [ 3693 | { 3694 | "field": "select field", 3695 | "id": "1", 3696 | "type": "count" 3697 | } 3698 | ], 3699 | "options": { 3700 | "showDisabledItems": false, 3701 | "skipEmptyValues": false 3702 | }, 3703 | "proxy": { 3704 | "filter": "" 3705 | }, 3706 | "queryType": 0, 3707 | "refId": "A", 3708 | "resultFormat": "time_series", 3709 | "table": { 3710 | "skipEmptyValues": false 3711 | }, 3712 | "tags": { 3713 | "filter": "" 3714 | }, 3715 | "timeField": "@timestamp", 3716 | "trigger": { 3717 | "filter": "" 3718 | }, 3719 | "triggers": { 3720 | "acknowledged": 2, 3721 | "count": true, 3722 | "minSeverity": 3 3723 | } 3724 | } 3725 | ], 3726 | "thresholds": [], 3727 | "timeFrom": null, 3728 | "timeRegions": [], 3729 | "timeShift": null, 3730 | "title": " Buffers allocated per second", 3731 | "tooltip": { 3732 | "shared": true, 3733 | "sort": 0, 3734 | "value_type": "individual" 3735 | }, 3736 | "type": "graph", 3737 | "xaxis": { 3738 | "buckets": null, 3739 | "mode": "time", 3740 | "name": null, 3741 | "show": true, 3742 | "values": [] 3743 | }, 3744 | "yaxes": [ 3745 | { 3746 | "format": "Bps", 3747 | "label": null, 3748 | "logBase": 1, 3749 | "max": null, 3750 | "min": null, 3751 | "show": true 3752 | }, 3753 | { 3754 | "format": "decbytes", 3755 | "label": null, 3756 | "logBase": 1, 3757 | "max": null, 3758 | "min": null, 3759 | "show": true 3760 | } 3761 | ], 3762 | "yaxis": { 3763 | "align": false, 3764 | "alignLevel": null 3765 | } 3766 | }, 3767 | { 3768 | "aliasColors": { 3769 | "MySQL delete operations per second": "#bf1b00", 3770 | "MySQL insert operations per second": "#64b0c8", 3771 | "MySQL slow queries": "#f29191", 3772 | "MySQL update operations per second": "#f2c96d" 3773 | }, 3774 | "bars": false, 3775 | "dashLength": 10, 3776 | "dashes": false, 3777 | "datasource": "Zabbix", 3778 | "fieldConfig": { 3779 | "defaults": { 3780 | "links": [] 3781 | }, 3782 | "overrides": [] 3783 | }, 3784 | "fill": 2, 3785 | "fillGradient": 0, 3786 | "gridPos": { 3787 | "h": 7, 3788 | "w": 8, 3789 | "x": 0, 3790 | "y": 52 3791 | }, 3792 | "hiddenSeries": false, 3793 | "id": 49, 3794 | "legend": { 3795 | "alignAsTable": false, 3796 | "avg": false, 3797 | "current": false, 3798 | "max": false, 3799 | "min": false, 3800 | "show": true, 3801 | "total": false, 3802 | "values": false 3803 | }, 3804 | "lines": true, 3805 | "linewidth": 3, 3806 | "links": [], 3807 | "nullPointMode": "connected", 3808 | "options": { 3809 | "alertThreshold": true 3810 | }, 3811 | "percentage": false, 3812 | "pluginVersion": "7.5.10", 3813 | "pointradius": 2, 3814 | "points": false, 3815 | "renderer": "flot", 3816 | "seriesOverrides": [], 3817 | "spaceLength": 10, 3818 | "stack": false, 3819 | "steppedLine": false, 3820 | "targets": [ 3821 | { 3822 | "application": { 3823 | "filter": "" 3824 | }, 3825 | "functions": [], 3826 | "group": { 3827 | "filter": "Linux servers" 3828 | }, 3829 | "host": { 3830 | "filter": "postgres-zabbix" 3831 | }, 3832 | "item": { 3833 | "filter": "Status: Cache hit ratio %" 3834 | }, 3835 | "options": { 3836 | "showDisabledItems": false, 3837 | "skipEmptyValues": false 3838 | }, 3839 | "proxy": { 3840 | "filter": "" 3841 | }, 3842 | "queryType": 0, 3843 | "refId": "A", 3844 | "resultFormat": "time_series", 3845 | "table": { 3846 | "skipEmptyValues": false 3847 | }, 3848 | "tags": { 3849 | "filter": "" 3850 | }, 3851 | "trigger": { 3852 | "filter": "" 3853 | }, 3854 | "triggers": { 3855 | "acknowledged": 2, 3856 | "count": true, 3857 | "minSeverity": 3 3858 | } 3859 | } 3860 | ], 3861 | "thresholds": [], 3862 | "timeFrom": null, 3863 | "timeRegions": [], 3864 | "timeShift": null, 3865 | "title": "Cache hit ratio %", 3866 | "tooltip": { 3867 | "shared": true, 3868 | "sort": 0, 3869 | "value_type": "individual" 3870 | }, 3871 | "type": "graph", 3872 | "xaxis": { 3873 | "buckets": null, 3874 | "mode": "time", 3875 | "name": null, 3876 | "show": true, 3877 | "values": [] 3878 | }, 3879 | "yaxes": [ 3880 | { 3881 | "decimals": null, 3882 | "format": "percent", 3883 | "label": null, 3884 | "logBase": 1, 3885 | "max": null, 3886 | "min": null, 3887 | "show": true 3888 | }, 3889 | { 3890 | "format": "percent", 3891 | "label": null, 3892 | "logBase": 1, 3893 | "max": null, 3894 | "min": null, 3895 | "show": true 3896 | } 3897 | ], 3898 | "yaxis": { 3899 | "align": false, 3900 | "alignLevel": null 3901 | } 3902 | }, 3903 | { 3904 | "aliasColors": { 3905 | "MySQL slow queries": "#f29191" 3906 | }, 3907 | "bars": false, 3908 | "dashLength": 10, 3909 | "dashes": false, 3910 | "datasource": "Zabbix", 3911 | "fieldConfig": { 3912 | "defaults": { 3913 | "links": [] 3914 | }, 3915 | "overrides": [] 3916 | }, 3917 | "fill": 3, 3918 | "fillGradient": 0, 3919 | "gridPos": { 3920 | "h": 7, 3921 | "w": 8, 3922 | "x": 8, 3923 | "y": 52 3924 | }, 3925 | "hiddenSeries": false, 3926 | "id": 47, 3927 | "legend": { 3928 | "alignAsTable": true, 3929 | "avg": true, 3930 | "current": true, 3931 | "max": true, 3932 | "min": false, 3933 | "show": true, 3934 | "total": false, 3935 | "values": true 3936 | }, 3937 | "lines": true, 3938 | "linewidth": 1, 3939 | "links": [], 3940 | "nullPointMode": "null", 3941 | "options": { 3942 | "alertThreshold": true 3943 | }, 3944 | "percentage": false, 3945 | "pluginVersion": "7.5.10", 3946 | "pointradius": 2, 3947 | "points": false, 3948 | "renderer": "flot", 3949 | "seriesOverrides": [], 3950 | "spaceLength": 10, 3951 | "stack": false, 3952 | "steppedLine": false, 3953 | "targets": [ 3954 | { 3955 | "application": { 3956 | "filter": "" 3957 | }, 3958 | "bucketAggs": [ 3959 | { 3960 | "field": "@timestamp", 3961 | "id": "2", 3962 | "settings": { 3963 | "interval": "auto", 3964 | "min_doc_count": 0, 3965 | "trimEdges": 0 3966 | }, 3967 | "type": "date_histogram" 3968 | } 3969 | ], 3970 | "functions": [], 3971 | "group": { 3972 | "filter": "Linux servers" 3973 | }, 3974 | "host": { 3975 | "filter": "postgres-zabbix" 3976 | }, 3977 | "item": { 3978 | "filter": "DB zabbix: Tuples inserted per second" 3979 | }, 3980 | "metrics": [ 3981 | { 3982 | "field": "select field", 3983 | "id": "1", 3984 | "type": "count" 3985 | } 3986 | ], 3987 | "options": { 3988 | "showDisabledItems": false, 3989 | "skipEmptyValues": false 3990 | }, 3991 | "proxy": { 3992 | "filter": "" 3993 | }, 3994 | "queryType": 0, 3995 | "refId": "B", 3996 | "resultFormat": "time_series", 3997 | "table": { 3998 | "skipEmptyValues": false 3999 | }, 4000 | "tags": { 4001 | "filter": "" 4002 | }, 4003 | "timeField": "@timestamp", 4004 | "trigger": { 4005 | "filter": "" 4006 | }, 4007 | "triggers": { 4008 | "acknowledged": 2, 4009 | "count": true, 4010 | "minSeverity": 3 4011 | } 4012 | }, 4013 | { 4014 | "application": { 4015 | "filter": "" 4016 | }, 4017 | "bucketAggs": [ 4018 | { 4019 | "field": "@timestamp", 4020 | "id": "2", 4021 | "settings": { 4022 | "interval": "auto", 4023 | "min_doc_count": 0, 4024 | "trimEdges": 0 4025 | }, 4026 | "type": "date_histogram" 4027 | } 4028 | ], 4029 | "functions": [], 4030 | "group": { 4031 | "filter": "Linux servers" 4032 | }, 4033 | "host": { 4034 | "filter": "postgres-zabbix" 4035 | }, 4036 | "item": { 4037 | "filter": "DB zabbix: Tuples deleted per second" 4038 | }, 4039 | "metrics": [ 4040 | { 4041 | "field": "select field", 4042 | "id": "1", 4043 | "type": "count" 4044 | } 4045 | ], 4046 | "options": { 4047 | "showDisabledItems": false, 4048 | "skipEmptyValues": false 4049 | }, 4050 | "proxy": { 4051 | "filter": "" 4052 | }, 4053 | "queryType": 0, 4054 | "refId": "A", 4055 | "resultFormat": "time_series", 4056 | "table": { 4057 | "skipEmptyValues": false 4058 | }, 4059 | "tags": { 4060 | "filter": "" 4061 | }, 4062 | "timeField": "@timestamp", 4063 | "trigger": { 4064 | "filter": "" 4065 | }, 4066 | "triggers": { 4067 | "acknowledged": 2, 4068 | "count": true, 4069 | "minSeverity": 3 4070 | } 4071 | } 4072 | ], 4073 | "thresholds": [], 4074 | "timeFrom": null, 4075 | "timeRegions": [], 4076 | "timeShift": null, 4077 | "title": "Tuples inserted/deleted per second", 4078 | "tooltip": { 4079 | "shared": true, 4080 | "sort": 0, 4081 | "value_type": "individual" 4082 | }, 4083 | "type": "graph", 4084 | "xaxis": { 4085 | "buckets": null, 4086 | "mode": "time", 4087 | "name": null, 4088 | "show": true, 4089 | "values": [] 4090 | }, 4091 | "yaxes": [ 4092 | { 4093 | "decimals": 2, 4094 | "format": "s", 4095 | "label": null, 4096 | "logBase": 1, 4097 | "max": null, 4098 | "min": null, 4099 | "show": true 4100 | }, 4101 | { 4102 | "decimals": 2, 4103 | "format": "s", 4104 | "label": null, 4105 | "logBase": 1, 4106 | "max": null, 4107 | "min": null, 4108 | "show": true 4109 | } 4110 | ], 4111 | "yaxis": { 4112 | "align": false, 4113 | "alignLevel": null 4114 | } 4115 | }, 4116 | { 4117 | "aliasColors": { 4118 | "MySQL rollback operations per second": "#bf1b00", 4119 | "MySQL slow queries": "#f29191" 4120 | }, 4121 | "bars": false, 4122 | "dashLength": 10, 4123 | "dashes": false, 4124 | "datasource": "Zabbix", 4125 | "fieldConfig": { 4126 | "defaults": { 4127 | "links": [] 4128 | }, 4129 | "overrides": [] 4130 | }, 4131 | "fill": 2, 4132 | "fillGradient": 0, 4133 | "gridPos": { 4134 | "h": 7, 4135 | "w": 8, 4136 | "x": 16, 4137 | "y": 52 4138 | }, 4139 | "hiddenSeries": false, 4140 | "id": 48, 4141 | "legend": { 4142 | "alignAsTable": true, 4143 | "avg": true, 4144 | "current": true, 4145 | "max": true, 4146 | "min": false, 4147 | "show": true, 4148 | "total": false, 4149 | "values": true 4150 | }, 4151 | "lines": true, 4152 | "linewidth": 3, 4153 | "links": [], 4154 | "nullPointMode": "null", 4155 | "options": { 4156 | "alertThreshold": true 4157 | }, 4158 | "percentage": false, 4159 | "pluginVersion": "7.5.10", 4160 | "pointradius": 2, 4161 | "points": false, 4162 | "renderer": "flot", 4163 | "seriesOverrides": [], 4164 | "spaceLength": 10, 4165 | "stack": false, 4166 | "steppedLine": false, 4167 | "targets": [ 4168 | { 4169 | "application": { 4170 | "filter": "" 4171 | }, 4172 | "bucketAggs": [ 4173 | { 4174 | "field": "@timestamp", 4175 | "id": "2", 4176 | "settings": { 4177 | "interval": "auto", 4178 | "min_doc_count": 0, 4179 | "trimEdges": 0 4180 | }, 4181 | "type": "date_histogram" 4182 | } 4183 | ], 4184 | "functions": [], 4185 | "group": { 4186 | "filter": "Linux servers" 4187 | }, 4188 | "host": { 4189 | "filter": "postgres-zabbix" 4190 | }, 4191 | "item": { 4192 | "filter": "DB zabbix: Commits per second" 4193 | }, 4194 | "metrics": [ 4195 | { 4196 | "field": "select field", 4197 | "id": "1", 4198 | "type": "count" 4199 | } 4200 | ], 4201 | "options": { 4202 | "showDisabledItems": false, 4203 | "skipEmptyValues": false 4204 | }, 4205 | "proxy": { 4206 | "filter": "" 4207 | }, 4208 | "queryType": 0, 4209 | "refId": "A", 4210 | "resultFormat": "time_series", 4211 | "table": { 4212 | "skipEmptyValues": false 4213 | }, 4214 | "tags": { 4215 | "filter": "" 4216 | }, 4217 | "timeField": "@timestamp", 4218 | "trigger": { 4219 | "filter": "" 4220 | }, 4221 | "triggers": { 4222 | "acknowledged": 2, 4223 | "count": true, 4224 | "minSeverity": 3 4225 | } 4226 | } 4227 | ], 4228 | "thresholds": [], 4229 | "timeFrom": null, 4230 | "timeRegions": [], 4231 | "timeShift": null, 4232 | "title": "Commits per second", 4233 | "tooltip": { 4234 | "shared": true, 4235 | "sort": 0, 4236 | "value_type": "individual" 4237 | }, 4238 | "type": "graph", 4239 | "xaxis": { 4240 | "buckets": null, 4241 | "mode": "time", 4242 | "name": null, 4243 | "show": true, 4244 | "values": [] 4245 | }, 4246 | "yaxes": [ 4247 | { 4248 | "decimals": 1, 4249 | "format": "s", 4250 | "label": null, 4251 | "logBase": 1, 4252 | "max": null, 4253 | "min": null, 4254 | "show": true 4255 | }, 4256 | { 4257 | "decimals": 1, 4258 | "format": "s", 4259 | "label": null, 4260 | "logBase": 1, 4261 | "max": null, 4262 | "min": null, 4263 | "show": true 4264 | } 4265 | ], 4266 | "yaxis": { 4267 | "align": false, 4268 | "alignLevel": null 4269 | } 4270 | } 4271 | ], 4272 | "refresh": "1m", 4273 | "schemaVersion": 27, 4274 | "style": "dark", 4275 | "tags": [ 4276 | "Zabbix 5.0", 4277 | "4Linux" 4278 | ], 4279 | "templating": { 4280 | "list": [ 4281 | { 4282 | "allValue": null, 4283 | "current": { 4284 | "selected": false, 4285 | "text": "All", 4286 | "value": "$__all" 4287 | }, 4288 | "datasource": "Zabbix", 4289 | "definition": "Zabbix - group", 4290 | "description": null, 4291 | "error": null, 4292 | "hide": 0, 4293 | "includeAll": true, 4294 | "label": "GROUP", 4295 | "multi": true, 4296 | "name": "group", 4297 | "options": [], 4298 | "query": { 4299 | "application": "", 4300 | "group": "/.*/", 4301 | "host": "", 4302 | "item": "", 4303 | "queryType": "group" 4304 | }, 4305 | "refresh": 1, 4306 | "regex": "/^(?!Discovered)(?!Template)(?!Zabbix)/", 4307 | "skipUrlSync": false, 4308 | "sort": 0, 4309 | "tagValuesQuery": "", 4310 | "tags": [], 4311 | "tagsQuery": "", 4312 | "type": "query", 4313 | "useTags": false 4314 | }, 4315 | { 4316 | "allValue": null, 4317 | "current": { 4318 | "selected": false, 4319 | "text": "centos8-hands-on", 4320 | "value": "centos8-hands-on" 4321 | }, 4322 | "datasource": "Zabbix", 4323 | "definition": "", 4324 | "description": null, 4325 | "error": null, 4326 | "hide": 0, 4327 | "includeAll": false, 4328 | "label": "HOST", 4329 | "multi": false, 4330 | "name": "host", 4331 | "options": [], 4332 | "query": "$group.*", 4333 | "refresh": 1, 4334 | "regex": "", 4335 | "skipUrlSync": false, 4336 | "sort": 0, 4337 | "tagValuesQuery": "", 4338 | "tags": [], 4339 | "tagsQuery": "", 4340 | "type": "query", 4341 | "useTags": false 4342 | } 4343 | ] 4344 | }, 4345 | "time": { 4346 | "from": "now-5m", 4347 | "to": "now" 4348 | }, 4349 | "timepicker": { 4350 | "hidden": false, 4351 | "refresh_intervals": [ 4352 | "5s", 4353 | "10s", 4354 | "30s", 4355 | "1m", 4356 | "5m", 4357 | "15m", 4358 | "30m", 4359 | "1h", 4360 | "2h", 4361 | "1d" 4362 | ], 4363 | "time_options": [ 4364 | "5m", 4365 | "15m", 4366 | "1h", 4367 | "6h", 4368 | "12h", 4369 | "24h", 4370 | "2d", 4371 | "7d", 4372 | "30d" 4373 | ] 4374 | }, 4375 | "timezone": "browser", 4376 | "title": "Zabbix Server Dashboard", 4377 | "uid": "000000098", 4378 | "version": 1 4379 | } 4380 | --------------------------------------------------------------------------------