Example #1
0
 /**
  * Set custom hostname instead of the result of gethostname() used by default.
  *
  * @param string $hostName
  * @return Pinba
  */
 public function setHostName($hostName)
 {
     if ($this->enabled && $hostName) {
         pinba_hostname_set($hostName);
     }
     return $this;
 }
Example #2
0
 public function setHostName($name)
 {
     pinba_hostname_set($name);
     return $this;
 }