@@ -9,30 +9,30 @@ import (
9
9
// ObservabilityOptions holds the tracing, metrics and logging configuration for the request adapter
10
10
type ObservabilityOptions struct {
11
11
// Whether to include attributes which could contains EUII information like URLs
12
- IncludeEUIIAttibutes bool
12
+ IncludeEUIIAttributes bool
13
13
}
14
14
15
15
// GetTracerInstrumentationName returns the observability name to use for the tracer
16
16
func (o * ObservabilityOptions ) GetTracerInstrumentationName () string {
17
17
return "github.com/microsoft/kiota-http-go"
18
18
}
19
19
20
- // GetIncludeEUIIAttibutes returns whether to include attributes which could contains EUII information
21
- func (o * ObservabilityOptions ) GetIncludeEUIIAttibutes () bool {
22
- return o .IncludeEUIIAttibutes
20
+ // GetIncludeEUIIAttributes returns whether to include attributes which could contains EUII information
21
+ func (o * ObservabilityOptions ) GetIncludeEUIIAttributes () bool {
22
+ return o .IncludeEUIIAttributes
23
23
}
24
24
25
- // SetIncludeEUIIAttibutes set whether to include attributes which could contains EUII information
26
- func (o * ObservabilityOptions ) SetIncludeEUIIAttibutes (value bool ) {
27
- o .IncludeEUIIAttibutes = value
25
+ // SetIncludeEUIIAttributes set whether to include attributes which could contains EUII information
26
+ func (o * ObservabilityOptions ) SetIncludeEUIIAttributes (value bool ) {
27
+ o .IncludeEUIIAttributes = value
28
28
}
29
29
30
30
// ObservabilityOptionsInt defines the options contract for handlers
31
31
type ObservabilityOptionsInt interface {
32
32
abs.RequestOption
33
33
GetTracerInstrumentationName () string
34
- GetIncludeEUIIAttibutes () bool
35
- SetIncludeEUIIAttibutes (value bool )
34
+ GetIncludeEUIIAttributes () bool
35
+ SetIncludeEUIIAttributes (value bool )
36
36
}
37
37
38
38
func (* ObservabilityOptions ) GetKey () abs.RequestOptionKey {
0 commit comments