@@ -41,32 +41,33 @@ including your device model and the following response data:
41
41
This message is only printed once.`
42
42
43
43
type GNMI struct {
44
- Addresses []string `toml:"addresses"`
45
- Subscriptions []subscription `toml:"subscription"`
46
- TagSubscriptions []tagSubscription `toml:"tag_subscription"`
47
- Aliases map [string ]string `toml:"aliases"`
48
- Encoding string `toml:"encoding"`
49
- Origin string `toml:"origin"`
50
- Prefix string `toml:"prefix"`
51
- Target string `toml:"target"`
52
- UpdatesOnly bool `toml:"updates_only"`
53
- VendorSpecific []string `toml:"vendor_specific"`
54
- Username config.Secret `toml:"username"`
55
- Password config.Secret `toml:"password"`
56
- Redial config.Duration `toml:"redial"`
57
- MaxMsgSize config.Size `toml:"max_msg_size"`
58
- Depth int32 `toml:"depth"`
59
- Trace bool `toml:"dump_responses"`
60
- CanonicalFieldNames bool `toml:"canonical_field_names"`
61
- TrimFieldNames bool `toml:"trim_field_names"`
62
- PrefixTagKeyWithPath bool `toml:"prefix_tag_key_with_path"`
63
- GuessPathTag bool `toml:"guess_path_tag" deprecated:"1.30.0;1.35.0;use 'path_guessing_strategy' instead"`
64
- GuessPathStrategy string `toml:"path_guessing_strategy"`
65
- EnableTLS bool `toml:"enable_tls" deprecated:"1.27.0;1.35.0;use 'tls_enable' instead"`
66
- KeepaliveTime config.Duration `toml:"keepalive_time"`
67
- KeepaliveTimeout config.Duration `toml:"keepalive_timeout"`
68
- YangModelPaths []string `toml:"yang_model_paths"`
69
- Log telegraf.Logger `toml:"-"`
44
+ Addresses []string `toml:"addresses"`
45
+ Subscriptions []subscription `toml:"subscription"`
46
+ TagSubscriptions []tagSubscription `toml:"tag_subscription"`
47
+ Aliases map [string ]string `toml:"aliases"`
48
+ Encoding string `toml:"encoding"`
49
+ Origin string `toml:"origin"`
50
+ Prefix string `toml:"prefix"`
51
+ Target string `toml:"target"`
52
+ UpdatesOnly bool `toml:"updates_only"`
53
+ VendorSpecific []string `toml:"vendor_specific"`
54
+ Username config.Secret `toml:"username"`
55
+ Password config.Secret `toml:"password"`
56
+ Redial config.Duration `toml:"redial"`
57
+ MaxMsgSize config.Size `toml:"max_msg_size"`
58
+ Depth int32 `toml:"depth"`
59
+ Trace bool `toml:"dump_responses"`
60
+ CanonicalFieldNames bool `toml:"canonical_field_names"`
61
+ TrimFieldNames bool `toml:"trim_field_names"`
62
+ PrefixTagKeyWithPath bool `toml:"prefix_tag_key_with_path"`
63
+ GuessPathTag bool `toml:"guess_path_tag" deprecated:"1.30.0;1.35.0;use 'path_guessing_strategy' instead"`
64
+ GuessPathStrategy string `toml:"path_guessing_strategy"`
65
+ EnableTLS bool `toml:"enable_tls" deprecated:"1.27.0;1.35.0;use 'tls_enable' instead"`
66
+ KeepaliveTime config.Duration `toml:"keepalive_time"`
67
+ KeepaliveTimeout config.Duration `toml:"keepalive_timeout"`
68
+ YangModelPaths []string `toml:"yang_model_paths"`
69
+ EnforceFirstNamespaceAsOrigin bool `toml:"enforce_first_namespace_as_origin"`
70
+ Log telegraf.Logger `toml:"-"`
70
71
common_tls.ClientConfig
71
72
72
73
// Internal state
@@ -101,6 +102,15 @@ func (*GNMI) SampleConfig() string {
101
102
102
103
func (c * GNMI ) Init () error {
103
104
// Check options
105
+ switch c .Encoding {
106
+ case "" :
107
+ c .Encoding = "proto"
108
+ case "proto" , "json" , "json_ietf" , "bytes" :
109
+ // Do nothing, those are valid
110
+ default :
111
+ return fmt .Errorf ("unsupported encoding %s" , c .Encoding )
112
+ }
113
+
104
114
if time .Duration (c .Redial ) <= 0 {
105
115
return errors .New ("redial duration must be positive" )
106
116
}
@@ -186,17 +196,21 @@ func (c *GNMI) Init() error {
186
196
// Invert explicit alias list and prefill subscription names
187
197
c .internalAliases = make (map [* pathInfo ]string , len (c .Subscriptions )+ len (c .Aliases )+ len (c .TagSubscriptions ))
188
198
for _ , s := range c .Subscriptions {
189
- if err := s .buildAlias (c .internalAliases ); err != nil {
199
+ if err := s .buildAlias (c .internalAliases , c . EnforceFirstNamespaceAsOrigin ); err != nil {
190
200
return err
191
201
}
192
202
}
193
203
for _ , s := range c .TagSubscriptions {
194
- if err := s .buildAlias (c .internalAliases ); err != nil {
204
+ if err := s .buildAlias (c .internalAliases , c . EnforceFirstNamespaceAsOrigin ); err != nil {
195
205
return err
196
206
}
197
207
}
198
208
for alias , encodingPath := range c .Aliases {
199
- c .internalAliases [newInfoFromString (encodingPath )] = alias
209
+ path := newInfoFromString (encodingPath )
210
+ if c .EnforceFirstNamespaceAsOrigin {
211
+ path .enforceFirstNamespaceAsOrigin ()
212
+ }
213
+ c .internalAliases [path ] = alias
200
214
}
201
215
c .Log .Debugf ("Internal alias mapping: %+v" , c .internalAliases )
202
216
@@ -281,20 +295,21 @@ func (c *GNMI) Start(acc telegraf.Accumulator) error {
281
295
return
282
296
}
283
297
h := handler {
284
- host : host ,
285
- port : port ,
286
- aliases : c .internalAliases ,
287
- tagsubs : c .TagSubscriptions ,
288
- maxMsgSize : int (c .MaxMsgSize ),
289
- vendorExt : c .VendorSpecific ,
290
- tagStore : newTagStore (c .TagSubscriptions ),
291
- trace : c .Trace ,
292
- canonicalFieldNames : c .CanonicalFieldNames ,
293
- trimSlash : c .TrimFieldNames ,
294
- tagPathPrefix : c .PrefixTagKeyWithPath ,
295
- guessPathStrategy : c .GuessPathStrategy ,
296
- decoder : c .decoder ,
297
- log : c .Log ,
298
+ host : host ,
299
+ port : port ,
300
+ aliases : c .internalAliases ,
301
+ tagsubs : c .TagSubscriptions ,
302
+ maxMsgSize : int (c .MaxMsgSize ),
303
+ vendorExt : c .VendorSpecific ,
304
+ tagStore : newTagStore (c .TagSubscriptions ),
305
+ trace : c .Trace ,
306
+ canonicalFieldNames : c .CanonicalFieldNames ,
307
+ trimSlash : c .TrimFieldNames ,
308
+ tagPathPrefix : c .PrefixTagKeyWithPath ,
309
+ guessPathStrategy : c .GuessPathStrategy ,
310
+ decoder : c .decoder ,
311
+ enforceFirstNamespaceAsOrigin : c .EnforceFirstNamespaceAsOrigin ,
312
+ log : c .Log ,
298
313
ClientParameters : keepalive.ClientParameters {
299
314
Time : time .Duration (c .KeepaliveTime ),
300
315
Timeout : time .Duration (c .KeepaliveTimeout ),
@@ -436,13 +451,16 @@ func (s *subscription) buildFullPath(c *GNMI) error {
436
451
return nil
437
452
}
438
453
439
- func (s * subscription ) buildAlias (aliases map [* pathInfo ]string ) error {
454
+ func (s * subscription ) buildAlias (aliases map [* pathInfo ]string , enforceFirstNamespaceAsOrigin bool ) error {
440
455
// Build the subscription path without keys
441
456
path , err := parsePath (s .Origin , s .Path , "" )
442
457
if err != nil {
443
458
return err
444
459
}
445
460
info := newInfoFromPathWithoutKeys (path )
461
+ if enforceFirstNamespaceAsOrigin {
462
+ info .enforceFirstNamespaceAsOrigin ()
463
+ }
446
464
447
465
// If the user didn't provide a measurement name, use last path element
448
466
name := s .Name
@@ -455,15 +473,18 @@ func (s *subscription) buildAlias(aliases map[*pathInfo]string) error {
455
473
return nil
456
474
}
457
475
458
- func newGNMI () telegraf.Input {
459
- return & GNMI {
460
- Encoding : "proto" ,
461
- Redial : config .Duration (10 * time .Second ),
462
- }
463
- }
464
-
465
476
func init () {
466
- inputs .Add ("gnmi" , newGNMI )
477
+ inputs .Add ("gnmi" , func () telegraf.Input {
478
+ return & GNMI {
479
+ Redial : config .Duration (10 * time .Second ),
480
+ EnforceFirstNamespaceAsOrigin : true ,
481
+ }
482
+ })
467
483
// Backwards compatible alias:
468
- inputs .Add ("cisco_telemetry_gnmi" , newGNMI )
484
+ inputs .Add ("cisco_telemetry_gnmi" , func () telegraf.Input {
485
+ return & GNMI {
486
+ Redial : config .Duration (10 * time .Second ),
487
+ EnforceFirstNamespaceAsOrigin : true ,
488
+ }
489
+ })
469
490
}
0 commit comments