This repository was archived by the owner on May 27, 2024. It is now read-only.
File tree 3 files changed +29
-22
lines changed
3 files changed +29
-22
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ x-dockerbuild-5: &dockerbuild-5
19
19
- run : composer lint
20
20
21
21
jobs :
22
+ test-8.2 :
23
+ << : *dockerbuild-phpdbg
24
+ docker :
25
+ - image : cimg/php:8.2-browsers
22
26
test-8.0 :
23
27
<< : *dockerbuild-phpdbg
24
28
docker :
@@ -52,6 +56,7 @@ workflows:
52
56
version : 2
53
57
check_compile :
54
58
jobs :
59
+ - test-8.2
55
60
- test-8.0
56
61
- test-7.4
57
62
- test-7.3
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/5.7/phpunit.xsd"
4
- bootstrap =" vendor/autoload.php"
5
- backupGlobals =" false"
6
- beStrictAboutCoversAnnotation =" true"
7
- beStrictAboutOutputDuringTests =" true"
8
- beStrictAboutTestsThatDoNotTestAnything =" true"
9
- beStrictAboutTodoAnnotatedTests =" true"
10
- colors =" true"
11
- verbose =" true" >
12
- <testsuite name =" unit" >
13
- <directory suffix =" Test.php" >tests/UnitTests</directory >
14
- </testsuite >
15
-
16
- <filter >
17
- <whitelist processUncoveredFilesFromWhitelist =" true" >
18
- <directory suffix =" .php" >src</directory >
19
- </whitelist >
20
- </filter >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap =" vendor/autoload.php" backupGlobals =" false" beStrictAboutCoversAnnotation =" true" beStrictAboutOutputDuringTests =" true" beStrictAboutTestsThatDoNotTestAnything =" true" beStrictAboutTodoAnnotatedTests =" true" colors =" true" verbose =" true" >
3
+ <coverage processUncoveredFiles =" true" >
4
+ <include >
5
+ <directory suffix =" .php" >src</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuite name =" unit" >
9
+ <directory suffix =" Test.php" >tests/UnitTests</directory >
10
+ </testsuite >
21
11
</phpunit >
Original file line number Diff line number Diff line change @@ -65,6 +65,18 @@ class DogStatsd
65
65
*/
66
66
private $ metricPrefix ;
67
67
68
+ // Telemetry
69
+ private $ disable_telemetry ;
70
+ private $ telemetry_tags ;
71
+ private $ metrics_sent ;
72
+ private $ events_sent ;
73
+ private $ service_checks_sent ;
74
+ private $ bytes_sent ;
75
+ private $ bytes_dropped ;
76
+ private $ packets_sent ;
77
+ private $ packets_dropped ;
78
+
79
+
68
80
private static $ eventUrl = '/api/v1/events ' ;
69
81
70
82
// Used for the telemetry tags
@@ -510,7 +522,7 @@ public function flush($message)
510
522
* @param array $vals Optional values of the event. See
511
523
* https://docs.datadoghq.com/api/?lang=bash#post-an-event
512
524
* for the valid keys
513
- * @return null
525
+ * @return bool
514
526
**/
515
527
public function event ($ title , $ vals = array ())
516
528
{
@@ -602,7 +614,7 @@ public function event($title, $vals = array())
602
614
*
603
615
* @param array $vals Optional values of the event. See
604
616
* https://docs.datadoghq.com/api/?lang=bash#post-an-event for the valid keys
605
- * @return null
617
+ * @return bool
606
618
*/
607
619
private function eventUdp ($ vals )
608
620
{
@@ -631,7 +643,7 @@ private function eventUdp($vals)
631
643
$ this ->events_sent += 1 ;
632
644
$ this ->report ('_e{ ' . $ title_length . ', ' . $ text_length . '}: ' . $ fields );
633
645
634
- return null ;
646
+ return true ;
635
647
}
636
648
637
649
/**
You can’t perform that action at this time.
0 commit comments