# System Events and Services NATS servers leverage [Accounts](../../configuration/securing_nats/auth_intro/accounts.md) support and generate events such as: * account connect/disconnect * authentication errors * server shutdown * server stat summary In addition the server supports a limited number of requests that can be used to query for account connections, server stat summaries, and pinging servers in the cluster. These events are enabled by configuring `system_account` and [subscribing/requesting](#Available-Events-and-Services) using a _system account_ user. [Accounts](../../configuration/securing_nats/auth_intro/accounts.md) are used so that subscriptions from your applications, say `>`, do not receive system events and vice versa. Using accounts requires either: * [Configuring authentication locally](#Local-Configuration) and listing one of the accounts in `system_account` * Or by using decentralized authentication and authorization via [jwt](../../configuration/securing_nats/auth_intro/jwt_auth.md) as shown in this [Tutorial](sys_accounts.md). ## Available Events and Services The system account publishes messages under well known subject patterns. Server initiated events: * `$SYS.ACCOUNT..CONNECT` \(client connects\) * `$SYS.ACCOUNT..DISCONNECT` \(client disconnects\) * `$SYS.SERVER.ACCOUNT..CONNS` \(connections for an account changed\) * `$SYS.SERVER..CLIENT.AUTH.ERR` \(authentication error\) * `$SYS.ACCOUNT..LEAFNODE.CONNECT` \(leaf node connnects\) * `$SYS.ACCOUNT..LEAFNODE.DISCONNECT` \(leaf node disconnects\) * `$SYS.SERVER..STATSZ` \(stats summary\) In addition other tools with system account privileges, can initiate requests (Examples can be found [here](sys_accounts.md#System-Services)): * `$SYS.REQ.SERVER..STATSZ` \(request server stat summary\) * `$SYS.REQ.SERVER.PING` \(discover servers - will return multiple messages\) Servers like `nats-account-server` publish system account messages when a claim is updated, the nats-server listens for them, and updates its account information accordingly: * `$SYS.ACCOUNT..CLAIMS.UPDATE` With these few messages you can build useful monitoring tools: * health/load of your servers * client connects/disconnects * account connections * authentication errors ## Local Configuration To make use of System events, just using accounts, your configuration can look like this: ```text accounts: { USERS: { users: [ {user: a, password: a} ] }, SYS: { users: [ {user: admin, password: changeit} ] }, } system_account: SYS ``` Subscribe to all system events like this `nats-sub -s nats://admin:changeit@localhost:4222 ">"` and observe what happens when you do something like `nats-pub -s "nats://a:a@localhost:4222" foo bar`. Examples on how to use system services can be found [here](sys_accounts.md#System-Services).