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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. #include "conf.h"
  31. #include "logger.h"
  32. struct pyfcgi_stats_s
  33. {
  34. /**@brief Request per seconds on 15 minutes */
  35. int reqs[PYFCGI_STATS_SZ];
  36. /**@brief Current request index */
  37. int cur_req;
  38. /**@brief Repeating 1s timer sending SIGALRM */
  39. timer_t timerid;
  40. /**@brief Old SIGALRM handler */
  41. struct sigaction oldact;
  42. /**@brief Buffer to format the statistics before sending them */
  43. char *buff;
  44. size_t buff_ptr;
  45. size_t buff_len;
  46. };
  47. /**@brief Starts collecting statistics
  48. *
  49. * Set an handler for SIGALRM and set a repeating alarm each seconds
  50. * @warning designed to be called from monitor server process
  51. * @return -1 on error else 0
  52. */
  53. int pyfcgi_stats_init();
  54. /**@brief SIGALRM signal handler
  55. * @param int signum
  56. */
  57. void pyfcgi_stats_collector(int);
  58. /**@brief Format all stats in a buffer
  59. * @note uses the pyfcgi_stats.statsbuff buffer */
  60. size_t pyfcgi_stats_format();
  61. /**@brief Print in buffer using buff_ptr index
  62. *@note exit on mem alloc failure
  63. */
  64. void pyfcgi_stats_buffprintf(const char *fmt, ...);
  65. /**@brief Allocate the buffer with at least given space
  66. * @param size_t sz the minimum buffer size
  67. * @note allocation size is rounded
  68. * @return 0 if OK else -1
  69. */
  70. int pyfcgi_stats_reqbuff(size_t);
  71. /**@brief Returns statistics about a 900s ringbuffer
  72. *
  73. * @param const int[PYFCGI_STATS_SZ] data : a 900 ringbuffer stats samples
  74. * @param int* idx_nxt next data index in ring buffer (allow interrupt
  75. * detection : when *idx_nxt changes)
  76. * @param int *last : last sample
  77. * @param double[4] avgs : average samples on 1, 5, 10 and 15 minutes
  78. * @return 0 if no error else -1 and set errno to EINTR
  79. */
  80. int pyfcgi_stats_avg(const int[PYFCGI_STATS_SZ], int*, int*, double[4]);
  81. /**@brief Same than @ref pyfcgi_stats_avg but normalize average when
  82. * uptime is bellow 900
  83. * @see pyfcgi_stats_avg
  84. */
  85. int pyfcgi_stats_avg_const(const int[PYFCGI_STATS_SZ], int*, int*, double[4]);
  86. /**@brief Returns the formated buffer
  87. * @todo make @ref pyfcgi_stats_format() implement this functionnality
  88. * to remove this function... */
  89. const char *pyfcgi_stats_buff(const char **, size_t*);
  90. #endif