Home
last modified time | relevance | path

Searched refs:record (Results 101 – 125 of 216) sorted by last modified time

123456789

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DGelfHandler.php45 protected function write(array $record): void argument
47 $this->publisher->publish($record['formatted']);
H A DHandler.php26 foreach ($records as $record) {
27 $this->handle($record);
H A DHandlerInterface.php33 * @param array $record Partial log record containing only a level key
39 public function isHandling(array $record): bool; argument
51 * @param array $record The record to handle
57 public function handle(array $record): bool; argument
H A DLogmaticHandler.php85 protected function generateDataStream(array $record): string argument
87 return $this->logToken . ' ' . $record['formatted'];
H A DMongoDBHandler.php66 protected function write(array $record): void argument
69 $this->collection->insertOne($record['formatted']);
74 $bulk->insert($record["formatted"]);
H A DProcessHandler.php86 protected function write(array $record): void argument
90 $this->writeProcessInput($record['formatted']);
H A DPsrHandler.php54 public function handle(array $record): bool argument
56 if (!$this->isHandling($record)) {
61 $formatted = $this->formatter->format($record);
62 … $this->logger->log(strtolower($record['level_name']), (string) $formatted, $record['context']);
64 … $this->logger->log(strtolower($record['level_name']), $record['message'], $record['context']);
H A DSamplingHandler.php65 public function isHandling(array $record): bool argument
67 return $this->getHandler($record)->isHandling($record);
70 public function handle(array $record): bool argument
72 if ($this->isHandling($record) && mt_rand(1, $this->factor) === 1) {
75 $record = $this->processRecord($record);
78 $this->getHandler($record)->handle($record);
93 public function getHandler(array $record = null) argument
96 $this->handler = ($this->handler)($record, $this);
H A DSyslogHandler.php61 protected function write(array $record): void argument
64 …this->ident.'" and facility "'.$this->facility.'"' . Utils::getRecordMessageForException($record));
66 syslog($this->logLevels[$record['level']], (string) $record['formatted']);
H A DTestHandler.php130 …* @param string|array $record Either a message string or an array containing message and optionall…
136 public function hasRecord($record, $level): bool argument
138 if (is_string($record)) {
139 $record = array('message' => $record);
142 return $this->hasRecordThatPasses(function ($rec) use ($record) {
143 if ($rec['message'] !== $record['message']) {
146 if (isset($record['context']) && $rec['context'] !== $record['context']) {
205 protected function write(array $record): void argument
207 $this->recordsByLevel[$record['level']][] = $record;
208 $this->records[] = $record;
H A DDynamoDbHandler.php70 protected function write(array $record): void argument
72 $filtered = $this->filterEmptyFields($record['formatted']);
87 * @param mixed[] $record
90 protected function filterEmptyFields(array $record): array argument
92 return array_filter($record, function ($value) {
H A DFleepHookHandler.php92 public function write(array $record): void argument
94 parent::write($record);
101 protected function generateDataStream(array $record): string argument
103 $content = $this->buildContent($record);
127 private function buildContent(array $record): string argument
130 'message' => $record['formatted'],
H A DHandlerWrapper.php49 public function isHandling(array $record): bool argument
51 return $this->handler->isHandling($record);
57 public function handle(array $record): bool argument
59 return $this->handler->handle($record);
H A DLogEntriesHandler.php66 protected function generateDataStream(array $record): string argument
68 return $this->logToken . ' ' . $record['formatted'];
H A DProcessableHandlerTrait.php60 protected function processRecord(array $record): array argument
63 $record = $processor($record);
66 return $record;
H A DPushoverHandler.php139 protected function generateDataStream(array $record): string argument
141 $content = $this->buildContent($record);
149 private function buildContent(array $record): string argument
154 $message = ($this->useFormattedMessage) ? $record['formatted'] : $record['message'];
157 $timestamp = $record['datetime']->getTimestamp();
167 if (isset($record['level']) && $record['level'] >= $this->emergencyLevel) {
171 } elseif (isset($record['level']) && $record['level'] >= $this->highPriorityLevel) {
176 $context = array_intersect_key($record['context'], $this->parameterNames);
177 $extra = array_intersect_key($record['extra'], $this->parameterNames);
201 protected function write(array $record): void argument
[all …]
H A DRedisPubSubHandler.php55 protected function write(array $record): void argument
57 $this->redisClient->publish($this->channelKey, $record["formatted"]);
H A DSocketHandler.php95 protected function write(array $record): void argument
98 $data = $this->generateDataStream($record);
348 protected function generateDataStream(array $record): string argument
350 return (string) $record['formatted'];
H A DSqsHandler.php46 protected function write(array $record): void argument
48 if (!isset($record['formatted']) || 'string' !== gettype($record['formatted'])) {
49 …andler accepts only formatted records as a string' . Utils::getRecordMessageForException($record));
52 $messageBody = $record['formatted'];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DGames.php289 ],'record' => [
/plugin/authorstats/
H A Daction.php159 $record = array();
162 $record["timestamp"] = $parts[0];
163 $record["type"] = $parts[2];
164 $record["author"] = $parts[4];
165 $record["date"] = date("Ym", $parts[0]);
167 return $record;
/plugin/passpolicy/
H A D10k-common-passwords.txt6601 record
H A Dwords.txt2882 record
/plugin/quickstats/GEOIP/
H A Dgeoip.inc1637 $record = geoip_record_by_addr($gi, $addr);
1638 if ($record !== false) {
1639 return $record->country_code;
1662 $record = geoip_record_by_addr($gi, $addr);
1663 return $record->country_name;
H A Dgeoipcity.inc73 $record = new geoiprecord;
76 $record->country_code = $gi->GEOIP_COUNTRY_CODES[$char];
77 $record->country_code3 = $gi->GEOIP_COUNTRY_CODES3[$char];
78 $record->country_name = $gi->GEOIP_COUNTRY_NAMES[$char];
79 $record->continent_code = $gi->GEOIP_CONTINENT_CODES[$char];
123 $record->latitude = ($latitude / 10000) - 180;
128 $record->longitude = ($longitude / 10000) - 180;
131 if ($record->country_code == "US") {
136 $record->metro_code = $record->dma_code = floor($metroarea_combo / 1000);
137 $record->area_code = $metroarea_combo % 1000;
[all …]

123456789