docs: Add documentation for the sysmon roots

This commit is contained in:
k32 2022-02-18 16:26:18 +01:00
parent 8566d2e246
commit 1c62c6e60b
2 changed files with 13 additions and 4 deletions

View File

@ -18,6 +18,7 @@ jobs:
- uses: actions/download-artifact@v2
with:
name: emqx-24.1.5-4-ubuntu20.04
workflow: build_slim_packages.yaml
path: .
- name: Run spellcheck
run: |

View File

@ -922,15 +922,23 @@ fields("broker_perf") ->
fields("sysmon") ->
[ {"vm",
sc(ref("sysmon_vm"),
#{})
#{ desc => "This part of the configuration is responsible for collecting
BEAM VM events, such as long garbage collection, traffic congesiton in the inter-broker
communication, etc."
})
}
, {"os",
sc(ref("sysmon_os"),
#{})
#{ desc => "This part of the configuration is responsible for monitoring
the host OS health, such as free memory, disk space, CPU load, etc."
})
}
, {"top",
sc(ref("sysmon_top"),
#{})
#{ desc => "This part of the configuration is responsible for monitoring
the Erlang processes in the VM. This information can be sent to an external
PostgreSQL database. This feature is inactive unless the PostgreSQL sink is configured."
})
}
];