From e76009c39bc5181a5350b3bdcc687b4556d22959 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 24 Mar 2017 07:11:00 +0100 Subject: php-pinba: import --- REFLECTION | 315 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 315 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..8b4e886 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,315 @@ +Extension [ extension #112 pinba version 1.1.0 ] { + + - INI { + Entry [ pinba.server ] + Current = '' + } + Entry [ pinba.enabled ] + Current = '0' + } + Entry [ pinba.auto_flush ] + Current = '1' + } + } + + - Constants [5] { + Constant [ integer PINBA_FLUSH_ONLY_STOPPED_TIMERS ] { 1 } + Constant [ integer PINBA_FLUSH_RESET_DATA ] { 2 } + Constant [ integer PINBA_ONLY_STOPPED_TIMERS ] { 1 } + Constant [ integer PINBA_ONLY_RUNNING_TIMERS ] { 4 } + Constant [ integer PINBA_AUTO_FLUSH ] { 8 } + } + + - Functions { + Function [ function pinba_timer_start ] { + + - Parameters [3] { + Parameter #0 [ $tags ] + Parameter #1 [ $data ] + Parameter #2 [ $hit_count ] + } + } + Function [ function pinba_timer_add ] { + + - Parameters [3] { + Parameter #0 [ $tags ] + Parameter #1 [ $value ] + Parameter #2 [ $data ] + } + } + Function [ function pinba_timer_stop ] { + + - Parameters [1] { + Parameter #0 [ $timer ] + } + } + Function [ function pinba_timer_delete ] { + + - Parameters [1] { + Parameter #0 [ $timer ] + } + } + Function [ function pinba_timer_data_merge ] { + + - Parameters [2] { + Parameter #0 [ $timer ] + Parameter #1 [ $data ] + } + } + Function [ function pinba_timer_data_replace ] { + + - Parameters [2] { + Parameter #0 [ $timer ] + Parameter #1 [ $data ] + } + } + Function [ function pinba_timer_tags_merge ] { + + - Parameters [2] { + Parameter #0 [ $timer ] + Parameter #1 [ $tags ] + } + } + Function [ function pinba_timer_tags_replace ] { + + - Parameters [2] { + Parameter #0 [ $timer ] + Parameter #1 [ $tags ] + } + } + Function [ function pinba_flush ] { + + - Parameters [2] { + Parameter #0 [ $custom_script_name ] + Parameter #1 [ $flags ] + } + } + Function [ function pinba_get_info ] { + + - Parameters [0] { + } + } + Function [ function pinba_get_data ] { + + - Parameters [1] { + Parameter #0 [ $flags ] + } + } + Function [ function pinba_timer_get_info ] { + + - Parameters [1] { + Parameter #0 [ $timer ] + } + } + Function [ function pinba_timers_stop ] { + + - Parameters [0] { + } + } + Function [ function pinba_timers_get ] { + + - Parameters [0] { + } + } + Function [ function pinba_script_name_set ] { + + - Parameters [1] { + Parameter #0 [ $custom_script_name ] + } + } + Function [ function pinba_hostname_set ] { + + - Parameters [1] { + Parameter #0 [ $custom_hostname ] + } + } + Function [ function pinba_server_name_set ] { + + - Parameters [1] { + Parameter #0 [ $custom_server_name ] + } + } + Function [ function pinba_schema_set ] { + + - Parameters [1] { + Parameter #0 [ $custom_schema ] + } + } + Function [ function pinba_request_time_set ] { + + - Parameters [1] { + Parameter #0 [ $request_time ] + } + } + Function [ function pinba_tag_set ] { + + - Parameters [2] { + Parameter #0 [ $tag ] + Parameter #1 [ $value ] + } + } + Function [ function pinba_tag_get ] { + + - Parameters [1] { + Parameter #0 [ $tag ] + } + } + Function [ function pinba_tag_delete ] { + + - Parameters [1] { + Parameter #0 [ $tag ] + } + } + Function [ function pinba_tags_get ] { + + - Parameters [0] { + } + } + } + + - Classes [1] { + Class [ class PinbaClient ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [17] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $servers ] + } + } + + Method [ public method setHostname ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setScriptname ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setServername ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setRequestCount ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setDocumentSize ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setMemoryPeak ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setMemoryFootprint ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setRusage ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setRequestTime ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setStatus ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setSchema ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method setTag ] { + + - Parameters [2] { + Parameter #0 [ $tag ] + Parameter #1 [ $value ] + } + } + + Method [ public method setTimer ] { + + - Parameters [4] { + Parameter #0 [ $tags ] + Parameter #1 [ $value ] + Parameter #2 [ $rusage ] + Parameter #3 [ $hit_count ] + } + } + + Method [ public method addTimer ] { + + - Parameters [4] { + Parameter #0 [ $tags ] + Parameter #1 [ $value ] + Parameter #2 [ $rusage ] + Parameter #3 [ $hit_count ] + } + } + + Method [ public method send ] { + + - Parameters [1] { + Parameter #0 [ $flags ] + } + } + + Method [ public method getData ] { + + - Parameters [1] { + Parameter #0 [ $flags ] + } + } + } + } + } +} + -- cgit