Skip to content

Commit daedd9b

Browse files
authored
update reporter (#1342)
Signed-off-by: shishir gowda <shishir@livekit.io>
1 parent 5c369b1 commit daedd9b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

observability/reporter.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ type Reporter interface {
1515
Gateway() gatewayobs.Reporter
1616
Telephony() telephonyobs.Reporter
1717
Connector() any // any is a placeholder for the connector type
18+
Egress() any
19+
Ingress() any
1820
Close()
1921
}
2022

@@ -44,5 +46,13 @@ func (reporter) Connector() any {
4446
return nil
4547
}
4648

49+
func (reporter) Egress() any {
50+
return nil
51+
}
52+
53+
func (reporter) Ingress() any {
54+
return nil
55+
}
56+
4757
func (reporter) Close() {
4858
}

0 commit comments

Comments
 (0)