File: stats.list

package info (click to toggle)
poolcounter 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: ansic: 1,065; python: 458; makefile: 33
file content (15 lines) | stat: -rw-r--r-- 1,036 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/* Preprocessor template for iterating the stats items */
COMMAND(total_acquired) /* Total number of acquired locks */
COMMAND(total_releases) /* Total number of released locks */
COMMAND(hashtable_entries) /* Number of locks currently held */
COMMAND(processing_workers) /* Number of workers currently doing work */
COMMAND(waiting_workers) /* Number of workers currently waiting for a lock */
COMMAND(connect_errors) /* Clients whose connection couldn't be served */
COMMAND(failed_sends) /* Number of send() calls which didn't succeed */
COMMAND(full_queues) /* Number of times locks were refused because the queue already had so many workers */
COMMAND(lock_mismatch) /* Number of times a user tried to do a lock when there aren't any free locks */
COMMAND(lock_while_waiting) /* Number of times a user tried to do a lock without waiting for a response from the last request */
COMMAND(release_mismatch) /* Number of times a user tried to do a release without a previous lock */
COMMAND(processed_count) /* Count of processing */