MediaWiki REL1_31
NullStatsdDataFactory.php
Go to the documentation of this file.
1<?php
2
3use Liuggio\StatsdClient\Entity\StatsdData;
4use Liuggio\StatsdClient\Entity\StatsdDataInterface;
5
11
18 public function timing( $key, $time ) {
19 }
20
27 public function gauge( $key, $value ) {
28 }
29
47 public function set( $key, $value ) {
48 return [];
49 }
50
58 public function increment( $key ) {
59 return [];
60 }
61
70 public function decrement( $key ) {
71 return [];
72 }
73
82 public function updateCount( $key, $delta ) {
83 return [];
84 }
85
96 public function produceStatsdData(
97 $key,
98 $value = 1,
99 $metric = StatsdDataInterface::STATSD_METRIC_COUNT
100 ) {
101 $data = new StatsdData();
102 $data->setKey( $key );
103 $data->setValue( $value );
104 $data->setMetric( $metric );
105 return $data;
106 }
107
108 public function hasData() {
109 return false;
110 }
111
112 public function getData() {
113 return [];
114 }
115
116 public function clearData() {
117 // Nothing to do, always empty
118 }
119
120 public function getDataCount() {
121 return 0;
122 }
123
124 public function setEnabled( $enabled ) {
125 // Nothing to do, null factory is always disabled.
126 }
127}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
decrement( $key)
This function creates a 'decrement' StatsdData object.
gauge( $key, $value)
This function creates a 'gauge' StatsdData.
clearData()
Clear all buffered data from the factory.
setEnabled( $enabled)
Set collection enable status.
increment( $key)
This function creates a 'increment' StatsdData object.
produceStatsdData( $key, $value=1, $metric=StatsdDataInterface::STATSD_METRIC_COUNT)
Produce a StatsdDataInterface Object.
getData()
Return the buffered data from the factory.
timing( $key, $time)
This function creates a 'timing' StatsdData.
hasData()
Check whether this data factory has any buffered data.
updateCount( $key, $delta)
This function creates a 'updateCount' StatsdData object.
getDataCount()
Return the number of buffered statsd data entries.
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1795
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:37
MediaWiki adaptation of StatsdDataFactory that provides buffering functionality.