Tests about a simple python3 fastcgi runner using libfcgi and the Python-C API.
python
c
wsgi
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stats.h 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Copyright (C) 2019 Weber Yann
  3. *
  4. * This file is part of PyFCGI.
  5. *
  6. * PyFCGI is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * any later version.
  10. *
  11. * PyFCGI is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with PyFCGI. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /**@file stats.h
  20. * @ingroup monitoring */
  21. #ifndef _STATS__H___
  22. #define _STATS__H___
  23. #include "config.h"
  24. #include <fcgiapp.h>
  25. #include <stdarg.h>
  26. #include <signal.h>
  27. #include <string.h>
  28. #define PYFCGI_STATS_SZ (900)
  29. typedef struct pyfcgi_stats_s pyfcgi_stats_t;
  30. typedef struct pyfcgi_stats_sample_s pyfcgi_stats_sample_t;
  31. typedef struct pyfcgi_stats_shm_s pyfcgi_stats_shm_t;
  32. #include "conf.h"
  33. #include "logger.h"
  34. /**@brief Stores data for stats on 15min (900s) */
  35. struct pyfcgi_stats_sample_s
  36. {
  37. /**@brief One sample per seconds */
  38. int samples[PYFCGI_STATS_SZ];
  39. /**@brief Current sample */
  40. int cur;
  41. };
  42. struct pyfcgi_stats_s
  43. {
  44. /**@brief Request per seconds on 15 minutes */
  45. pyfcgi_stats_sample_t reqs;
  46. /**@brief Worker count */
  47. pyfcgi_stats_sample_t wcount;
  48. /**@brief Load */
  49. pyfcgi_stats_sample_t load;
  50. /**@brief Repeating 1s timer sending SIGALRM */
  51. timer_t timerid;
  52. /**@brief Old SIGALRM handler */
  53. struct sigaction oldact;
  54. /**@brief Buffer to format the statistics before sending them */
  55. char *buff;
  56. size_t buff_ptr;
  57. size_t buff_len;
  58. };
  59. struct pyfcgi_stats_shm_s
  60. {
  61. int nworker;
  62. int pool_load;
  63. };
  64. /**@brief Starts collecting statistics
  65. *
  66. * Set an handler for SIGALRM and set a repeating alarm each seconds
  67. * @warning designed to be called from monitor server process
  68. * @return -1 on error else 0
  69. */
  70. int pyfcgi_stats_init();
  71. /**@brief SIGALRM signal handler
  72. * @param int signum
  73. */
  74. void pyfcgi_stats_collector(int);
  75. /**@brief Format all stats in a buffer
  76. * @note uses the pyfcgi_stats.statsbuff buffer */
  77. size_t pyfcgi_stats_format();
  78. /**@brief Print in buffer using buff_ptr index
  79. *@note exit on mem alloc failure
  80. */
  81. void pyfcgi_stats_buffprintf(const char *fmt, ...);
  82. /**@brief Allocate the buffer with at least given space
  83. * @param size_t sz the minimum buffer size
  84. * @note allocation size is rounded
  85. * @return 0 if OK else -1
  86. */
  87. int pyfcgi_stats_reqbuff(size_t);
  88. /**@brief Returns statistics about a 900s ringbuffer
  89. *
  90. * @param const int[PYFCGI_STATS_SZ] data : a 900 ringbuffer stats samples
  91. * @param int* idx_nxt next data index in ring buffer (allow interrupt
  92. * detection : when *idx_nxt changes)
  93. * @param int *last : last sample
  94. * @param double[4] avgs : average samples on 1, 5, 10 and 15 minutes
  95. * @return 0 if no error else -1 and set errno to EINTR
  96. */
  97. int pyfcgi_stats_avg(const int[PYFCGI_STATS_SZ], int*, int*, double[4]);
  98. /**@brief Same than @ref pyfcgi_stats_avg but normalize average when
  99. * uptime is bellow 900
  100. * @see pyfcgi_stats_avg
  101. */
  102. int pyfcgi_stats_avg_const(const int[PYFCGI_STATS_SZ], int*, int*, double[4]);
  103. /**@brief Returns the formated buffer
  104. * @todo make @ref pyfcgi_stats_format() implement this functionnality
  105. * to remove this function... */
  106. const char *pyfcgi_stats_buff(const char **, size_t*);
  107. int pyfcgi_stats_get_shm(pyfcgi_stats_shm_t*);
  108. #endif