eventLabel = $event_label; return $this; } public function getEventLabel() { return $this->eventLabel; } public static function getEventTypeName($type) { switch ($type) { case self::TYPE_STATIC_RESOURCE: return pht('Static Resource'); case self::TYPE_REQUEST_TIME: return pht('Web Request'); case self::TYPE_EXEC_TIME: return pht('Subprocesses'); } return pht('Unknown ("%s")', $type); } public static function formatResourceCost( PhabricatorUser $viewer, $type, $cost) { switch ($type) { case self::TYPE_STATIC_RESOURCE: return pht('%s Req', new PhutilNumber($cost)); case self::TYPE_REQUEST_TIME: case self::TYPE_EXEC_TIME: return pht('%s us', new PhutilNumber($cost)); } return pht('%s Unit(s)', new PhutilNumber($cost)); } protected function getConfiguration() { return array( self::CONFIG_TIMESTAMPS => false, self::CONFIG_COLUMN_SCHEMA => array( 'eventType' => 'uint32', 'resourceCost' => 'sint64', 'sampleRate' => 'uint32', 'requestKey' => 'bytes12', ), self::CONFIG_KEY_SCHEMA => array( 'key_request' => array( 'columns' => array('requestKey'), ), 'key_type' => array( 'columns' => array('eventType', 'epoch'), ), ), ) + parent::getConfiguration(); } }