MediaWiki  1.33.0
WikiProcessor.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Logger\Monolog;
22 
23 use WikiMap;
24 
33 
38  public function __invoke( array $record ) {
39  global $wgVersion;
40  $record['extra']['host'] = wfHostname();
42  $record['extra']['mwversion'] = $wgVersion;
43  $record['extra']['reqId'] = \WebRequest::getRequestId();
44  if ( wfIsCLI() && isset( $_SERVER['argv'] ) ) {
45  $record['extra']['cli_argv'] = implode( ' ', $_SERVER['argv'] );
46  }
47  return $record;
48  }
49 
50 }
WikiMap\getCurrentWikiDbDomain
static getCurrentWikiDbDomain()
Definition: WikiMap.php:292
$wgVersion
$wgVersion
MediaWiki version number.
Definition: DefaultSettings.php:75
MediaWiki\Logger\Monolog\WikiProcessor\__invoke
__invoke(array $record)
Definition: WikiProcessor.php:38
wfHostname
wfHostname()
Fetch server name for use in error reporting etc.
Definition: GlobalFunctions.php:1352
MediaWiki\Logger\Monolog
Definition: AvroFormatter.php:21
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
WikiMap\getWikiIdFromDbDomain
static getWikiIdFromDbDomain( $domain)
Get the wiki ID of a database domain.
Definition: WikiMap.php:259
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Logger\Monolog\WikiProcessor
Annotate log records with request-global metadata, such as the hostname, wiki / request ID,...
Definition: WikiProcessor.php:32
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
wfIsCLI
wfIsCLI()
Check if we are running from the commandline.
Definition: GlobalFunctions.php:1974
WikiMap
Helper tools for dealing with other locally-hosted wikis.
Definition: WikiMap.php:29
WebRequest\getRequestId
static getRequestId()
Get the unique request ID.
Definition: WebRequest.php:275