23545 lines
377 KiB
Go
23545 lines
377 KiB
Go
|
|
//line plugins/parsers/influx/machine.go.rl:1
|
|
package influx
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNameParse = errors.New("expected measurement name")
|
|
ErrFieldParse = errors.New("expected field")
|
|
ErrTagParse = errors.New("expected tag")
|
|
ErrTimestampParse = errors.New("expected timestamp")
|
|
ErrParse = errors.New("parse error")
|
|
)
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:226
|
|
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go:23
|
|
const LineProtocol_start int = 1
|
|
const LineProtocol_first_final int = 206
|
|
const LineProtocol_error int = 0
|
|
|
|
const LineProtocol_en_main int = 1
|
|
const LineProtocol_en_discard_line int = 195
|
|
const LineProtocol_en_align int = 196
|
|
const LineProtocol_en_series int = 199
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:229
|
|
|
|
type Handler interface {
|
|
SetMeasurement(name []byte)
|
|
AddTag(key []byte, value []byte)
|
|
AddInt(key []byte, value []byte)
|
|
AddUint(key []byte, value []byte)
|
|
AddFloat(key []byte, value []byte)
|
|
AddString(key []byte, value []byte)
|
|
AddBool(key []byte, value []byte)
|
|
SetTimestamp(tm []byte)
|
|
}
|
|
|
|
type machine struct {
|
|
data []byte
|
|
cs int
|
|
p, pe, eof int
|
|
pb int
|
|
handler Handler
|
|
initState int
|
|
err error
|
|
}
|
|
|
|
func NewMachine(handler Handler) *machine {
|
|
m := &machine{
|
|
handler: handler,
|
|
initState: LineProtocol_en_align,
|
|
}
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:258
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:259
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:260
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:261
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:262
|
|
|
|
//line plugins/parsers/influx/machine.go:74
|
|
{
|
|
m.cs = LineProtocol_start
|
|
}
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:263
|
|
|
|
return m
|
|
}
|
|
|
|
func NewSeriesMachine(handler Handler) *machine {
|
|
m := &machine{
|
|
handler: handler,
|
|
initState: LineProtocol_en_series,
|
|
}
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:274
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:275
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:276
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:277
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:278
|
|
|
|
//line plugins/parsers/influx/machine.go:101
|
|
{
|
|
m.cs = LineProtocol_start
|
|
}
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:279
|
|
|
|
return m
|
|
}
|
|
|
|
func (m *machine) SetData(data []byte) {
|
|
m.data = data
|
|
m.p = 0
|
|
m.pb = 0
|
|
m.pe = len(data)
|
|
m.eof = len(data)
|
|
m.err = nil
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go:120
|
|
{
|
|
m.cs = LineProtocol_start
|
|
}
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:292
|
|
m.cs = m.initState
|
|
}
|
|
|
|
// ParseLine parses a line of input and returns true if more data can be
|
|
// parsed.
|
|
func (m *machine) ParseLine() bool {
|
|
if m.data == nil || m.p >= m.pe {
|
|
m.err = nil
|
|
return false
|
|
}
|
|
|
|
m.err = nil
|
|
var key []byte
|
|
var yield bool
|
|
|
|
|
|
//line plugins/parsers/influx/machine.go:142
|
|
{
|
|
if ( m.p) == ( m.pe) {
|
|
goto _test_eof
|
|
}
|
|
goto _resume
|
|
|
|
_again:
|
|
switch m.cs {
|
|
case 1:
|
|
goto st1
|
|
case 2:
|
|
goto st2
|
|
case 3:
|
|
goto st3
|
|
case 4:
|
|
goto st4
|
|
case 0:
|
|
goto st0
|
|
case 5:
|
|
goto st5
|
|
case 6:
|
|
goto st6
|
|
case 7:
|
|
goto st7
|
|
case 206:
|
|
goto st206
|
|
case 207:
|
|
goto st207
|
|
case 208:
|
|
goto st208
|
|
case 8:
|
|
goto st8
|
|
case 209:
|
|
goto st209
|
|
case 210:
|
|
goto st210
|
|
case 211:
|
|
goto st211
|
|
case 212:
|
|
goto st212
|
|
case 213:
|
|
goto st213
|
|
case 214:
|
|
goto st214
|
|
case 215:
|
|
goto st215
|
|
case 216:
|
|
goto st216
|
|
case 217:
|
|
goto st217
|
|
case 218:
|
|
goto st218
|
|
case 219:
|
|
goto st219
|
|
case 220:
|
|
goto st220
|
|
case 221:
|
|
goto st221
|
|
case 222:
|
|
goto st222
|
|
case 223:
|
|
goto st223
|
|
case 224:
|
|
goto st224
|
|
case 225:
|
|
goto st225
|
|
case 226:
|
|
goto st226
|
|
case 227:
|
|
goto st227
|
|
case 228:
|
|
goto st228
|
|
case 9:
|
|
goto st9
|
|
case 10:
|
|
goto st10
|
|
case 11:
|
|
goto st11
|
|
case 12:
|
|
goto st12
|
|
case 13:
|
|
goto st13
|
|
case 229:
|
|
goto st229
|
|
case 14:
|
|
goto st14
|
|
case 15:
|
|
goto st15
|
|
case 230:
|
|
goto st230
|
|
case 231:
|
|
goto st231
|
|
case 232:
|
|
goto st232
|
|
case 233:
|
|
goto st233
|
|
case 234:
|
|
goto st234
|
|
case 235:
|
|
goto st235
|
|
case 236:
|
|
goto st236
|
|
case 237:
|
|
goto st237
|
|
case 238:
|
|
goto st238
|
|
case 16:
|
|
goto st16
|
|
case 17:
|
|
goto st17
|
|
case 18:
|
|
goto st18
|
|
case 239:
|
|
goto st239
|
|
case 19:
|
|
goto st19
|
|
case 20:
|
|
goto st20
|
|
case 21:
|
|
goto st21
|
|
case 240:
|
|
goto st240
|
|
case 22:
|
|
goto st22
|
|
case 23:
|
|
goto st23
|
|
case 241:
|
|
goto st241
|
|
case 242:
|
|
goto st242
|
|
case 24:
|
|
goto st24
|
|
case 25:
|
|
goto st25
|
|
case 26:
|
|
goto st26
|
|
case 27:
|
|
goto st27
|
|
case 28:
|
|
goto st28
|
|
case 29:
|
|
goto st29
|
|
case 30:
|
|
goto st30
|
|
case 31:
|
|
goto st31
|
|
case 32:
|
|
goto st32
|
|
case 33:
|
|
goto st33
|
|
case 34:
|
|
goto st34
|
|
case 35:
|
|
goto st35
|
|
case 36:
|
|
goto st36
|
|
case 37:
|
|
goto st37
|
|
case 38:
|
|
goto st38
|
|
case 39:
|
|
goto st39
|
|
case 40:
|
|
goto st40
|
|
case 41:
|
|
goto st41
|
|
case 42:
|
|
goto st42
|
|
case 243:
|
|
goto st243
|
|
case 244:
|
|
goto st244
|
|
case 43:
|
|
goto st43
|
|
case 245:
|
|
goto st245
|
|
case 246:
|
|
goto st246
|
|
case 247:
|
|
goto st247
|
|
case 248:
|
|
goto st248
|
|
case 249:
|
|
goto st249
|
|
case 250:
|
|
goto st250
|
|
case 251:
|
|
goto st251
|
|
case 252:
|
|
goto st252
|
|
case 253:
|
|
goto st253
|
|
case 254:
|
|
goto st254
|
|
case 255:
|
|
goto st255
|
|
case 256:
|
|
goto st256
|
|
case 257:
|
|
goto st257
|
|
case 258:
|
|
goto st258
|
|
case 259:
|
|
goto st259
|
|
case 260:
|
|
goto st260
|
|
case 261:
|
|
goto st261
|
|
case 262:
|
|
goto st262
|
|
case 263:
|
|
goto st263
|
|
case 264:
|
|
goto st264
|
|
case 44:
|
|
goto st44
|
|
case 265:
|
|
goto st265
|
|
case 266:
|
|
goto st266
|
|
case 45:
|
|
goto st45
|
|
case 267:
|
|
goto st267
|
|
case 268:
|
|
goto st268
|
|
case 269:
|
|
goto st269
|
|
case 270:
|
|
goto st270
|
|
case 271:
|
|
goto st271
|
|
case 272:
|
|
goto st272
|
|
case 273:
|
|
goto st273
|
|
case 274:
|
|
goto st274
|
|
case 275:
|
|
goto st275
|
|
case 276:
|
|
goto st276
|
|
case 277:
|
|
goto st277
|
|
case 278:
|
|
goto st278
|
|
case 279:
|
|
goto st279
|
|
case 280:
|
|
goto st280
|
|
case 281:
|
|
goto st281
|
|
case 282:
|
|
goto st282
|
|
case 283:
|
|
goto st283
|
|
case 284:
|
|
goto st284
|
|
case 285:
|
|
goto st285
|
|
case 286:
|
|
goto st286
|
|
case 46:
|
|
goto st46
|
|
case 47:
|
|
goto st47
|
|
case 48:
|
|
goto st48
|
|
case 287:
|
|
goto st287
|
|
case 49:
|
|
goto st49
|
|
case 50:
|
|
goto st50
|
|
case 51:
|
|
goto st51
|
|
case 52:
|
|
goto st52
|
|
case 53:
|
|
goto st53
|
|
case 288:
|
|
goto st288
|
|
case 54:
|
|
goto st54
|
|
case 289:
|
|
goto st289
|
|
case 55:
|
|
goto st55
|
|
case 290:
|
|
goto st290
|
|
case 291:
|
|
goto st291
|
|
case 292:
|
|
goto st292
|
|
case 293:
|
|
goto st293
|
|
case 294:
|
|
goto st294
|
|
case 295:
|
|
goto st295
|
|
case 296:
|
|
goto st296
|
|
case 297:
|
|
goto st297
|
|
case 298:
|
|
goto st298
|
|
case 56:
|
|
goto st56
|
|
case 57:
|
|
goto st57
|
|
case 58:
|
|
goto st58
|
|
case 299:
|
|
goto st299
|
|
case 59:
|
|
goto st59
|
|
case 60:
|
|
goto st60
|
|
case 61:
|
|
goto st61
|
|
case 300:
|
|
goto st300
|
|
case 62:
|
|
goto st62
|
|
case 63:
|
|
goto st63
|
|
case 301:
|
|
goto st301
|
|
case 302:
|
|
goto st302
|
|
case 64:
|
|
goto st64
|
|
case 65:
|
|
goto st65
|
|
case 66:
|
|
goto st66
|
|
case 303:
|
|
goto st303
|
|
case 67:
|
|
goto st67
|
|
case 68:
|
|
goto st68
|
|
case 304:
|
|
goto st304
|
|
case 305:
|
|
goto st305
|
|
case 306:
|
|
goto st306
|
|
case 307:
|
|
goto st307
|
|
case 308:
|
|
goto st308
|
|
case 309:
|
|
goto st309
|
|
case 310:
|
|
goto st310
|
|
case 311:
|
|
goto st311
|
|
case 312:
|
|
goto st312
|
|
case 69:
|
|
goto st69
|
|
case 70:
|
|
goto st70
|
|
case 71:
|
|
goto st71
|
|
case 313:
|
|
goto st313
|
|
case 72:
|
|
goto st72
|
|
case 73:
|
|
goto st73
|
|
case 74:
|
|
goto st74
|
|
case 314:
|
|
goto st314
|
|
case 75:
|
|
goto st75
|
|
case 76:
|
|
goto st76
|
|
case 315:
|
|
goto st315
|
|
case 316:
|
|
goto st316
|
|
case 77:
|
|
goto st77
|
|
case 78:
|
|
goto st78
|
|
case 79:
|
|
goto st79
|
|
case 80:
|
|
goto st80
|
|
case 81:
|
|
goto st81
|
|
case 82:
|
|
goto st82
|
|
case 317:
|
|
goto st317
|
|
case 318:
|
|
goto st318
|
|
case 319:
|
|
goto st319
|
|
case 320:
|
|
goto st320
|
|
case 83:
|
|
goto st83
|
|
case 321:
|
|
goto st321
|
|
case 322:
|
|
goto st322
|
|
case 323:
|
|
goto st323
|
|
case 324:
|
|
goto st324
|
|
case 84:
|
|
goto st84
|
|
case 325:
|
|
goto st325
|
|
case 326:
|
|
goto st326
|
|
case 327:
|
|
goto st327
|
|
case 328:
|
|
goto st328
|
|
case 329:
|
|
goto st329
|
|
case 330:
|
|
goto st330
|
|
case 331:
|
|
goto st331
|
|
case 332:
|
|
goto st332
|
|
case 333:
|
|
goto st333
|
|
case 334:
|
|
goto st334
|
|
case 335:
|
|
goto st335
|
|
case 336:
|
|
goto st336
|
|
case 337:
|
|
goto st337
|
|
case 338:
|
|
goto st338
|
|
case 339:
|
|
goto st339
|
|
case 340:
|
|
goto st340
|
|
case 341:
|
|
goto st341
|
|
case 342:
|
|
goto st342
|
|
case 85:
|
|
goto st85
|
|
case 86:
|
|
goto st86
|
|
case 87:
|
|
goto st87
|
|
case 88:
|
|
goto st88
|
|
case 89:
|
|
goto st89
|
|
case 90:
|
|
goto st90
|
|
case 91:
|
|
goto st91
|
|
case 92:
|
|
goto st92
|
|
case 93:
|
|
goto st93
|
|
case 94:
|
|
goto st94
|
|
case 95:
|
|
goto st95
|
|
case 96:
|
|
goto st96
|
|
case 97:
|
|
goto st97
|
|
case 343:
|
|
goto st343
|
|
case 344:
|
|
goto st344
|
|
case 98:
|
|
goto st98
|
|
case 345:
|
|
goto st345
|
|
case 346:
|
|
goto st346
|
|
case 347:
|
|
goto st347
|
|
case 348:
|
|
goto st348
|
|
case 349:
|
|
goto st349
|
|
case 350:
|
|
goto st350
|
|
case 351:
|
|
goto st351
|
|
case 352:
|
|
goto st352
|
|
case 353:
|
|
goto st353
|
|
case 354:
|
|
goto st354
|
|
case 355:
|
|
goto st355
|
|
case 356:
|
|
goto st356
|
|
case 357:
|
|
goto st357
|
|
case 358:
|
|
goto st358
|
|
case 359:
|
|
goto st359
|
|
case 360:
|
|
goto st360
|
|
case 361:
|
|
goto st361
|
|
case 362:
|
|
goto st362
|
|
case 363:
|
|
goto st363
|
|
case 364:
|
|
goto st364
|
|
case 99:
|
|
goto st99
|
|
case 100:
|
|
goto st100
|
|
case 365:
|
|
goto st365
|
|
case 366:
|
|
goto st366
|
|
case 101:
|
|
goto st101
|
|
case 367:
|
|
goto st367
|
|
case 368:
|
|
goto st368
|
|
case 369:
|
|
goto st369
|
|
case 370:
|
|
goto st370
|
|
case 371:
|
|
goto st371
|
|
case 372:
|
|
goto st372
|
|
case 373:
|
|
goto st373
|
|
case 374:
|
|
goto st374
|
|
case 375:
|
|
goto st375
|
|
case 376:
|
|
goto st376
|
|
case 377:
|
|
goto st377
|
|
case 378:
|
|
goto st378
|
|
case 379:
|
|
goto st379
|
|
case 380:
|
|
goto st380
|
|
case 381:
|
|
goto st381
|
|
case 382:
|
|
goto st382
|
|
case 383:
|
|
goto st383
|
|
case 384:
|
|
goto st384
|
|
case 385:
|
|
goto st385
|
|
case 386:
|
|
goto st386
|
|
case 102:
|
|
goto st102
|
|
case 387:
|
|
goto st387
|
|
case 388:
|
|
goto st388
|
|
case 103:
|
|
goto st103
|
|
case 104:
|
|
goto st104
|
|
case 105:
|
|
goto st105
|
|
case 106:
|
|
goto st106
|
|
case 107:
|
|
goto st107
|
|
case 389:
|
|
goto st389
|
|
case 108:
|
|
goto st108
|
|
case 109:
|
|
goto st109
|
|
case 390:
|
|
goto st390
|
|
case 391:
|
|
goto st391
|
|
case 392:
|
|
goto st392
|
|
case 393:
|
|
goto st393
|
|
case 394:
|
|
goto st394
|
|
case 395:
|
|
goto st395
|
|
case 396:
|
|
goto st396
|
|
case 397:
|
|
goto st397
|
|
case 398:
|
|
goto st398
|
|
case 110:
|
|
goto st110
|
|
case 111:
|
|
goto st111
|
|
case 112:
|
|
goto st112
|
|
case 399:
|
|
goto st399
|
|
case 113:
|
|
goto st113
|
|
case 114:
|
|
goto st114
|
|
case 115:
|
|
goto st115
|
|
case 400:
|
|
goto st400
|
|
case 116:
|
|
goto st116
|
|
case 117:
|
|
goto st117
|
|
case 401:
|
|
goto st401
|
|
case 402:
|
|
goto st402
|
|
case 118:
|
|
goto st118
|
|
case 119:
|
|
goto st119
|
|
case 120:
|
|
goto st120
|
|
case 121:
|
|
goto st121
|
|
case 122:
|
|
goto st122
|
|
case 123:
|
|
goto st123
|
|
case 124:
|
|
goto st124
|
|
case 125:
|
|
goto st125
|
|
case 126:
|
|
goto st126
|
|
case 127:
|
|
goto st127
|
|
case 128:
|
|
goto st128
|
|
case 129:
|
|
goto st129
|
|
case 403:
|
|
goto st403
|
|
case 404:
|
|
goto st404
|
|
case 405:
|
|
goto st405
|
|
case 130:
|
|
goto st130
|
|
case 406:
|
|
goto st406
|
|
case 407:
|
|
goto st407
|
|
case 408:
|
|
goto st408
|
|
case 409:
|
|
goto st409
|
|
case 410:
|
|
goto st410
|
|
case 411:
|
|
goto st411
|
|
case 412:
|
|
goto st412
|
|
case 413:
|
|
goto st413
|
|
case 414:
|
|
goto st414
|
|
case 415:
|
|
goto st415
|
|
case 416:
|
|
goto st416
|
|
case 417:
|
|
goto st417
|
|
case 418:
|
|
goto st418
|
|
case 419:
|
|
goto st419
|
|
case 420:
|
|
goto st420
|
|
case 421:
|
|
goto st421
|
|
case 422:
|
|
goto st422
|
|
case 423:
|
|
goto st423
|
|
case 424:
|
|
goto st424
|
|
case 425:
|
|
goto st425
|
|
case 426:
|
|
goto st426
|
|
case 427:
|
|
goto st427
|
|
case 131:
|
|
goto st131
|
|
case 428:
|
|
goto st428
|
|
case 429:
|
|
goto st429
|
|
case 430:
|
|
goto st430
|
|
case 431:
|
|
goto st431
|
|
case 132:
|
|
goto st132
|
|
case 432:
|
|
goto st432
|
|
case 433:
|
|
goto st433
|
|
case 434:
|
|
goto st434
|
|
case 435:
|
|
goto st435
|
|
case 436:
|
|
goto st436
|
|
case 437:
|
|
goto st437
|
|
case 438:
|
|
goto st438
|
|
case 439:
|
|
goto st439
|
|
case 440:
|
|
goto st440
|
|
case 441:
|
|
goto st441
|
|
case 442:
|
|
goto st442
|
|
case 443:
|
|
goto st443
|
|
case 444:
|
|
goto st444
|
|
case 445:
|
|
goto st445
|
|
case 446:
|
|
goto st446
|
|
case 447:
|
|
goto st447
|
|
case 448:
|
|
goto st448
|
|
case 449:
|
|
goto st449
|
|
case 450:
|
|
goto st450
|
|
case 451:
|
|
goto st451
|
|
case 133:
|
|
goto st133
|
|
case 134:
|
|
goto st134
|
|
case 135:
|
|
goto st135
|
|
case 452:
|
|
goto st452
|
|
case 453:
|
|
goto st453
|
|
case 136:
|
|
goto st136
|
|
case 454:
|
|
goto st454
|
|
case 455:
|
|
goto st455
|
|
case 456:
|
|
goto st456
|
|
case 457:
|
|
goto st457
|
|
case 458:
|
|
goto st458
|
|
case 459:
|
|
goto st459
|
|
case 460:
|
|
goto st460
|
|
case 461:
|
|
goto st461
|
|
case 462:
|
|
goto st462
|
|
case 463:
|
|
goto st463
|
|
case 464:
|
|
goto st464
|
|
case 465:
|
|
goto st465
|
|
case 466:
|
|
goto st466
|
|
case 467:
|
|
goto st467
|
|
case 468:
|
|
goto st468
|
|
case 469:
|
|
goto st469
|
|
case 470:
|
|
goto st470
|
|
case 471:
|
|
goto st471
|
|
case 472:
|
|
goto st472
|
|
case 473:
|
|
goto st473
|
|
case 137:
|
|
goto st137
|
|
case 474:
|
|
goto st474
|
|
case 475:
|
|
goto st475
|
|
case 476:
|
|
goto st476
|
|
case 138:
|
|
goto st138
|
|
case 477:
|
|
goto st477
|
|
case 478:
|
|
goto st478
|
|
case 479:
|
|
goto st479
|
|
case 480:
|
|
goto st480
|
|
case 481:
|
|
goto st481
|
|
case 482:
|
|
goto st482
|
|
case 483:
|
|
goto st483
|
|
case 484:
|
|
goto st484
|
|
case 485:
|
|
goto st485
|
|
case 486:
|
|
goto st486
|
|
case 487:
|
|
goto st487
|
|
case 488:
|
|
goto st488
|
|
case 489:
|
|
goto st489
|
|
case 490:
|
|
goto st490
|
|
case 491:
|
|
goto st491
|
|
case 492:
|
|
goto st492
|
|
case 493:
|
|
goto st493
|
|
case 494:
|
|
goto st494
|
|
case 495:
|
|
goto st495
|
|
case 496:
|
|
goto st496
|
|
case 497:
|
|
goto st497
|
|
case 498:
|
|
goto st498
|
|
case 139:
|
|
goto st139
|
|
case 499:
|
|
goto st499
|
|
case 500:
|
|
goto st500
|
|
case 501:
|
|
goto st501
|
|
case 502:
|
|
goto st502
|
|
case 503:
|
|
goto st503
|
|
case 504:
|
|
goto st504
|
|
case 505:
|
|
goto st505
|
|
case 506:
|
|
goto st506
|
|
case 507:
|
|
goto st507
|
|
case 508:
|
|
goto st508
|
|
case 509:
|
|
goto st509
|
|
case 510:
|
|
goto st510
|
|
case 511:
|
|
goto st511
|
|
case 512:
|
|
goto st512
|
|
case 513:
|
|
goto st513
|
|
case 514:
|
|
goto st514
|
|
case 515:
|
|
goto st515
|
|
case 516:
|
|
goto st516
|
|
case 517:
|
|
goto st517
|
|
case 518:
|
|
goto st518
|
|
case 519:
|
|
goto st519
|
|
case 520:
|
|
goto st520
|
|
case 140:
|
|
goto st140
|
|
case 141:
|
|
goto st141
|
|
case 142:
|
|
goto st142
|
|
case 143:
|
|
goto st143
|
|
case 144:
|
|
goto st144
|
|
case 521:
|
|
goto st521
|
|
case 145:
|
|
goto st145
|
|
case 522:
|
|
goto st522
|
|
case 146:
|
|
goto st146
|
|
case 523:
|
|
goto st523
|
|
case 524:
|
|
goto st524
|
|
case 525:
|
|
goto st525
|
|
case 526:
|
|
goto st526
|
|
case 527:
|
|
goto st527
|
|
case 528:
|
|
goto st528
|
|
case 529:
|
|
goto st529
|
|
case 530:
|
|
goto st530
|
|
case 531:
|
|
goto st531
|
|
case 147:
|
|
goto st147
|
|
case 148:
|
|
goto st148
|
|
case 149:
|
|
goto st149
|
|
case 532:
|
|
goto st532
|
|
case 150:
|
|
goto st150
|
|
case 151:
|
|
goto st151
|
|
case 152:
|
|
goto st152
|
|
case 533:
|
|
goto st533
|
|
case 153:
|
|
goto st153
|
|
case 154:
|
|
goto st154
|
|
case 534:
|
|
goto st534
|
|
case 535:
|
|
goto st535
|
|
case 155:
|
|
goto st155
|
|
case 156:
|
|
goto st156
|
|
case 157:
|
|
goto st157
|
|
case 536:
|
|
goto st536
|
|
case 537:
|
|
goto st537
|
|
case 538:
|
|
goto st538
|
|
case 158:
|
|
goto st158
|
|
case 539:
|
|
goto st539
|
|
case 540:
|
|
goto st540
|
|
case 541:
|
|
goto st541
|
|
case 542:
|
|
goto st542
|
|
case 543:
|
|
goto st543
|
|
case 544:
|
|
goto st544
|
|
case 545:
|
|
goto st545
|
|
case 546:
|
|
goto st546
|
|
case 547:
|
|
goto st547
|
|
case 548:
|
|
goto st548
|
|
case 549:
|
|
goto st549
|
|
case 550:
|
|
goto st550
|
|
case 551:
|
|
goto st551
|
|
case 552:
|
|
goto st552
|
|
case 553:
|
|
goto st553
|
|
case 554:
|
|
goto st554
|
|
case 555:
|
|
goto st555
|
|
case 556:
|
|
goto st556
|
|
case 557:
|
|
goto st557
|
|
case 558:
|
|
goto st558
|
|
case 159:
|
|
goto st159
|
|
case 160:
|
|
goto st160
|
|
case 559:
|
|
goto st559
|
|
case 560:
|
|
goto st560
|
|
case 561:
|
|
goto st561
|
|
case 562:
|
|
goto st562
|
|
case 563:
|
|
goto st563
|
|
case 564:
|
|
goto st564
|
|
case 565:
|
|
goto st565
|
|
case 566:
|
|
goto st566
|
|
case 567:
|
|
goto st567
|
|
case 161:
|
|
goto st161
|
|
case 162:
|
|
goto st162
|
|
case 163:
|
|
goto st163
|
|
case 568:
|
|
goto st568
|
|
case 164:
|
|
goto st164
|
|
case 165:
|
|
goto st165
|
|
case 166:
|
|
goto st166
|
|
case 569:
|
|
goto st569
|
|
case 167:
|
|
goto st167
|
|
case 168:
|
|
goto st168
|
|
case 570:
|
|
goto st570
|
|
case 571:
|
|
goto st571
|
|
case 169:
|
|
goto st169
|
|
case 170:
|
|
goto st170
|
|
case 171:
|
|
goto st171
|
|
case 172:
|
|
goto st172
|
|
case 572:
|
|
goto st572
|
|
case 173:
|
|
goto st173
|
|
case 573:
|
|
goto st573
|
|
case 574:
|
|
goto st574
|
|
case 174:
|
|
goto st174
|
|
case 575:
|
|
goto st575
|
|
case 576:
|
|
goto st576
|
|
case 577:
|
|
goto st577
|
|
case 578:
|
|
goto st578
|
|
case 579:
|
|
goto st579
|
|
case 580:
|
|
goto st580
|
|
case 581:
|
|
goto st581
|
|
case 582:
|
|
goto st582
|
|
case 583:
|
|
goto st583
|
|
case 175:
|
|
goto st175
|
|
case 176:
|
|
goto st176
|
|
case 177:
|
|
goto st177
|
|
case 584:
|
|
goto st584
|
|
case 178:
|
|
goto st178
|
|
case 179:
|
|
goto st179
|
|
case 180:
|
|
goto st180
|
|
case 585:
|
|
goto st585
|
|
case 181:
|
|
goto st181
|
|
case 182:
|
|
goto st182
|
|
case 586:
|
|
goto st586
|
|
case 587:
|
|
goto st587
|
|
case 183:
|
|
goto st183
|
|
case 184:
|
|
goto st184
|
|
case 588:
|
|
goto st588
|
|
case 185:
|
|
goto st185
|
|
case 186:
|
|
goto st186
|
|
case 589:
|
|
goto st589
|
|
case 590:
|
|
goto st590
|
|
case 591:
|
|
goto st591
|
|
case 592:
|
|
goto st592
|
|
case 593:
|
|
goto st593
|
|
case 594:
|
|
goto st594
|
|
case 595:
|
|
goto st595
|
|
case 596:
|
|
goto st596
|
|
case 187:
|
|
goto st187
|
|
case 188:
|
|
goto st188
|
|
case 189:
|
|
goto st189
|
|
case 597:
|
|
goto st597
|
|
case 190:
|
|
goto st190
|
|
case 191:
|
|
goto st191
|
|
case 192:
|
|
goto st192
|
|
case 598:
|
|
goto st598
|
|
case 193:
|
|
goto st193
|
|
case 194:
|
|
goto st194
|
|
case 599:
|
|
goto st599
|
|
case 600:
|
|
goto st600
|
|
case 195:
|
|
goto st195
|
|
case 601:
|
|
goto st601
|
|
case 196:
|
|
goto st196
|
|
case 602:
|
|
goto st602
|
|
case 603:
|
|
goto st603
|
|
case 197:
|
|
goto st197
|
|
case 198:
|
|
goto st198
|
|
case 199:
|
|
goto st199
|
|
case 604:
|
|
goto st604
|
|
case 605:
|
|
goto st605
|
|
case 606:
|
|
goto st606
|
|
case 200:
|
|
goto st200
|
|
case 201:
|
|
goto st201
|
|
case 202:
|
|
goto st202
|
|
case 607:
|
|
goto st607
|
|
case 203:
|
|
goto st203
|
|
case 204:
|
|
goto st204
|
|
case 205:
|
|
goto st205
|
|
}
|
|
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof
|
|
}
|
|
_resume:
|
|
switch m.cs {
|
|
case 1:
|
|
goto st_case_1
|
|
case 2:
|
|
goto st_case_2
|
|
case 3:
|
|
goto st_case_3
|
|
case 4:
|
|
goto st_case_4
|
|
case 0:
|
|
goto st_case_0
|
|
case 5:
|
|
goto st_case_5
|
|
case 6:
|
|
goto st_case_6
|
|
case 7:
|
|
goto st_case_7
|
|
case 206:
|
|
goto st_case_206
|
|
case 207:
|
|
goto st_case_207
|
|
case 208:
|
|
goto st_case_208
|
|
case 8:
|
|
goto st_case_8
|
|
case 209:
|
|
goto st_case_209
|
|
case 210:
|
|
goto st_case_210
|
|
case 211:
|
|
goto st_case_211
|
|
case 212:
|
|
goto st_case_212
|
|
case 213:
|
|
goto st_case_213
|
|
case 214:
|
|
goto st_case_214
|
|
case 215:
|
|
goto st_case_215
|
|
case 216:
|
|
goto st_case_216
|
|
case 217:
|
|
goto st_case_217
|
|
case 218:
|
|
goto st_case_218
|
|
case 219:
|
|
goto st_case_219
|
|
case 220:
|
|
goto st_case_220
|
|
case 221:
|
|
goto st_case_221
|
|
case 222:
|
|
goto st_case_222
|
|
case 223:
|
|
goto st_case_223
|
|
case 224:
|
|
goto st_case_224
|
|
case 225:
|
|
goto st_case_225
|
|
case 226:
|
|
goto st_case_226
|
|
case 227:
|
|
goto st_case_227
|
|
case 228:
|
|
goto st_case_228
|
|
case 9:
|
|
goto st_case_9
|
|
case 10:
|
|
goto st_case_10
|
|
case 11:
|
|
goto st_case_11
|
|
case 12:
|
|
goto st_case_12
|
|
case 13:
|
|
goto st_case_13
|
|
case 229:
|
|
goto st_case_229
|
|
case 14:
|
|
goto st_case_14
|
|
case 15:
|
|
goto st_case_15
|
|
case 230:
|
|
goto st_case_230
|
|
case 231:
|
|
goto st_case_231
|
|
case 232:
|
|
goto st_case_232
|
|
case 233:
|
|
goto st_case_233
|
|
case 234:
|
|
goto st_case_234
|
|
case 235:
|
|
goto st_case_235
|
|
case 236:
|
|
goto st_case_236
|
|
case 237:
|
|
goto st_case_237
|
|
case 238:
|
|
goto st_case_238
|
|
case 16:
|
|
goto st_case_16
|
|
case 17:
|
|
goto st_case_17
|
|
case 18:
|
|
goto st_case_18
|
|
case 239:
|
|
goto st_case_239
|
|
case 19:
|
|
goto st_case_19
|
|
case 20:
|
|
goto st_case_20
|
|
case 21:
|
|
goto st_case_21
|
|
case 240:
|
|
goto st_case_240
|
|
case 22:
|
|
goto st_case_22
|
|
case 23:
|
|
goto st_case_23
|
|
case 241:
|
|
goto st_case_241
|
|
case 242:
|
|
goto st_case_242
|
|
case 24:
|
|
goto st_case_24
|
|
case 25:
|
|
goto st_case_25
|
|
case 26:
|
|
goto st_case_26
|
|
case 27:
|
|
goto st_case_27
|
|
case 28:
|
|
goto st_case_28
|
|
case 29:
|
|
goto st_case_29
|
|
case 30:
|
|
goto st_case_30
|
|
case 31:
|
|
goto st_case_31
|
|
case 32:
|
|
goto st_case_32
|
|
case 33:
|
|
goto st_case_33
|
|
case 34:
|
|
goto st_case_34
|
|
case 35:
|
|
goto st_case_35
|
|
case 36:
|
|
goto st_case_36
|
|
case 37:
|
|
goto st_case_37
|
|
case 38:
|
|
goto st_case_38
|
|
case 39:
|
|
goto st_case_39
|
|
case 40:
|
|
goto st_case_40
|
|
case 41:
|
|
goto st_case_41
|
|
case 42:
|
|
goto st_case_42
|
|
case 243:
|
|
goto st_case_243
|
|
case 244:
|
|
goto st_case_244
|
|
case 43:
|
|
goto st_case_43
|
|
case 245:
|
|
goto st_case_245
|
|
case 246:
|
|
goto st_case_246
|
|
case 247:
|
|
goto st_case_247
|
|
case 248:
|
|
goto st_case_248
|
|
case 249:
|
|
goto st_case_249
|
|
case 250:
|
|
goto st_case_250
|
|
case 251:
|
|
goto st_case_251
|
|
case 252:
|
|
goto st_case_252
|
|
case 253:
|
|
goto st_case_253
|
|
case 254:
|
|
goto st_case_254
|
|
case 255:
|
|
goto st_case_255
|
|
case 256:
|
|
goto st_case_256
|
|
case 257:
|
|
goto st_case_257
|
|
case 258:
|
|
goto st_case_258
|
|
case 259:
|
|
goto st_case_259
|
|
case 260:
|
|
goto st_case_260
|
|
case 261:
|
|
goto st_case_261
|
|
case 262:
|
|
goto st_case_262
|
|
case 263:
|
|
goto st_case_263
|
|
case 264:
|
|
goto st_case_264
|
|
case 44:
|
|
goto st_case_44
|
|
case 265:
|
|
goto st_case_265
|
|
case 266:
|
|
goto st_case_266
|
|
case 45:
|
|
goto st_case_45
|
|
case 267:
|
|
goto st_case_267
|
|
case 268:
|
|
goto st_case_268
|
|
case 269:
|
|
goto st_case_269
|
|
case 270:
|
|
goto st_case_270
|
|
case 271:
|
|
goto st_case_271
|
|
case 272:
|
|
goto st_case_272
|
|
case 273:
|
|
goto st_case_273
|
|
case 274:
|
|
goto st_case_274
|
|
case 275:
|
|
goto st_case_275
|
|
case 276:
|
|
goto st_case_276
|
|
case 277:
|
|
goto st_case_277
|
|
case 278:
|
|
goto st_case_278
|
|
case 279:
|
|
goto st_case_279
|
|
case 280:
|
|
goto st_case_280
|
|
case 281:
|
|
goto st_case_281
|
|
case 282:
|
|
goto st_case_282
|
|
case 283:
|
|
goto st_case_283
|
|
case 284:
|
|
goto st_case_284
|
|
case 285:
|
|
goto st_case_285
|
|
case 286:
|
|
goto st_case_286
|
|
case 46:
|
|
goto st_case_46
|
|
case 47:
|
|
goto st_case_47
|
|
case 48:
|
|
goto st_case_48
|
|
case 287:
|
|
goto st_case_287
|
|
case 49:
|
|
goto st_case_49
|
|
case 50:
|
|
goto st_case_50
|
|
case 51:
|
|
goto st_case_51
|
|
case 52:
|
|
goto st_case_52
|
|
case 53:
|
|
goto st_case_53
|
|
case 288:
|
|
goto st_case_288
|
|
case 54:
|
|
goto st_case_54
|
|
case 289:
|
|
goto st_case_289
|
|
case 55:
|
|
goto st_case_55
|
|
case 290:
|
|
goto st_case_290
|
|
case 291:
|
|
goto st_case_291
|
|
case 292:
|
|
goto st_case_292
|
|
case 293:
|
|
goto st_case_293
|
|
case 294:
|
|
goto st_case_294
|
|
case 295:
|
|
goto st_case_295
|
|
case 296:
|
|
goto st_case_296
|
|
case 297:
|
|
goto st_case_297
|
|
case 298:
|
|
goto st_case_298
|
|
case 56:
|
|
goto st_case_56
|
|
case 57:
|
|
goto st_case_57
|
|
case 58:
|
|
goto st_case_58
|
|
case 299:
|
|
goto st_case_299
|
|
case 59:
|
|
goto st_case_59
|
|
case 60:
|
|
goto st_case_60
|
|
case 61:
|
|
goto st_case_61
|
|
case 300:
|
|
goto st_case_300
|
|
case 62:
|
|
goto st_case_62
|
|
case 63:
|
|
goto st_case_63
|
|
case 301:
|
|
goto st_case_301
|
|
case 302:
|
|
goto st_case_302
|
|
case 64:
|
|
goto st_case_64
|
|
case 65:
|
|
goto st_case_65
|
|
case 66:
|
|
goto st_case_66
|
|
case 303:
|
|
goto st_case_303
|
|
case 67:
|
|
goto st_case_67
|
|
case 68:
|
|
goto st_case_68
|
|
case 304:
|
|
goto st_case_304
|
|
case 305:
|
|
goto st_case_305
|
|
case 306:
|
|
goto st_case_306
|
|
case 307:
|
|
goto st_case_307
|
|
case 308:
|
|
goto st_case_308
|
|
case 309:
|
|
goto st_case_309
|
|
case 310:
|
|
goto st_case_310
|
|
case 311:
|
|
goto st_case_311
|
|
case 312:
|
|
goto st_case_312
|
|
case 69:
|
|
goto st_case_69
|
|
case 70:
|
|
goto st_case_70
|
|
case 71:
|
|
goto st_case_71
|
|
case 313:
|
|
goto st_case_313
|
|
case 72:
|
|
goto st_case_72
|
|
case 73:
|
|
goto st_case_73
|
|
case 74:
|
|
goto st_case_74
|
|
case 314:
|
|
goto st_case_314
|
|
case 75:
|
|
goto st_case_75
|
|
case 76:
|
|
goto st_case_76
|
|
case 315:
|
|
goto st_case_315
|
|
case 316:
|
|
goto st_case_316
|
|
case 77:
|
|
goto st_case_77
|
|
case 78:
|
|
goto st_case_78
|
|
case 79:
|
|
goto st_case_79
|
|
case 80:
|
|
goto st_case_80
|
|
case 81:
|
|
goto st_case_81
|
|
case 82:
|
|
goto st_case_82
|
|
case 317:
|
|
goto st_case_317
|
|
case 318:
|
|
goto st_case_318
|
|
case 319:
|
|
goto st_case_319
|
|
case 320:
|
|
goto st_case_320
|
|
case 83:
|
|
goto st_case_83
|
|
case 321:
|
|
goto st_case_321
|
|
case 322:
|
|
goto st_case_322
|
|
case 323:
|
|
goto st_case_323
|
|
case 324:
|
|
goto st_case_324
|
|
case 84:
|
|
goto st_case_84
|
|
case 325:
|
|
goto st_case_325
|
|
case 326:
|
|
goto st_case_326
|
|
case 327:
|
|
goto st_case_327
|
|
case 328:
|
|
goto st_case_328
|
|
case 329:
|
|
goto st_case_329
|
|
case 330:
|
|
goto st_case_330
|
|
case 331:
|
|
goto st_case_331
|
|
case 332:
|
|
goto st_case_332
|
|
case 333:
|
|
goto st_case_333
|
|
case 334:
|
|
goto st_case_334
|
|
case 335:
|
|
goto st_case_335
|
|
case 336:
|
|
goto st_case_336
|
|
case 337:
|
|
goto st_case_337
|
|
case 338:
|
|
goto st_case_338
|
|
case 339:
|
|
goto st_case_339
|
|
case 340:
|
|
goto st_case_340
|
|
case 341:
|
|
goto st_case_341
|
|
case 342:
|
|
goto st_case_342
|
|
case 85:
|
|
goto st_case_85
|
|
case 86:
|
|
goto st_case_86
|
|
case 87:
|
|
goto st_case_87
|
|
case 88:
|
|
goto st_case_88
|
|
case 89:
|
|
goto st_case_89
|
|
case 90:
|
|
goto st_case_90
|
|
case 91:
|
|
goto st_case_91
|
|
case 92:
|
|
goto st_case_92
|
|
case 93:
|
|
goto st_case_93
|
|
case 94:
|
|
goto st_case_94
|
|
case 95:
|
|
goto st_case_95
|
|
case 96:
|
|
goto st_case_96
|
|
case 97:
|
|
goto st_case_97
|
|
case 343:
|
|
goto st_case_343
|
|
case 344:
|
|
goto st_case_344
|
|
case 98:
|
|
goto st_case_98
|
|
case 345:
|
|
goto st_case_345
|
|
case 346:
|
|
goto st_case_346
|
|
case 347:
|
|
goto st_case_347
|
|
case 348:
|
|
goto st_case_348
|
|
case 349:
|
|
goto st_case_349
|
|
case 350:
|
|
goto st_case_350
|
|
case 351:
|
|
goto st_case_351
|
|
case 352:
|
|
goto st_case_352
|
|
case 353:
|
|
goto st_case_353
|
|
case 354:
|
|
goto st_case_354
|
|
case 355:
|
|
goto st_case_355
|
|
case 356:
|
|
goto st_case_356
|
|
case 357:
|
|
goto st_case_357
|
|
case 358:
|
|
goto st_case_358
|
|
case 359:
|
|
goto st_case_359
|
|
case 360:
|
|
goto st_case_360
|
|
case 361:
|
|
goto st_case_361
|
|
case 362:
|
|
goto st_case_362
|
|
case 363:
|
|
goto st_case_363
|
|
case 364:
|
|
goto st_case_364
|
|
case 99:
|
|
goto st_case_99
|
|
case 100:
|
|
goto st_case_100
|
|
case 365:
|
|
goto st_case_365
|
|
case 366:
|
|
goto st_case_366
|
|
case 101:
|
|
goto st_case_101
|
|
case 367:
|
|
goto st_case_367
|
|
case 368:
|
|
goto st_case_368
|
|
case 369:
|
|
goto st_case_369
|
|
case 370:
|
|
goto st_case_370
|
|
case 371:
|
|
goto st_case_371
|
|
case 372:
|
|
goto st_case_372
|
|
case 373:
|
|
goto st_case_373
|
|
case 374:
|
|
goto st_case_374
|
|
case 375:
|
|
goto st_case_375
|
|
case 376:
|
|
goto st_case_376
|
|
case 377:
|
|
goto st_case_377
|
|
case 378:
|
|
goto st_case_378
|
|
case 379:
|
|
goto st_case_379
|
|
case 380:
|
|
goto st_case_380
|
|
case 381:
|
|
goto st_case_381
|
|
case 382:
|
|
goto st_case_382
|
|
case 383:
|
|
goto st_case_383
|
|
case 384:
|
|
goto st_case_384
|
|
case 385:
|
|
goto st_case_385
|
|
case 386:
|
|
goto st_case_386
|
|
case 102:
|
|
goto st_case_102
|
|
case 387:
|
|
goto st_case_387
|
|
case 388:
|
|
goto st_case_388
|
|
case 103:
|
|
goto st_case_103
|
|
case 104:
|
|
goto st_case_104
|
|
case 105:
|
|
goto st_case_105
|
|
case 106:
|
|
goto st_case_106
|
|
case 107:
|
|
goto st_case_107
|
|
case 389:
|
|
goto st_case_389
|
|
case 108:
|
|
goto st_case_108
|
|
case 109:
|
|
goto st_case_109
|
|
case 390:
|
|
goto st_case_390
|
|
case 391:
|
|
goto st_case_391
|
|
case 392:
|
|
goto st_case_392
|
|
case 393:
|
|
goto st_case_393
|
|
case 394:
|
|
goto st_case_394
|
|
case 395:
|
|
goto st_case_395
|
|
case 396:
|
|
goto st_case_396
|
|
case 397:
|
|
goto st_case_397
|
|
case 398:
|
|
goto st_case_398
|
|
case 110:
|
|
goto st_case_110
|
|
case 111:
|
|
goto st_case_111
|
|
case 112:
|
|
goto st_case_112
|
|
case 399:
|
|
goto st_case_399
|
|
case 113:
|
|
goto st_case_113
|
|
case 114:
|
|
goto st_case_114
|
|
case 115:
|
|
goto st_case_115
|
|
case 400:
|
|
goto st_case_400
|
|
case 116:
|
|
goto st_case_116
|
|
case 117:
|
|
goto st_case_117
|
|
case 401:
|
|
goto st_case_401
|
|
case 402:
|
|
goto st_case_402
|
|
case 118:
|
|
goto st_case_118
|
|
case 119:
|
|
goto st_case_119
|
|
case 120:
|
|
goto st_case_120
|
|
case 121:
|
|
goto st_case_121
|
|
case 122:
|
|
goto st_case_122
|
|
case 123:
|
|
goto st_case_123
|
|
case 124:
|
|
goto st_case_124
|
|
case 125:
|
|
goto st_case_125
|
|
case 126:
|
|
goto st_case_126
|
|
case 127:
|
|
goto st_case_127
|
|
case 128:
|
|
goto st_case_128
|
|
case 129:
|
|
goto st_case_129
|
|
case 403:
|
|
goto st_case_403
|
|
case 404:
|
|
goto st_case_404
|
|
case 405:
|
|
goto st_case_405
|
|
case 130:
|
|
goto st_case_130
|
|
case 406:
|
|
goto st_case_406
|
|
case 407:
|
|
goto st_case_407
|
|
case 408:
|
|
goto st_case_408
|
|
case 409:
|
|
goto st_case_409
|
|
case 410:
|
|
goto st_case_410
|
|
case 411:
|
|
goto st_case_411
|
|
case 412:
|
|
goto st_case_412
|
|
case 413:
|
|
goto st_case_413
|
|
case 414:
|
|
goto st_case_414
|
|
case 415:
|
|
goto st_case_415
|
|
case 416:
|
|
goto st_case_416
|
|
case 417:
|
|
goto st_case_417
|
|
case 418:
|
|
goto st_case_418
|
|
case 419:
|
|
goto st_case_419
|
|
case 420:
|
|
goto st_case_420
|
|
case 421:
|
|
goto st_case_421
|
|
case 422:
|
|
goto st_case_422
|
|
case 423:
|
|
goto st_case_423
|
|
case 424:
|
|
goto st_case_424
|
|
case 425:
|
|
goto st_case_425
|
|
case 426:
|
|
goto st_case_426
|
|
case 427:
|
|
goto st_case_427
|
|
case 131:
|
|
goto st_case_131
|
|
case 428:
|
|
goto st_case_428
|
|
case 429:
|
|
goto st_case_429
|
|
case 430:
|
|
goto st_case_430
|
|
case 431:
|
|
goto st_case_431
|
|
case 132:
|
|
goto st_case_132
|
|
case 432:
|
|
goto st_case_432
|
|
case 433:
|
|
goto st_case_433
|
|
case 434:
|
|
goto st_case_434
|
|
case 435:
|
|
goto st_case_435
|
|
case 436:
|
|
goto st_case_436
|
|
case 437:
|
|
goto st_case_437
|
|
case 438:
|
|
goto st_case_438
|
|
case 439:
|
|
goto st_case_439
|
|
case 440:
|
|
goto st_case_440
|
|
case 441:
|
|
goto st_case_441
|
|
case 442:
|
|
goto st_case_442
|
|
case 443:
|
|
goto st_case_443
|
|
case 444:
|
|
goto st_case_444
|
|
case 445:
|
|
goto st_case_445
|
|
case 446:
|
|
goto st_case_446
|
|
case 447:
|
|
goto st_case_447
|
|
case 448:
|
|
goto st_case_448
|
|
case 449:
|
|
goto st_case_449
|
|
case 450:
|
|
goto st_case_450
|
|
case 451:
|
|
goto st_case_451
|
|
case 133:
|
|
goto st_case_133
|
|
case 134:
|
|
goto st_case_134
|
|
case 135:
|
|
goto st_case_135
|
|
case 452:
|
|
goto st_case_452
|
|
case 453:
|
|
goto st_case_453
|
|
case 136:
|
|
goto st_case_136
|
|
case 454:
|
|
goto st_case_454
|
|
case 455:
|
|
goto st_case_455
|
|
case 456:
|
|
goto st_case_456
|
|
case 457:
|
|
goto st_case_457
|
|
case 458:
|
|
goto st_case_458
|
|
case 459:
|
|
goto st_case_459
|
|
case 460:
|
|
goto st_case_460
|
|
case 461:
|
|
goto st_case_461
|
|
case 462:
|
|
goto st_case_462
|
|
case 463:
|
|
goto st_case_463
|
|
case 464:
|
|
goto st_case_464
|
|
case 465:
|
|
goto st_case_465
|
|
case 466:
|
|
goto st_case_466
|
|
case 467:
|
|
goto st_case_467
|
|
case 468:
|
|
goto st_case_468
|
|
case 469:
|
|
goto st_case_469
|
|
case 470:
|
|
goto st_case_470
|
|
case 471:
|
|
goto st_case_471
|
|
case 472:
|
|
goto st_case_472
|
|
case 473:
|
|
goto st_case_473
|
|
case 137:
|
|
goto st_case_137
|
|
case 474:
|
|
goto st_case_474
|
|
case 475:
|
|
goto st_case_475
|
|
case 476:
|
|
goto st_case_476
|
|
case 138:
|
|
goto st_case_138
|
|
case 477:
|
|
goto st_case_477
|
|
case 478:
|
|
goto st_case_478
|
|
case 479:
|
|
goto st_case_479
|
|
case 480:
|
|
goto st_case_480
|
|
case 481:
|
|
goto st_case_481
|
|
case 482:
|
|
goto st_case_482
|
|
case 483:
|
|
goto st_case_483
|
|
case 484:
|
|
goto st_case_484
|
|
case 485:
|
|
goto st_case_485
|
|
case 486:
|
|
goto st_case_486
|
|
case 487:
|
|
goto st_case_487
|
|
case 488:
|
|
goto st_case_488
|
|
case 489:
|
|
goto st_case_489
|
|
case 490:
|
|
goto st_case_490
|
|
case 491:
|
|
goto st_case_491
|
|
case 492:
|
|
goto st_case_492
|
|
case 493:
|
|
goto st_case_493
|
|
case 494:
|
|
goto st_case_494
|
|
case 495:
|
|
goto st_case_495
|
|
case 496:
|
|
goto st_case_496
|
|
case 497:
|
|
goto st_case_497
|
|
case 498:
|
|
goto st_case_498
|
|
case 139:
|
|
goto st_case_139
|
|
case 499:
|
|
goto st_case_499
|
|
case 500:
|
|
goto st_case_500
|
|
case 501:
|
|
goto st_case_501
|
|
case 502:
|
|
goto st_case_502
|
|
case 503:
|
|
goto st_case_503
|
|
case 504:
|
|
goto st_case_504
|
|
case 505:
|
|
goto st_case_505
|
|
case 506:
|
|
goto st_case_506
|
|
case 507:
|
|
goto st_case_507
|
|
case 508:
|
|
goto st_case_508
|
|
case 509:
|
|
goto st_case_509
|
|
case 510:
|
|
goto st_case_510
|
|
case 511:
|
|
goto st_case_511
|
|
case 512:
|
|
goto st_case_512
|
|
case 513:
|
|
goto st_case_513
|
|
case 514:
|
|
goto st_case_514
|
|
case 515:
|
|
goto st_case_515
|
|
case 516:
|
|
goto st_case_516
|
|
case 517:
|
|
goto st_case_517
|
|
case 518:
|
|
goto st_case_518
|
|
case 519:
|
|
goto st_case_519
|
|
case 520:
|
|
goto st_case_520
|
|
case 140:
|
|
goto st_case_140
|
|
case 141:
|
|
goto st_case_141
|
|
case 142:
|
|
goto st_case_142
|
|
case 143:
|
|
goto st_case_143
|
|
case 144:
|
|
goto st_case_144
|
|
case 521:
|
|
goto st_case_521
|
|
case 145:
|
|
goto st_case_145
|
|
case 522:
|
|
goto st_case_522
|
|
case 146:
|
|
goto st_case_146
|
|
case 523:
|
|
goto st_case_523
|
|
case 524:
|
|
goto st_case_524
|
|
case 525:
|
|
goto st_case_525
|
|
case 526:
|
|
goto st_case_526
|
|
case 527:
|
|
goto st_case_527
|
|
case 528:
|
|
goto st_case_528
|
|
case 529:
|
|
goto st_case_529
|
|
case 530:
|
|
goto st_case_530
|
|
case 531:
|
|
goto st_case_531
|
|
case 147:
|
|
goto st_case_147
|
|
case 148:
|
|
goto st_case_148
|
|
case 149:
|
|
goto st_case_149
|
|
case 532:
|
|
goto st_case_532
|
|
case 150:
|
|
goto st_case_150
|
|
case 151:
|
|
goto st_case_151
|
|
case 152:
|
|
goto st_case_152
|
|
case 533:
|
|
goto st_case_533
|
|
case 153:
|
|
goto st_case_153
|
|
case 154:
|
|
goto st_case_154
|
|
case 534:
|
|
goto st_case_534
|
|
case 535:
|
|
goto st_case_535
|
|
case 155:
|
|
goto st_case_155
|
|
case 156:
|
|
goto st_case_156
|
|
case 157:
|
|
goto st_case_157
|
|
case 536:
|
|
goto st_case_536
|
|
case 537:
|
|
goto st_case_537
|
|
case 538:
|
|
goto st_case_538
|
|
case 158:
|
|
goto st_case_158
|
|
case 539:
|
|
goto st_case_539
|
|
case 540:
|
|
goto st_case_540
|
|
case 541:
|
|
goto st_case_541
|
|
case 542:
|
|
goto st_case_542
|
|
case 543:
|
|
goto st_case_543
|
|
case 544:
|
|
goto st_case_544
|
|
case 545:
|
|
goto st_case_545
|
|
case 546:
|
|
goto st_case_546
|
|
case 547:
|
|
goto st_case_547
|
|
case 548:
|
|
goto st_case_548
|
|
case 549:
|
|
goto st_case_549
|
|
case 550:
|
|
goto st_case_550
|
|
case 551:
|
|
goto st_case_551
|
|
case 552:
|
|
goto st_case_552
|
|
case 553:
|
|
goto st_case_553
|
|
case 554:
|
|
goto st_case_554
|
|
case 555:
|
|
goto st_case_555
|
|
case 556:
|
|
goto st_case_556
|
|
case 557:
|
|
goto st_case_557
|
|
case 558:
|
|
goto st_case_558
|
|
case 159:
|
|
goto st_case_159
|
|
case 160:
|
|
goto st_case_160
|
|
case 559:
|
|
goto st_case_559
|
|
case 560:
|
|
goto st_case_560
|
|
case 561:
|
|
goto st_case_561
|
|
case 562:
|
|
goto st_case_562
|
|
case 563:
|
|
goto st_case_563
|
|
case 564:
|
|
goto st_case_564
|
|
case 565:
|
|
goto st_case_565
|
|
case 566:
|
|
goto st_case_566
|
|
case 567:
|
|
goto st_case_567
|
|
case 161:
|
|
goto st_case_161
|
|
case 162:
|
|
goto st_case_162
|
|
case 163:
|
|
goto st_case_163
|
|
case 568:
|
|
goto st_case_568
|
|
case 164:
|
|
goto st_case_164
|
|
case 165:
|
|
goto st_case_165
|
|
case 166:
|
|
goto st_case_166
|
|
case 569:
|
|
goto st_case_569
|
|
case 167:
|
|
goto st_case_167
|
|
case 168:
|
|
goto st_case_168
|
|
case 570:
|
|
goto st_case_570
|
|
case 571:
|
|
goto st_case_571
|
|
case 169:
|
|
goto st_case_169
|
|
case 170:
|
|
goto st_case_170
|
|
case 171:
|
|
goto st_case_171
|
|
case 172:
|
|
goto st_case_172
|
|
case 572:
|
|
goto st_case_572
|
|
case 173:
|
|
goto st_case_173
|
|
case 573:
|
|
goto st_case_573
|
|
case 574:
|
|
goto st_case_574
|
|
case 174:
|
|
goto st_case_174
|
|
case 575:
|
|
goto st_case_575
|
|
case 576:
|
|
goto st_case_576
|
|
case 577:
|
|
goto st_case_577
|
|
case 578:
|
|
goto st_case_578
|
|
case 579:
|
|
goto st_case_579
|
|
case 580:
|
|
goto st_case_580
|
|
case 581:
|
|
goto st_case_581
|
|
case 582:
|
|
goto st_case_582
|
|
case 583:
|
|
goto st_case_583
|
|
case 175:
|
|
goto st_case_175
|
|
case 176:
|
|
goto st_case_176
|
|
case 177:
|
|
goto st_case_177
|
|
case 584:
|
|
goto st_case_584
|
|
case 178:
|
|
goto st_case_178
|
|
case 179:
|
|
goto st_case_179
|
|
case 180:
|
|
goto st_case_180
|
|
case 585:
|
|
goto st_case_585
|
|
case 181:
|
|
goto st_case_181
|
|
case 182:
|
|
goto st_case_182
|
|
case 586:
|
|
goto st_case_586
|
|
case 587:
|
|
goto st_case_587
|
|
case 183:
|
|
goto st_case_183
|
|
case 184:
|
|
goto st_case_184
|
|
case 588:
|
|
goto st_case_588
|
|
case 185:
|
|
goto st_case_185
|
|
case 186:
|
|
goto st_case_186
|
|
case 589:
|
|
goto st_case_589
|
|
case 590:
|
|
goto st_case_590
|
|
case 591:
|
|
goto st_case_591
|
|
case 592:
|
|
goto st_case_592
|
|
case 593:
|
|
goto st_case_593
|
|
case 594:
|
|
goto st_case_594
|
|
case 595:
|
|
goto st_case_595
|
|
case 596:
|
|
goto st_case_596
|
|
case 187:
|
|
goto st_case_187
|
|
case 188:
|
|
goto st_case_188
|
|
case 189:
|
|
goto st_case_189
|
|
case 597:
|
|
goto st_case_597
|
|
case 190:
|
|
goto st_case_190
|
|
case 191:
|
|
goto st_case_191
|
|
case 192:
|
|
goto st_case_192
|
|
case 598:
|
|
goto st_case_598
|
|
case 193:
|
|
goto st_case_193
|
|
case 194:
|
|
goto st_case_194
|
|
case 599:
|
|
goto st_case_599
|
|
case 600:
|
|
goto st_case_600
|
|
case 195:
|
|
goto st_case_195
|
|
case 601:
|
|
goto st_case_601
|
|
case 196:
|
|
goto st_case_196
|
|
case 602:
|
|
goto st_case_602
|
|
case 603:
|
|
goto st_case_603
|
|
case 197:
|
|
goto st_case_197
|
|
case 198:
|
|
goto st_case_198
|
|
case 199:
|
|
goto st_case_199
|
|
case 604:
|
|
goto st_case_604
|
|
case 605:
|
|
goto st_case_605
|
|
case 606:
|
|
goto st_case_606
|
|
case 200:
|
|
goto st_case_200
|
|
case 201:
|
|
goto st_case_201
|
|
case 202:
|
|
goto st_case_202
|
|
case 607:
|
|
goto st_case_607
|
|
case 203:
|
|
goto st_case_203
|
|
case 204:
|
|
goto st_case_204
|
|
case 205:
|
|
goto st_case_205
|
|
}
|
|
goto st_out
|
|
st1:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof1
|
|
}
|
|
st_case_1:
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr1
|
|
case 35:
|
|
goto tr1
|
|
case 44:
|
|
goto tr1
|
|
case 92:
|
|
goto tr2
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr1
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr1
|
|
}
|
|
goto tr0
|
|
tr0:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st2
|
|
st2:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof2
|
|
}
|
|
st_case_2:
|
|
//line plugins/parsers/influx/machine.go:2627
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
tr4:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st3
|
|
tr60:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st3
|
|
st3:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof3
|
|
}
|
|
st_case_3:
|
|
//line plugins/parsers/influx/machine.go:2663
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr11
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto st3
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr5
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st3
|
|
}
|
|
goto tr9
|
|
tr9:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st4
|
|
st4:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof4
|
|
}
|
|
st_case_4:
|
|
//line plugins/parsers/influx/machine.go:2695
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr5
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr1:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr5:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr31:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr52:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr61:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr101:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr207:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr216:
|
|
m.cs = 0
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
//line plugins/parsers/influx/machine.go:2899
|
|
st_case_0:
|
|
st0:
|
|
m.cs = 0
|
|
goto _out
|
|
tr14:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st5
|
|
st5:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof5
|
|
}
|
|
st_case_5:
|
|
//line plugins/parsers/influx/machine.go:2915
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st6
|
|
case 45:
|
|
goto tr17
|
|
case 46:
|
|
goto tr18
|
|
case 48:
|
|
goto tr19
|
|
case 70:
|
|
goto tr21
|
|
case 84:
|
|
goto tr22
|
|
case 102:
|
|
goto tr23
|
|
case 116:
|
|
goto tr24
|
|
}
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr20
|
|
}
|
|
goto tr5
|
|
st6:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof6
|
|
}
|
|
st_case_6:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr26
|
|
case 92:
|
|
goto tr27
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr25
|
|
tr25:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st7
|
|
st7:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof7
|
|
}
|
|
st_case_7:
|
|
//line plugins/parsers/influx/machine.go:2966
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr26:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st206
|
|
tr29:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st206
|
|
st206:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof206
|
|
}
|
|
st_case_206:
|
|
//line plugins/parsers/influx/machine.go:3000
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto st9
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st207
|
|
}
|
|
goto tr101
|
|
tr382:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st207
|
|
tr388:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st207
|
|
tr392:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st207
|
|
tr396:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st207
|
|
st207:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof207
|
|
}
|
|
st_case_207:
|
|
//line plugins/parsers/influx/machine.go:3044
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 45:
|
|
goto tr359
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr360
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st207
|
|
}
|
|
goto tr31
|
|
tr357:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr362:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr383:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr389:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr393:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr397:
|
|
m.cs = 208
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
st208:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof208
|
|
}
|
|
st_case_208:
|
|
//line plugins/parsers/influx/machine.go:3143
|
|
goto tr1
|
|
tr359:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st8
|
|
st8:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof8
|
|
}
|
|
st_case_8:
|
|
//line plugins/parsers/influx/machine.go:3156
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st209
|
|
}
|
|
goto tr31
|
|
tr360:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st209
|
|
st209:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof209
|
|
}
|
|
st_case_209:
|
|
//line plugins/parsers/influx/machine.go:3172
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st211
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
tr361:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st210
|
|
st210:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof210
|
|
}
|
|
st_case_210:
|
|
//line plugins/parsers/influx/machine.go:3201
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st210
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st210
|
|
}
|
|
goto tr1
|
|
st211:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof211
|
|
}
|
|
st_case_211:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st212
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st212:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof212
|
|
}
|
|
st_case_212:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st213
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st213:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof213
|
|
}
|
|
st_case_213:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st214
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st214:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof214
|
|
}
|
|
st_case_214:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st215
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st215:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof215
|
|
}
|
|
st_case_215:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st216
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st216:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof216
|
|
}
|
|
st_case_216:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st217
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st217:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof217
|
|
}
|
|
st_case_217:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st218
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st218:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof218
|
|
}
|
|
st_case_218:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st219
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st219:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof219
|
|
}
|
|
st_case_219:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st220
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st220:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof220
|
|
}
|
|
st_case_220:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st221
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st221:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof221
|
|
}
|
|
st_case_221:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st222
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st222:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof222
|
|
}
|
|
st_case_222:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st223
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st223:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof223
|
|
}
|
|
st_case_223:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st224
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st224:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof224
|
|
}
|
|
st_case_224:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st225
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st225:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof225
|
|
}
|
|
st_case_225:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st226
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st226:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof226
|
|
}
|
|
st_case_226:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st227
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st227:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof227
|
|
}
|
|
st_case_227:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st228
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
st228:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof228
|
|
}
|
|
st_case_228:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr361
|
|
}
|
|
goto tr31
|
|
tr384:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st9
|
|
tr390:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st9
|
|
tr394:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st9
|
|
tr398:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st9
|
|
st9:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof9
|
|
}
|
|
st_case_9:
|
|
//line plugins/parsers/influx/machine.go:3634
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr5
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr5
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto tr9
|
|
tr12:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st10
|
|
st10:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof10
|
|
}
|
|
st_case_10:
|
|
//line plugins/parsers/influx/machine.go:3665
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr27:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st11
|
|
st11:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof11
|
|
}
|
|
st_case_11:
|
|
//line plugins/parsers/influx/machine.go:3686
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st7
|
|
case 92:
|
|
goto st7
|
|
}
|
|
goto tr5
|
|
tr17:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st12
|
|
st12:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof12
|
|
}
|
|
st_case_12:
|
|
//line plugins/parsers/influx/machine.go:3705
|
|
switch ( m.data)[( m.p)] {
|
|
case 46:
|
|
goto st13
|
|
case 48:
|
|
goto st231
|
|
}
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st234
|
|
}
|
|
goto tr5
|
|
tr18:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st13
|
|
st13:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof13
|
|
}
|
|
st_case_13:
|
|
//line plugins/parsers/influx/machine.go:3727
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st229
|
|
}
|
|
goto tr5
|
|
st229:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof229
|
|
}
|
|
st_case_229:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st229
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
st14:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof14
|
|
}
|
|
st_case_14:
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st15
|
|
case 43:
|
|
goto st15
|
|
case 45:
|
|
goto st15
|
|
}
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st230
|
|
}
|
|
goto tr5
|
|
st15:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof15
|
|
}
|
|
st_case_15:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st230
|
|
}
|
|
goto tr5
|
|
st230:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof230
|
|
}
|
|
st_case_230:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st230
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
st231:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof231
|
|
}
|
|
st_case_231:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 46:
|
|
goto st229
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
case 105:
|
|
goto st233
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st232
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
st232:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof232
|
|
}
|
|
st_case_232:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 46:
|
|
goto st229
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st232
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
st233:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof233
|
|
}
|
|
st_case_233:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr389
|
|
case 13:
|
|
goto tr389
|
|
case 32:
|
|
goto tr388
|
|
case 44:
|
|
goto tr390
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr388
|
|
}
|
|
goto tr101
|
|
st234:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof234
|
|
}
|
|
st_case_234:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 46:
|
|
goto st229
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
case 105:
|
|
goto st233
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st234
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
tr19:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st235
|
|
st235:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof235
|
|
}
|
|
st_case_235:
|
|
//line plugins/parsers/influx/machine.go:3934
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 46:
|
|
goto st229
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
case 105:
|
|
goto st233
|
|
case 117:
|
|
goto st236
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st232
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
st236:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof236
|
|
}
|
|
st_case_236:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr393
|
|
case 13:
|
|
goto tr393
|
|
case 32:
|
|
goto tr392
|
|
case 44:
|
|
goto tr394
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr392
|
|
}
|
|
goto tr101
|
|
tr20:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st237
|
|
st237:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof237
|
|
}
|
|
st_case_237:
|
|
//line plugins/parsers/influx/machine.go:3994
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr382
|
|
case 44:
|
|
goto tr384
|
|
case 46:
|
|
goto st229
|
|
case 69:
|
|
goto st14
|
|
case 101:
|
|
goto st14
|
|
case 105:
|
|
goto st233
|
|
case 117:
|
|
goto st236
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st237
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr382
|
|
}
|
|
goto tr101
|
|
tr21:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st238
|
|
st238:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof238
|
|
}
|
|
st_case_238:
|
|
//line plugins/parsers/influx/machine.go:4035
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr396
|
|
case 44:
|
|
goto tr398
|
|
case 65:
|
|
goto st16
|
|
case 97:
|
|
goto st19
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr396
|
|
}
|
|
goto tr101
|
|
st16:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof16
|
|
}
|
|
st_case_16:
|
|
if ( m.data)[( m.p)] == 76 {
|
|
goto st17
|
|
}
|
|
goto tr5
|
|
st17:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof17
|
|
}
|
|
st_case_17:
|
|
if ( m.data)[( m.p)] == 83 {
|
|
goto st18
|
|
}
|
|
goto tr5
|
|
st18:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof18
|
|
}
|
|
st_case_18:
|
|
if ( m.data)[( m.p)] == 69 {
|
|
goto st239
|
|
}
|
|
goto tr5
|
|
st239:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof239
|
|
}
|
|
st_case_239:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr396
|
|
case 44:
|
|
goto tr398
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr396
|
|
}
|
|
goto tr101
|
|
st19:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof19
|
|
}
|
|
st_case_19:
|
|
if ( m.data)[( m.p)] == 108 {
|
|
goto st20
|
|
}
|
|
goto tr5
|
|
st20:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof20
|
|
}
|
|
st_case_20:
|
|
if ( m.data)[( m.p)] == 115 {
|
|
goto st21
|
|
}
|
|
goto tr5
|
|
st21:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof21
|
|
}
|
|
st_case_21:
|
|
if ( m.data)[( m.p)] == 101 {
|
|
goto st239
|
|
}
|
|
goto tr5
|
|
tr22:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st240
|
|
st240:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof240
|
|
}
|
|
st_case_240:
|
|
//line plugins/parsers/influx/machine.go:4138
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr396
|
|
case 44:
|
|
goto tr398
|
|
case 82:
|
|
goto st22
|
|
case 114:
|
|
goto st23
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr396
|
|
}
|
|
goto tr101
|
|
st22:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof22
|
|
}
|
|
st_case_22:
|
|
if ( m.data)[( m.p)] == 85 {
|
|
goto st18
|
|
}
|
|
goto tr5
|
|
st23:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof23
|
|
}
|
|
st_case_23:
|
|
if ( m.data)[( m.p)] == 117 {
|
|
goto st21
|
|
}
|
|
goto tr5
|
|
tr23:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st241
|
|
st241:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof241
|
|
}
|
|
st_case_241:
|
|
//line plugins/parsers/influx/machine.go:4186
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr396
|
|
case 44:
|
|
goto tr398
|
|
case 97:
|
|
goto st19
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr396
|
|
}
|
|
goto tr101
|
|
tr24:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st242
|
|
st242:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof242
|
|
}
|
|
st_case_242:
|
|
//line plugins/parsers/influx/machine.go:4214
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr396
|
|
case 44:
|
|
goto tr398
|
|
case 114:
|
|
goto st23
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr396
|
|
}
|
|
goto tr101
|
|
tr11:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st24
|
|
st24:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof24
|
|
}
|
|
st_case_24:
|
|
//line plugins/parsers/influx/machine.go:4242
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr11
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto st3
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st3
|
|
}
|
|
goto tr9
|
|
tr6:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st25
|
|
st25:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof25
|
|
}
|
|
st_case_25:
|
|
//line plugins/parsers/influx/machine.go:4274
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr45
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto st2
|
|
case 92:
|
|
goto tr46
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto tr44
|
|
tr44:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st26
|
|
st26:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof26
|
|
}
|
|
st_case_26:
|
|
//line plugins/parsers/influx/machine.go:4306
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr48
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st26
|
|
tr48:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st27
|
|
tr45:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st27
|
|
st27:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof27
|
|
}
|
|
st_case_27:
|
|
//line plugins/parsers/influx/machine.go:4348
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr45
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto tr46
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto tr44
|
|
tr7:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st28
|
|
tr63:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st28
|
|
st28:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof28
|
|
}
|
|
st_case_28:
|
|
//line plugins/parsers/influx/machine.go:4386
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr52
|
|
case 92:
|
|
goto tr53
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto tr51
|
|
tr51:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st29
|
|
st29:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof29
|
|
}
|
|
st_case_29:
|
|
//line plugins/parsers/influx/machine.go:4417
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st29
|
|
tr55:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
goto st30
|
|
st30:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof30
|
|
}
|
|
st_case_30:
|
|
//line plugins/parsers/influx/machine.go:4448
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr52
|
|
case 92:
|
|
goto tr58
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto tr57
|
|
tr57:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st31
|
|
st31:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof31
|
|
}
|
|
st_case_31:
|
|
//line plugins/parsers/influx/machine.go:4479
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
tr62:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st32
|
|
st32:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof32
|
|
}
|
|
st_case_32:
|
|
//line plugins/parsers/influx/machine.go:4511
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr66
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto tr67
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto tr65
|
|
tr65:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st33
|
|
st33:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof33
|
|
}
|
|
st_case_33:
|
|
//line plugins/parsers/influx/machine.go:4543
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr69
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st33
|
|
tr69:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st34
|
|
tr66:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st34
|
|
st34:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof34
|
|
}
|
|
st_case_34:
|
|
//line plugins/parsers/influx/machine.go:4585
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr66
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr67
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto tr65
|
|
tr67:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st35
|
|
st35:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof35
|
|
}
|
|
st_case_35:
|
|
//line plugins/parsers/influx/machine.go:4617
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st33
|
|
tr58:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st36
|
|
st36:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof36
|
|
}
|
|
st_case_36:
|
|
//line plugins/parsers/influx/machine.go:4638
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st31
|
|
tr53:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st37
|
|
st37:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof37
|
|
}
|
|
st_case_37:
|
|
//line plugins/parsers/influx/machine.go:4659
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st29
|
|
tr49:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st38
|
|
st38:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof38
|
|
}
|
|
st_case_38:
|
|
//line plugins/parsers/influx/machine.go:4680
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 34:
|
|
goto st39
|
|
case 44:
|
|
goto tr7
|
|
case 45:
|
|
goto tr72
|
|
case 46:
|
|
goto tr73
|
|
case 48:
|
|
goto tr74
|
|
case 70:
|
|
goto tr76
|
|
case 84:
|
|
goto tr77
|
|
case 92:
|
|
goto st133
|
|
case 102:
|
|
goto tr78
|
|
case 116:
|
|
goto tr79
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr75
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st39:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof39
|
|
}
|
|
st_case_39:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr81
|
|
case 11:
|
|
goto tr82
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr81
|
|
case 34:
|
|
goto tr83
|
|
case 44:
|
|
goto tr84
|
|
case 92:
|
|
goto tr85
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr80
|
|
tr80:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st40
|
|
st40:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof40
|
|
}
|
|
st_case_40:
|
|
//line plugins/parsers/influx/machine.go:4756
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
tr87:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st41
|
|
tr81:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st41
|
|
tr237:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st41
|
|
st41:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof41
|
|
}
|
|
st_case_41:
|
|
//line plugins/parsers/influx/machine.go:4804
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st41
|
|
case 11:
|
|
goto tr94
|
|
case 12:
|
|
goto st3
|
|
case 32:
|
|
goto st41
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr92
|
|
tr92:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st42
|
|
st42:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof42
|
|
}
|
|
st_case_42:
|
|
//line plugins/parsers/influx/machine.go:4838
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st42
|
|
tr95:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st243
|
|
tr98:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st243
|
|
tr114:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st243
|
|
st243:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof243
|
|
}
|
|
st_case_243:
|
|
//line plugins/parsers/influx/machine.go:4890
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st244
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto st9
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st207
|
|
}
|
|
goto st4
|
|
st244:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof244
|
|
}
|
|
st_case_244:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st244
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto tr101
|
|
case 45:
|
|
goto tr404
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr405
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st207
|
|
}
|
|
goto st4
|
|
tr404:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st43
|
|
st43:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof43
|
|
}
|
|
st_case_43:
|
|
//line plugins/parsers/influx/machine.go:4954
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr101
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 12:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 10 {
|
|
goto tr101
|
|
}
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st245
|
|
}
|
|
default:
|
|
goto tr101
|
|
}
|
|
goto st4
|
|
tr405:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st245
|
|
st245:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof245
|
|
}
|
|
st_case_245:
|
|
//line plugins/parsers/influx/machine.go:4989
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st247
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
tr406:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st246
|
|
st246:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof246
|
|
}
|
|
st_case_246:
|
|
//line plugins/parsers/influx/machine.go:5026
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st246
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st210
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st210
|
|
}
|
|
goto st4
|
|
st247:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof247
|
|
}
|
|
st_case_247:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st248
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st248:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof248
|
|
}
|
|
st_case_248:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st249
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st249:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof249
|
|
}
|
|
st_case_249:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st250
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st250:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof250
|
|
}
|
|
st_case_250:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st251
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st251:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof251
|
|
}
|
|
st_case_251:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st252
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st252:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof252
|
|
}
|
|
st_case_252:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st253
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st253:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof253
|
|
}
|
|
st_case_253:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st254
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st254:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof254
|
|
}
|
|
st_case_254:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st255
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st255:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof255
|
|
}
|
|
st_case_255:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st256
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st256:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof256
|
|
}
|
|
st_case_256:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st257
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st257:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof257
|
|
}
|
|
st_case_257:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st258
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st258:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof258
|
|
}
|
|
st_case_258:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st259
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st259:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof259
|
|
}
|
|
st_case_259:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st260
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st260:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof260
|
|
}
|
|
st_case_260:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st261
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st261:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof261
|
|
}
|
|
st_case_261:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st262
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st262:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof262
|
|
}
|
|
st_case_262:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st263
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st263:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof263
|
|
}
|
|
st_case_263:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st264
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
st264:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof264
|
|
}
|
|
st_case_264:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr406
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr101
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st10
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr361
|
|
}
|
|
goto st4
|
|
tr99:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st44
|
|
st44:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof44
|
|
}
|
|
st_case_44:
|
|
//line plugins/parsers/influx/machine.go:5593
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr103
|
|
case 45:
|
|
goto tr104
|
|
case 46:
|
|
goto tr105
|
|
case 48:
|
|
goto tr106
|
|
case 70:
|
|
goto tr108
|
|
case 84:
|
|
goto tr109
|
|
case 92:
|
|
goto st11
|
|
case 102:
|
|
goto tr110
|
|
case 116:
|
|
goto tr111
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr107
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr103:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st265
|
|
st265:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof265
|
|
}
|
|
st_case_265:
|
|
//line plugins/parsers/influx/machine.go:5636
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 12:
|
|
goto st207
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr426
|
|
case 34:
|
|
goto tr26
|
|
case 44:
|
|
goto tr427
|
|
case 92:
|
|
goto tr27
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr426
|
|
}
|
|
goto tr25
|
|
tr426:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st266
|
|
tr452:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st266
|
|
tr457:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st266
|
|
tr460:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st266
|
|
tr463:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st266
|
|
st266:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof266
|
|
}
|
|
st_case_266:
|
|
//line plugins/parsers/influx/machine.go:5692
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 12:
|
|
goto st207
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st266
|
|
case 34:
|
|
goto tr29
|
|
case 45:
|
|
goto tr429
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr430
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st266
|
|
}
|
|
goto st7
|
|
tr429:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st45
|
|
st45:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof45
|
|
}
|
|
st_case_45:
|
|
//line plugins/parsers/influx/machine.go:5729
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr101
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st267
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr101
|
|
}
|
|
goto st7
|
|
tr430:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st267
|
|
st267:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof267
|
|
}
|
|
st_case_267:
|
|
//line plugins/parsers/influx/machine.go:5758
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st269
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
tr431:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st268
|
|
st268:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof268
|
|
}
|
|
st_case_268:
|
|
//line plugins/parsers/influx/machine.go:5793
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 12:
|
|
goto st210
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st268
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto st268
|
|
}
|
|
goto st7
|
|
st269:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof269
|
|
}
|
|
st_case_269:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st270
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st270:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof270
|
|
}
|
|
st_case_270:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st271
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st271:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof271
|
|
}
|
|
st_case_271:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st272
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st272:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof272
|
|
}
|
|
st_case_272:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st273
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st273:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof273
|
|
}
|
|
st_case_273:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st274
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st274:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof274
|
|
}
|
|
st_case_274:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st275
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st275:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof275
|
|
}
|
|
st_case_275:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st276
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st276:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof276
|
|
}
|
|
st_case_276:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st277
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st277:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof277
|
|
}
|
|
st_case_277:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st278
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st278:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof278
|
|
}
|
|
st_case_278:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st279
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st279:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof279
|
|
}
|
|
st_case_279:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st280
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st280:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof280
|
|
}
|
|
st_case_280:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st281
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st281:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof281
|
|
}
|
|
st_case_281:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st282
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st282:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof282
|
|
}
|
|
st_case_282:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st283
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st283:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof283
|
|
}
|
|
st_case_283:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st284
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st284:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof284
|
|
}
|
|
st_case_284:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st285
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st285:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof285
|
|
}
|
|
st_case_285:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st286
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
st286:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof286
|
|
}
|
|
st_case_286:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 12:
|
|
goto tr361
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr431
|
|
}
|
|
goto st7
|
|
tr427:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st46
|
|
tr469:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st46
|
|
tr473:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st46
|
|
tr475:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st46
|
|
tr477:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st46
|
|
st46:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof46
|
|
}
|
|
st_case_46:
|
|
//line plugins/parsers/influx/machine.go:6346
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr114
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr115
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr113
|
|
tr113:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st47
|
|
st47:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof47
|
|
}
|
|
st_case_47:
|
|
//line plugins/parsers/influx/machine.go:6378
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr117
|
|
case 92:
|
|
goto st77
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st47
|
|
tr117:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st48
|
|
st48:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof48
|
|
}
|
|
st_case_48:
|
|
//line plugins/parsers/influx/machine.go:6410
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr119
|
|
case 45:
|
|
goto tr104
|
|
case 46:
|
|
goto tr105
|
|
case 48:
|
|
goto tr106
|
|
case 70:
|
|
goto tr108
|
|
case 84:
|
|
goto tr109
|
|
case 92:
|
|
goto st11
|
|
case 102:
|
|
goto tr110
|
|
case 116:
|
|
goto tr111
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr107
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr119:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st287
|
|
st287:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof287
|
|
}
|
|
st_case_287:
|
|
//line plugins/parsers/influx/machine.go:6453
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 12:
|
|
goto st207
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr426
|
|
case 34:
|
|
goto tr26
|
|
case 44:
|
|
goto tr451
|
|
case 92:
|
|
goto tr27
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr426
|
|
}
|
|
goto tr25
|
|
tr451:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st49
|
|
tr453:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st49
|
|
tr458:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st49
|
|
tr461:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st49
|
|
tr464:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st49
|
|
st49:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof49
|
|
}
|
|
st_case_49:
|
|
//line plugins/parsers/influx/machine.go:6509
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr121
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr120
|
|
tr120:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st50
|
|
st50:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof50
|
|
}
|
|
st_case_50:
|
|
//line plugins/parsers/influx/machine.go:6541
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr123
|
|
case 92:
|
|
goto st64
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st50
|
|
tr123:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st51
|
|
st51:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof51
|
|
}
|
|
st_case_51:
|
|
//line plugins/parsers/influx/machine.go:6573
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr119
|
|
case 45:
|
|
goto tr125
|
|
case 46:
|
|
goto tr126
|
|
case 48:
|
|
goto tr127
|
|
case 70:
|
|
goto tr129
|
|
case 84:
|
|
goto tr130
|
|
case 92:
|
|
goto st11
|
|
case 102:
|
|
goto tr131
|
|
case 116:
|
|
goto tr132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr128
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr125:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st52
|
|
st52:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof52
|
|
}
|
|
st_case_52:
|
|
//line plugins/parsers/influx/machine.go:6616
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 46:
|
|
goto st53
|
|
case 48:
|
|
goto st291
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st294
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr126:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st53
|
|
st53:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof53
|
|
}
|
|
st_case_53:
|
|
//line plugins/parsers/influx/machine.go:6649
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st288
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st288:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof288
|
|
}
|
|
st_case_288:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st288
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st54:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof54
|
|
}
|
|
st_case_54:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr137
|
|
case 43:
|
|
goto st55
|
|
case 45:
|
|
goto st55
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st290
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr137:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st289
|
|
st289:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof289
|
|
}
|
|
st_case_289:
|
|
//line plugins/parsers/influx/machine.go:6738
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto st9
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st230
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st207
|
|
}
|
|
goto tr101
|
|
st55:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof55
|
|
}
|
|
st_case_55:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st290
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st290:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof290
|
|
}
|
|
st_case_290:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st290
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st291:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof291
|
|
}
|
|
st_case_291:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 46:
|
|
goto st288
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
case 105:
|
|
goto st293
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st292
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st292:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof292
|
|
}
|
|
st_case_292:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 46:
|
|
goto st288
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st292
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st293:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof293
|
|
}
|
|
st_case_293:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr389
|
|
case 12:
|
|
goto tr388
|
|
case 13:
|
|
goto tr389
|
|
case 32:
|
|
goto tr457
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr458
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr457
|
|
}
|
|
goto st7
|
|
st294:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof294
|
|
}
|
|
st_case_294:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 46:
|
|
goto st288
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
case 105:
|
|
goto st293
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st294
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
tr127:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st295
|
|
st295:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof295
|
|
}
|
|
st_case_295:
|
|
//line plugins/parsers/influx/machine.go:6958
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 46:
|
|
goto st288
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
case 105:
|
|
goto st293
|
|
case 117:
|
|
goto st296
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st292
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st296:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof296
|
|
}
|
|
st_case_296:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr393
|
|
case 12:
|
|
goto tr392
|
|
case 13:
|
|
goto tr393
|
|
case 32:
|
|
goto tr460
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr461
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr460
|
|
}
|
|
goto st7
|
|
tr128:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st297
|
|
st297:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof297
|
|
}
|
|
st_case_297:
|
|
//line plugins/parsers/influx/machine.go:7030
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr453
|
|
case 46:
|
|
goto st288
|
|
case 69:
|
|
goto st54
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st54
|
|
case 105:
|
|
goto st293
|
|
case 117:
|
|
goto st296
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st297
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
tr129:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st298
|
|
st298:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof298
|
|
}
|
|
st_case_298:
|
|
//line plugins/parsers/influx/machine.go:7077
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr464
|
|
case 65:
|
|
goto st56
|
|
case 92:
|
|
goto st11
|
|
case 97:
|
|
goto st59
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st56:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof56
|
|
}
|
|
st_case_56:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 76:
|
|
goto st57
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st57:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof57
|
|
}
|
|
st_case_57:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 83:
|
|
goto st58
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st58:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof58
|
|
}
|
|
st_case_58:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 69:
|
|
goto st299
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st299:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof299
|
|
}
|
|
st_case_299:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr464
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st59:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof59
|
|
}
|
|
st_case_59:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 108:
|
|
goto st60
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st60:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof60
|
|
}
|
|
st_case_60:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 115:
|
|
goto st61
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st61:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof61
|
|
}
|
|
st_case_61:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st299
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr130:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st300
|
|
st300:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof300
|
|
}
|
|
st_case_300:
|
|
//line plugins/parsers/influx/machine.go:7252
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr464
|
|
case 82:
|
|
goto st62
|
|
case 92:
|
|
goto st11
|
|
case 114:
|
|
goto st63
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st62:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof62
|
|
}
|
|
st_case_62:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 85:
|
|
goto st58
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st63:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof63
|
|
}
|
|
st_case_63:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 117:
|
|
goto st61
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr131:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st301
|
|
st301:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof301
|
|
}
|
|
st_case_301:
|
|
//line plugins/parsers/influx/machine.go:7326
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr464
|
|
case 92:
|
|
goto st11
|
|
case 97:
|
|
goto st59
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
tr132:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st302
|
|
st302:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof302
|
|
}
|
|
st_case_302:
|
|
//line plugins/parsers/influx/machine.go:7360
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr464
|
|
case 92:
|
|
goto st11
|
|
case 114:
|
|
goto st63
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
tr121:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st64
|
|
st64:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof64
|
|
}
|
|
st_case_64:
|
|
//line plugins/parsers/influx/machine.go:7394
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st50
|
|
case 92:
|
|
goto st50
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr104:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st65
|
|
st65:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof65
|
|
}
|
|
st_case_65:
|
|
//line plugins/parsers/influx/machine.go:7421
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 46:
|
|
goto st66
|
|
case 48:
|
|
goto st305
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st308
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr105:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st66
|
|
st66:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof66
|
|
}
|
|
st_case_66:
|
|
//line plugins/parsers/influx/machine.go:7454
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st303
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st303:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof303
|
|
}
|
|
st_case_303:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st303
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st67:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof67
|
|
}
|
|
st_case_67:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr137
|
|
case 43:
|
|
goto st68
|
|
case 45:
|
|
goto st68
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st304
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st68:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof68
|
|
}
|
|
st_case_68:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st304
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st304:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof304
|
|
}
|
|
st_case_304:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 92:
|
|
goto st11
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st304
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st305:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof305
|
|
}
|
|
st_case_305:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 46:
|
|
goto st303
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
case 105:
|
|
goto st307
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st306
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st306:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof306
|
|
}
|
|
st_case_306:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 46:
|
|
goto st303
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st306
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st307:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof307
|
|
}
|
|
st_case_307:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr389
|
|
case 12:
|
|
goto tr388
|
|
case 13:
|
|
goto tr389
|
|
case 32:
|
|
goto tr457
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr473
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr457
|
|
}
|
|
goto st7
|
|
st308:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof308
|
|
}
|
|
st_case_308:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 46:
|
|
goto st303
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
case 105:
|
|
goto st307
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st308
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
tr106:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st309
|
|
st309:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof309
|
|
}
|
|
st_case_309:
|
|
//line plugins/parsers/influx/machine.go:7732
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 46:
|
|
goto st303
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
case 105:
|
|
goto st307
|
|
case 117:
|
|
goto st310
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st306
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
st310:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof310
|
|
}
|
|
st_case_310:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr393
|
|
case 12:
|
|
goto tr392
|
|
case 13:
|
|
goto tr393
|
|
case 32:
|
|
goto tr460
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr475
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr460
|
|
}
|
|
goto st7
|
|
tr107:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st311
|
|
st311:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof311
|
|
}
|
|
st_case_311:
|
|
//line plugins/parsers/influx/machine.go:7804
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 12:
|
|
goto tr382
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr452
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr469
|
|
case 46:
|
|
goto st303
|
|
case 69:
|
|
goto st67
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st67
|
|
case 105:
|
|
goto st307
|
|
case 117:
|
|
goto st310
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 11:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st311
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr452
|
|
}
|
|
goto st7
|
|
tr108:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st312
|
|
st312:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof312
|
|
}
|
|
st_case_312:
|
|
//line plugins/parsers/influx/machine.go:7851
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr477
|
|
case 65:
|
|
goto st69
|
|
case 92:
|
|
goto st11
|
|
case 97:
|
|
goto st72
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st69:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof69
|
|
}
|
|
st_case_69:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 76:
|
|
goto st70
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st70:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof70
|
|
}
|
|
st_case_70:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 83:
|
|
goto st71
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st71:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof71
|
|
}
|
|
st_case_71:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 69:
|
|
goto st313
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st313:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof313
|
|
}
|
|
st_case_313:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr477
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st72:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof72
|
|
}
|
|
st_case_72:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 108:
|
|
goto st73
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st73:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof73
|
|
}
|
|
st_case_73:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 115:
|
|
goto st74
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st74:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof74
|
|
}
|
|
st_case_74:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 101:
|
|
goto st313
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr109:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st314
|
|
st314:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof314
|
|
}
|
|
st_case_314:
|
|
//line plugins/parsers/influx/machine.go:8026
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr477
|
|
case 82:
|
|
goto st75
|
|
case 92:
|
|
goto st11
|
|
case 114:
|
|
goto st76
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
st75:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof75
|
|
}
|
|
st_case_75:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 85:
|
|
goto st71
|
|
case 92:
|
|
goto st11
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
st76:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof76
|
|
}
|
|
st_case_76:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr29
|
|
case 92:
|
|
goto st11
|
|
case 117:
|
|
goto st74
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr110:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st315
|
|
st315:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof315
|
|
}
|
|
st_case_315:
|
|
//line plugins/parsers/influx/machine.go:8100
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr477
|
|
case 92:
|
|
goto st11
|
|
case 97:
|
|
goto st72
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
tr111:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st316
|
|
st316:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof316
|
|
}
|
|
st_case_316:
|
|
//line plugins/parsers/influx/machine.go:8134
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 12:
|
|
goto tr396
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr463
|
|
case 34:
|
|
goto tr29
|
|
case 44:
|
|
goto tr477
|
|
case 92:
|
|
goto st11
|
|
case 114:
|
|
goto st76
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 11 {
|
|
goto tr463
|
|
}
|
|
goto st7
|
|
tr115:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st77
|
|
st77:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof77
|
|
}
|
|
st_case_77:
|
|
//line plugins/parsers/influx/machine.go:8168
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st47
|
|
case 92:
|
|
goto st47
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr96:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st78
|
|
st78:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof78
|
|
}
|
|
st_case_78:
|
|
//line plugins/parsers/influx/machine.go:8195
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st42
|
|
case 92:
|
|
goto st42
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr94:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st79
|
|
st79:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof79
|
|
}
|
|
st_case_79:
|
|
//line plugins/parsers/influx/machine.go:8222
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st41
|
|
case 11:
|
|
goto tr94
|
|
case 12:
|
|
goto st3
|
|
case 32:
|
|
goto st41
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr92
|
|
tr88:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st80
|
|
tr82:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st80
|
|
st80:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof80
|
|
}
|
|
st_case_80:
|
|
//line plugins/parsers/influx/machine.go:8266
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr157
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr158
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto st40
|
|
case 92:
|
|
goto tr159
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr156
|
|
tr156:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st81
|
|
st81:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof81
|
|
}
|
|
st_case_81:
|
|
//line plugins/parsers/influx/machine.go:8300
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr161
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st81
|
|
tr161:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st82
|
|
tr157:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st82
|
|
st82:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof82
|
|
}
|
|
st_case_82:
|
|
//line plugins/parsers/influx/machine.go:8344
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr157
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr158
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto tr159
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr156
|
|
tr158:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st317
|
|
tr162:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st317
|
|
st317:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof317
|
|
}
|
|
st_case_317:
|
|
//line plugins/parsers/influx/machine.go:8388
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr483
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr482
|
|
case 44:
|
|
goto tr484
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr482
|
|
}
|
|
goto st26
|
|
tr482:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st318
|
|
tr514:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st318
|
|
tr566:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st318
|
|
tr572:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st318
|
|
tr576:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st318
|
|
tr580:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st318
|
|
tr791:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st318
|
|
tr800:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st318
|
|
tr805:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st318
|
|
tr810:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st318
|
|
st318:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof318
|
|
}
|
|
st_case_318:
|
|
//line plugins/parsers/influx/machine.go:8506
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr486
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st318
|
|
case 44:
|
|
goto tr101
|
|
case 45:
|
|
goto tr404
|
|
case 61:
|
|
goto tr101
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr405
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st318
|
|
}
|
|
goto tr9
|
|
tr486:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st319
|
|
st319:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof319
|
|
}
|
|
st_case_319:
|
|
//line plugins/parsers/influx/machine.go:8545
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr486
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st318
|
|
case 44:
|
|
goto tr101
|
|
case 45:
|
|
goto tr404
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr405
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st318
|
|
}
|
|
goto tr9
|
|
tr483:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st320
|
|
tr487:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st320
|
|
st320:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof320
|
|
}
|
|
st_case_320:
|
|
//line plugins/parsers/influx/machine.go:8594
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr487
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr482
|
|
case 44:
|
|
goto tr7
|
|
case 45:
|
|
goto tr488
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto tr46
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr489
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr482
|
|
}
|
|
goto tr44
|
|
tr488:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st83
|
|
st83:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof83
|
|
}
|
|
st_case_83:
|
|
//line plugins/parsers/influx/machine.go:8633
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr101
|
|
case 11:
|
|
goto tr48
|
|
case 13:
|
|
goto tr101
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st321
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr4
|
|
}
|
|
goto st26
|
|
tr489:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st321
|
|
st321:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof321
|
|
}
|
|
st_case_321:
|
|
//line plugins/parsers/influx/machine.go:8670
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st325
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
tr495:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st322
|
|
tr523:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st322
|
|
tr490:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st322
|
|
tr520:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st322
|
|
st322:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof322
|
|
}
|
|
st_case_322:
|
|
//line plugins/parsers/influx/machine.go:8733
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr494
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st322
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr5
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st322
|
|
}
|
|
goto tr9
|
|
tr494:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st323
|
|
st323:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof323
|
|
}
|
|
st_case_323:
|
|
//line plugins/parsers/influx/machine.go:8765
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr494
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st322
|
|
case 44:
|
|
goto tr5
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr12
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st322
|
|
}
|
|
goto tr9
|
|
tr496:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st324
|
|
tr491:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st324
|
|
st324:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof324
|
|
}
|
|
st_case_324:
|
|
//line plugins/parsers/influx/machine.go:8811
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr496
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr495
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto tr46
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr495
|
|
}
|
|
goto tr44
|
|
tr46:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st84
|
|
st84:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof84
|
|
}
|
|
st_case_84:
|
|
//line plugins/parsers/influx/machine.go:8843
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st26
|
|
st325:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof325
|
|
}
|
|
st_case_325:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st326
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st326:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof326
|
|
}
|
|
st_case_326:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st327
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st327:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof327
|
|
}
|
|
st_case_327:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st328
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st328:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof328
|
|
}
|
|
st_case_328:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st329
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st329:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof329
|
|
}
|
|
st_case_329:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st330
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st330:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof330
|
|
}
|
|
st_case_330:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st331
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st331:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof331
|
|
}
|
|
st_case_331:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st332
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st332:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof332
|
|
}
|
|
st_case_332:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st333
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st333:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof333
|
|
}
|
|
st_case_333:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st334
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st334:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof334
|
|
}
|
|
st_case_334:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st335
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st335:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof335
|
|
}
|
|
st_case_335:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st336
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st336:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof336
|
|
}
|
|
st_case_336:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st337
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st337:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof337
|
|
}
|
|
st_case_337:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st338
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st338:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof338
|
|
}
|
|
st_case_338:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st339
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st339:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof339
|
|
}
|
|
st_case_339:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st340
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st340:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof340
|
|
}
|
|
st_case_340:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st341
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st341:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof341
|
|
}
|
|
st_case_341:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st342
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
st342:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof342
|
|
}
|
|
st_case_342:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr491
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr490
|
|
case 44:
|
|
goto tr7
|
|
case 61:
|
|
goto tr49
|
|
case 92:
|
|
goto st84
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr490
|
|
}
|
|
goto st26
|
|
tr484:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st85
|
|
tr516:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st85
|
|
tr568:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st85
|
|
tr574:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st85
|
|
tr578:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st85
|
|
tr582:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st85
|
|
tr795:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st85
|
|
tr820:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st85
|
|
tr823:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st85
|
|
tr826:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st85
|
|
st85:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof85
|
|
}
|
|
st_case_85:
|
|
//line plugins/parsers/influx/machine.go:9485
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr61
|
|
case 44:
|
|
goto tr61
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto tr167
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto tr166
|
|
tr166:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st86
|
|
st86:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof86
|
|
}
|
|
st_case_86:
|
|
//line plugins/parsers/influx/machine.go:9516
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr61
|
|
case 44:
|
|
goto tr61
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st86
|
|
tr169:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st87
|
|
st87:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof87
|
|
}
|
|
st_case_87:
|
|
//line plugins/parsers/influx/machine.go:9551
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr61
|
|
case 34:
|
|
goto tr171
|
|
case 44:
|
|
goto tr61
|
|
case 45:
|
|
goto tr172
|
|
case 46:
|
|
goto tr173
|
|
case 48:
|
|
goto tr174
|
|
case 61:
|
|
goto tr61
|
|
case 70:
|
|
goto tr176
|
|
case 84:
|
|
goto tr177
|
|
case 92:
|
|
goto tr58
|
|
case 102:
|
|
goto tr178
|
|
case 116:
|
|
goto tr179
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 12:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 10 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr175
|
|
}
|
|
default:
|
|
goto tr61
|
|
}
|
|
goto tr57
|
|
tr171:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st88
|
|
st88:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof88
|
|
}
|
|
st_case_88:
|
|
//line plugins/parsers/influx/machine.go:9602
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr181
|
|
case 11:
|
|
goto tr182
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr181
|
|
case 34:
|
|
goto tr183
|
|
case 44:
|
|
goto tr184
|
|
case 61:
|
|
goto tr25
|
|
case 92:
|
|
goto tr185
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr180
|
|
tr180:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st89
|
|
st89:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof89
|
|
}
|
|
st_case_89:
|
|
//line plugins/parsers/influx/machine.go:9636
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
tr187:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st90
|
|
tr181:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st90
|
|
st90:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof90
|
|
}
|
|
st_case_90:
|
|
//line plugins/parsers/influx/machine.go:9680
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st90
|
|
case 11:
|
|
goto tr194
|
|
case 12:
|
|
goto st3
|
|
case 32:
|
|
goto st90
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr192
|
|
tr192:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st91
|
|
st91:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof91
|
|
}
|
|
st_case_91:
|
|
//line plugins/parsers/influx/machine.go:9714
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr5
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st91
|
|
tr197:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st92
|
|
st92:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof92
|
|
}
|
|
st_case_92:
|
|
//line plugins/parsers/influx/machine.go:9746
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 34:
|
|
goto tr103
|
|
case 45:
|
|
goto tr125
|
|
case 46:
|
|
goto tr126
|
|
case 48:
|
|
goto tr127
|
|
case 70:
|
|
goto tr129
|
|
case 84:
|
|
goto tr130
|
|
case 92:
|
|
goto st11
|
|
case 102:
|
|
goto tr131
|
|
case 116:
|
|
goto tr132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr128
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr5
|
|
}
|
|
goto st7
|
|
tr195:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st93
|
|
st93:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof93
|
|
}
|
|
st_case_93:
|
|
//line plugins/parsers/influx/machine.go:9789
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st91
|
|
case 92:
|
|
goto st91
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st4
|
|
tr194:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st94
|
|
st94:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof94
|
|
}
|
|
st_case_94:
|
|
//line plugins/parsers/influx/machine.go:9816
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st90
|
|
case 11:
|
|
goto tr194
|
|
case 12:
|
|
goto st3
|
|
case 32:
|
|
goto st90
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto tr192
|
|
tr188:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st95
|
|
tr182:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st95
|
|
st95:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof95
|
|
}
|
|
st_case_95:
|
|
//line plugins/parsers/influx/machine.go:9860
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr200
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr202
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr199
|
|
tr199:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st96
|
|
st96:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof96
|
|
}
|
|
st_case_96:
|
|
//line plugins/parsers/influx/machine.go:9894
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr204
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st96
|
|
tr204:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st97
|
|
tr200:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st97
|
|
st97:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof97
|
|
}
|
|
st_case_97:
|
|
//line plugins/parsers/influx/machine.go:9938
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr200
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr202
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr199
|
|
tr201:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st343
|
|
tr205:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st343
|
|
st343:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof343
|
|
}
|
|
st_case_343:
|
|
//line plugins/parsers/influx/machine.go:9982
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr515
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr514
|
|
case 44:
|
|
goto tr516
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr514
|
|
}
|
|
goto st33
|
|
tr515:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st344
|
|
tr517:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st344
|
|
st344:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof344
|
|
}
|
|
st_case_344:
|
|
//line plugins/parsers/influx/machine.go:10024
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr517
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr514
|
|
case 44:
|
|
goto tr63
|
|
case 45:
|
|
goto tr518
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr67
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr519
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr514
|
|
}
|
|
goto tr65
|
|
tr518:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st98
|
|
st98:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof98
|
|
}
|
|
st_case_98:
|
|
//line plugins/parsers/influx/machine.go:10063
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr207
|
|
case 11:
|
|
goto tr69
|
|
case 13:
|
|
goto tr207
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st345
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr60
|
|
}
|
|
goto st33
|
|
tr519:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st345
|
|
st345:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof345
|
|
}
|
|
st_case_345:
|
|
//line plugins/parsers/influx/machine.go:10100
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st347
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
tr524:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st346
|
|
tr521:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st346
|
|
st346:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof346
|
|
}
|
|
st_case_346:
|
|
//line plugins/parsers/influx/machine.go:10151
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr524
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr523
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto tr67
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr523
|
|
}
|
|
goto tr65
|
|
st347:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof347
|
|
}
|
|
st_case_347:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st348
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st348:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof348
|
|
}
|
|
st_case_348:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st349
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st349:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof349
|
|
}
|
|
st_case_349:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st350
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st350:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof350
|
|
}
|
|
st_case_350:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st351
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st351:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof351
|
|
}
|
|
st_case_351:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st352
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st352:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof352
|
|
}
|
|
st_case_352:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st353
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st353:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof353
|
|
}
|
|
st_case_353:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st354
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st354:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof354
|
|
}
|
|
st_case_354:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st355
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st355:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof355
|
|
}
|
|
st_case_355:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st356
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st356:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof356
|
|
}
|
|
st_case_356:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st357
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st357:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof357
|
|
}
|
|
st_case_357:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st358
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st358:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof358
|
|
}
|
|
st_case_358:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st359
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st359:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof359
|
|
}
|
|
st_case_359:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st360
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st360:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof360
|
|
}
|
|
st_case_360:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st361
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st361:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof361
|
|
}
|
|
st_case_361:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st362
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st362:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof362
|
|
}
|
|
st_case_362:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st363
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st363:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof363
|
|
}
|
|
st_case_363:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st364
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
st364:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof364
|
|
}
|
|
st_case_364:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr521
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr520
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr14
|
|
case 92:
|
|
goto st35
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr520
|
|
}
|
|
goto st33
|
|
tr190:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st99
|
|
tr184:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st99
|
|
st99:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof99
|
|
}
|
|
st_case_99:
|
|
//line plugins/parsers/influx/machine.go:10728
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr210
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr211
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr209
|
|
tr209:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st100
|
|
st100:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof100
|
|
}
|
|
st_case_100:
|
|
//line plugins/parsers/influx/machine.go:10760
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr213
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr214
|
|
case 92:
|
|
goto st104
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st100
|
|
tr210:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st365
|
|
tr213:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st365
|
|
st365:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof365
|
|
}
|
|
st_case_365:
|
|
//line plugins/parsers/influx/machine.go:10802
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st366
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto st9
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st207
|
|
}
|
|
goto st29
|
|
st366:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof366
|
|
}
|
|
st_case_366:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st366
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto tr216
|
|
case 45:
|
|
goto tr543
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr544
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st207
|
|
}
|
|
goto st29
|
|
tr543:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st101
|
|
st101:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof101
|
|
}
|
|
st_case_101:
|
|
//line plugins/parsers/influx/machine.go:10866
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr216
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 12:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 10 {
|
|
goto tr216
|
|
}
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st367
|
|
}
|
|
default:
|
|
goto tr216
|
|
}
|
|
goto st29
|
|
tr544:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st367
|
|
st367:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof367
|
|
}
|
|
st_case_367:
|
|
//line plugins/parsers/influx/machine.go:10901
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st369
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
tr545:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st368
|
|
st368:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof368
|
|
}
|
|
st_case_368:
|
|
//line plugins/parsers/influx/machine.go:10938
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st368
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st210
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st210
|
|
}
|
|
goto st29
|
|
st369:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof369
|
|
}
|
|
st_case_369:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st370
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st370:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof370
|
|
}
|
|
st_case_370:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st371
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st371:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof371
|
|
}
|
|
st_case_371:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st372
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st372:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof372
|
|
}
|
|
st_case_372:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st373
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st373:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof373
|
|
}
|
|
st_case_373:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st374
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st374:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof374
|
|
}
|
|
st_case_374:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st375
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st375:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof375
|
|
}
|
|
st_case_375:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st376
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st376:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof376
|
|
}
|
|
st_case_376:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st377
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st377:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof377
|
|
}
|
|
st_case_377:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st378
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st378:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof378
|
|
}
|
|
st_case_378:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st379
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st379:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof379
|
|
}
|
|
st_case_379:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st380
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st380:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof380
|
|
}
|
|
st_case_380:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st381
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st381:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof381
|
|
}
|
|
st_case_381:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st382
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st382:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof382
|
|
}
|
|
st_case_382:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st383
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st383:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof383
|
|
}
|
|
st_case_383:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st384
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st384:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof384
|
|
}
|
|
st_case_384:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st385
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st385:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof385
|
|
}
|
|
st_case_385:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st386
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
st386:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof386
|
|
}
|
|
st_case_386:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr545
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr216
|
|
case 61:
|
|
goto tr55
|
|
case 92:
|
|
goto st37
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr361
|
|
}
|
|
goto st29
|
|
tr214:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
goto st102
|
|
st102:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof102
|
|
}
|
|
st_case_102:
|
|
//line plugins/parsers/influx/machine.go:11505
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr183
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr185
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr180
|
|
tr183:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st387
|
|
tr189:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st387
|
|
st387:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof387
|
|
}
|
|
st_case_387:
|
|
//line plugins/parsers/influx/machine.go:11547
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr565
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr514
|
|
case 44:
|
|
goto tr516
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr514
|
|
}
|
|
goto st31
|
|
tr565:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st388
|
|
tr567:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st388
|
|
tr573:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st388
|
|
tr577:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st388
|
|
tr581:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st388
|
|
st388:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof388
|
|
}
|
|
st_case_388:
|
|
//line plugins/parsers/influx/machine.go:11619
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr517
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr514
|
|
case 44:
|
|
goto tr63
|
|
case 45:
|
|
goto tr518
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto tr67
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr519
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr514
|
|
}
|
|
goto tr65
|
|
tr185:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st103
|
|
st103:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof103
|
|
}
|
|
st_case_103:
|
|
//line plugins/parsers/influx/machine.go:11658
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st89
|
|
case 92:
|
|
goto st89
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st31
|
|
tr211:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st104
|
|
st104:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof104
|
|
}
|
|
st_case_104:
|
|
//line plugins/parsers/influx/machine.go:11685
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st100
|
|
case 92:
|
|
goto st100
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st29
|
|
tr202:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st105
|
|
st105:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof105
|
|
}
|
|
st_case_105:
|
|
//line plugins/parsers/influx/machine.go:11712
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st96
|
|
case 92:
|
|
goto st96
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st33
|
|
tr172:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st106
|
|
st106:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof106
|
|
}
|
|
st_case_106:
|
|
//line plugins/parsers/influx/machine.go:11739
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 46:
|
|
goto st107
|
|
case 48:
|
|
goto st391
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st394
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
tr173:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st107
|
|
st107:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof107
|
|
}
|
|
st_case_107:
|
|
//line plugins/parsers/influx/machine.go:11780
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st389
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st389:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof389
|
|
}
|
|
st_case_389:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st389
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
st108:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof108
|
|
}
|
|
st_case_108:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 34:
|
|
goto st109
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 43:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
case ( m.data)[( m.p)] > 45:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st390
|
|
}
|
|
default:
|
|
goto st109
|
|
}
|
|
goto st31
|
|
st109:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof109
|
|
}
|
|
st_case_109:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st390
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st390:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof390
|
|
}
|
|
st_case_390:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st390
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
st391:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof391
|
|
}
|
|
st_case_391:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 46:
|
|
goto st389
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
case 105:
|
|
goto st393
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st392
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
st392:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof392
|
|
}
|
|
st_case_392:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 46:
|
|
goto st389
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st392
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
st393:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof393
|
|
}
|
|
st_case_393:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr389
|
|
case 11:
|
|
goto tr573
|
|
case 13:
|
|
goto tr389
|
|
case 32:
|
|
goto tr572
|
|
case 44:
|
|
goto tr574
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr572
|
|
}
|
|
goto st31
|
|
st394:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof394
|
|
}
|
|
st_case_394:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 46:
|
|
goto st389
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
case 105:
|
|
goto st393
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st394
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
tr174:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st395
|
|
st395:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof395
|
|
}
|
|
st_case_395:
|
|
//line plugins/parsers/influx/machine.go:12084
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 46:
|
|
goto st389
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
case 105:
|
|
goto st393
|
|
case 117:
|
|
goto st396
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st392
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
st396:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof396
|
|
}
|
|
st_case_396:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr393
|
|
case 11:
|
|
goto tr577
|
|
case 13:
|
|
goto tr393
|
|
case 32:
|
|
goto tr576
|
|
case 44:
|
|
goto tr578
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr576
|
|
}
|
|
goto st31
|
|
tr175:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st397
|
|
st397:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof397
|
|
}
|
|
st_case_397:
|
|
//line plugins/parsers/influx/machine.go:12156
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr567
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr566
|
|
case 44:
|
|
goto tr568
|
|
case 46:
|
|
goto st389
|
|
case 61:
|
|
goto tr207
|
|
case 69:
|
|
goto st108
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st108
|
|
case 105:
|
|
goto st393
|
|
case 117:
|
|
goto st396
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st397
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr566
|
|
}
|
|
goto st31
|
|
tr176:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st398
|
|
st398:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof398
|
|
}
|
|
st_case_398:
|
|
//line plugins/parsers/influx/machine.go:12203
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr581
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr580
|
|
case 44:
|
|
goto tr582
|
|
case 61:
|
|
goto tr207
|
|
case 65:
|
|
goto st110
|
|
case 92:
|
|
goto st36
|
|
case 97:
|
|
goto st113
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr580
|
|
}
|
|
goto st31
|
|
st110:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof110
|
|
}
|
|
st_case_110:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 76:
|
|
goto st111
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st111:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof111
|
|
}
|
|
st_case_111:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 83:
|
|
goto st112
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st112:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof112
|
|
}
|
|
st_case_112:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 69:
|
|
goto st399
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st399:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof399
|
|
}
|
|
st_case_399:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr581
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr580
|
|
case 44:
|
|
goto tr582
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr580
|
|
}
|
|
goto st31
|
|
st113:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof113
|
|
}
|
|
st_case_113:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
case 108:
|
|
goto st114
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st114:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof114
|
|
}
|
|
st_case_114:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
case 115:
|
|
goto st115
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st115:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof115
|
|
}
|
|
st_case_115:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
case 101:
|
|
goto st399
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
tr177:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st400
|
|
st400:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof400
|
|
}
|
|
st_case_400:
|
|
//line plugins/parsers/influx/machine.go:12426
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr581
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr580
|
|
case 44:
|
|
goto tr582
|
|
case 61:
|
|
goto tr207
|
|
case 82:
|
|
goto st116
|
|
case 92:
|
|
goto st36
|
|
case 114:
|
|
goto st117
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr580
|
|
}
|
|
goto st31
|
|
st116:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof116
|
|
}
|
|
st_case_116:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 85:
|
|
goto st112
|
|
case 92:
|
|
goto st36
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
st117:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof117
|
|
}
|
|
st_case_117:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr61
|
|
case 11:
|
|
goto tr62
|
|
case 13:
|
|
goto tr61
|
|
case 32:
|
|
goto tr60
|
|
case 44:
|
|
goto tr63
|
|
case 61:
|
|
goto tr61
|
|
case 92:
|
|
goto st36
|
|
case 117:
|
|
goto st115
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr60
|
|
}
|
|
goto st31
|
|
tr178:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st401
|
|
st401:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof401
|
|
}
|
|
st_case_401:
|
|
//line plugins/parsers/influx/machine.go:12516
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr581
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr580
|
|
case 44:
|
|
goto tr582
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
case 97:
|
|
goto st113
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr580
|
|
}
|
|
goto st31
|
|
tr179:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st402
|
|
st402:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof402
|
|
}
|
|
st_case_402:
|
|
//line plugins/parsers/influx/machine.go:12550
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr581
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr580
|
|
case 44:
|
|
goto tr582
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
case 114:
|
|
goto st117
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr580
|
|
}
|
|
goto st31
|
|
tr167:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st118
|
|
st118:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof118
|
|
}
|
|
st_case_118:
|
|
//line plugins/parsers/influx/machine.go:12584
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st86
|
|
tr90:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st119
|
|
tr84:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st119
|
|
tr239:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st119
|
|
st119:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof119
|
|
}
|
|
st_case_119:
|
|
//line plugins/parsers/influx/machine.go:12621
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr210
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr230
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr229
|
|
tr229:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st120
|
|
st120:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof120
|
|
}
|
|
st_case_120:
|
|
//line plugins/parsers/influx/machine.go:12653
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr213
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr232
|
|
case 92:
|
|
goto st128
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st120
|
|
tr232:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
goto st121
|
|
st121:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof121
|
|
}
|
|
st_case_121:
|
|
//line plugins/parsers/influx/machine.go:12685
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr183
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr235
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr234
|
|
tr234:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st122
|
|
st122:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof122
|
|
}
|
|
st_case_122:
|
|
//line plugins/parsers/influx/machine.go:12717
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
tr238:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st123
|
|
st123:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof123
|
|
}
|
|
st_case_123:
|
|
//line plugins/parsers/influx/machine.go:12751
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr242
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr243
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr241
|
|
tr241:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st124
|
|
st124:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof124
|
|
}
|
|
st_case_124:
|
|
//line plugins/parsers/influx/machine.go:12785
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr245
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st124
|
|
tr245:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st125
|
|
tr242:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st125
|
|
st125:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof125
|
|
}
|
|
st_case_125:
|
|
//line plugins/parsers/influx/machine.go:12829
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr242
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr243
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr241
|
|
tr243:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st126
|
|
st126:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof126
|
|
}
|
|
st_case_126:
|
|
//line plugins/parsers/influx/machine.go:12863
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st124
|
|
case 92:
|
|
goto st124
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st33
|
|
tr235:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st127
|
|
st127:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof127
|
|
}
|
|
st_case_127:
|
|
//line plugins/parsers/influx/machine.go:12890
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st122
|
|
case 92:
|
|
goto st122
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st31
|
|
tr230:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st128
|
|
st128:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof128
|
|
}
|
|
st_case_128:
|
|
//line plugins/parsers/influx/machine.go:12917
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st120
|
|
case 92:
|
|
goto st120
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st29
|
|
tr163:
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st129
|
|
st129:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof129
|
|
}
|
|
st_case_129:
|
|
//line plugins/parsers/influx/machine.go:12944
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr247
|
|
case 44:
|
|
goto tr90
|
|
case 45:
|
|
goto tr248
|
|
case 46:
|
|
goto tr249
|
|
case 48:
|
|
goto tr250
|
|
case 70:
|
|
goto tr252
|
|
case 84:
|
|
goto tr253
|
|
case 92:
|
|
goto st170
|
|
case 102:
|
|
goto tr254
|
|
case 116:
|
|
goto tr255
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr251
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
tr247:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st403
|
|
st403:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof403
|
|
}
|
|
st_case_403:
|
|
//line plugins/parsers/influx/machine.go:12995
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr587
|
|
case 11:
|
|
goto tr588
|
|
case 12:
|
|
goto tr482
|
|
case 32:
|
|
goto tr587
|
|
case 34:
|
|
goto tr83
|
|
case 44:
|
|
goto tr589
|
|
case 92:
|
|
goto tr85
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr80
|
|
tr614:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st404
|
|
tr587:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st404
|
|
tr746:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st404
|
|
tr742:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st404
|
|
tr774:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st404
|
|
tr778:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st404
|
|
tr782:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st404
|
|
tr789:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st404
|
|
tr798:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st404
|
|
tr803:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st404
|
|
tr808:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st404
|
|
st404:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof404
|
|
}
|
|
st_case_404:
|
|
//line plugins/parsers/influx/machine.go:13123
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st404
|
|
case 11:
|
|
goto tr591
|
|
case 12:
|
|
goto st318
|
|
case 32:
|
|
goto st404
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr592
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr593
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr92
|
|
tr591:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st405
|
|
st405:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof405
|
|
}
|
|
st_case_405:
|
|
//line plugins/parsers/influx/machine.go:13164
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st404
|
|
case 11:
|
|
goto tr591
|
|
case 12:
|
|
goto st318
|
|
case 32:
|
|
goto st404
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr592
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr593
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr92
|
|
tr592:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st130
|
|
st130:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof130
|
|
}
|
|
st_case_130:
|
|
//line plugins/parsers/influx/machine.go:13205
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr101
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st406
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr101
|
|
}
|
|
goto st42
|
|
tr593:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st406
|
|
st406:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof406
|
|
}
|
|
st_case_406:
|
|
//line plugins/parsers/influx/machine.go:13242
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st408
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
tr594:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st407
|
|
st407:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof407
|
|
}
|
|
st_case_407:
|
|
//line plugins/parsers/influx/machine.go:13281
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st268
|
|
case 11:
|
|
goto st407
|
|
case 12:
|
|
goto st210
|
|
case 32:
|
|
goto st268
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto st42
|
|
st408:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof408
|
|
}
|
|
st_case_408:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st409
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st409:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof409
|
|
}
|
|
st_case_409:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st410
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st410:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof410
|
|
}
|
|
st_case_410:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st411
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st411:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof411
|
|
}
|
|
st_case_411:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st412
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st412:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof412
|
|
}
|
|
st_case_412:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st413
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st413:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof413
|
|
}
|
|
st_case_413:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st414
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st414:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof414
|
|
}
|
|
st_case_414:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st415
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st415:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof415
|
|
}
|
|
st_case_415:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st416
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st416:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof416
|
|
}
|
|
st_case_416:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st417
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st417:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof417
|
|
}
|
|
st_case_417:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st418
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st418:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof418
|
|
}
|
|
st_case_418:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st419
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st419:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof419
|
|
}
|
|
st_case_419:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st420
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st420:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof420
|
|
}
|
|
st_case_420:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st421
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st421:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof421
|
|
}
|
|
st_case_421:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st422
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st422:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof422
|
|
}
|
|
st_case_422:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st423
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st423:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof423
|
|
}
|
|
st_case_423:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st424
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st424:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof424
|
|
}
|
|
st_case_424:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st425
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
st425:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof425
|
|
}
|
|
st_case_425:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr594
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st78
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr362
|
|
}
|
|
goto st42
|
|
tr588:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st426
|
|
tr790:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st426
|
|
tr799:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st426
|
|
tr804:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st426
|
|
tr809:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st426
|
|
st426:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof426
|
|
}
|
|
st_case_426:
|
|
//line plugins/parsers/influx/machine.go:13930
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr614
|
|
case 11:
|
|
goto tr615
|
|
case 12:
|
|
goto tr482
|
|
case 32:
|
|
goto tr614
|
|
case 34:
|
|
goto tr158
|
|
case 44:
|
|
goto tr90
|
|
case 45:
|
|
goto tr616
|
|
case 61:
|
|
goto st40
|
|
case 92:
|
|
goto tr159
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr617
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr156
|
|
tr615:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st427
|
|
st427:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof427
|
|
}
|
|
st_case_427:
|
|
//line plugins/parsers/influx/machine.go:13975
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr614
|
|
case 11:
|
|
goto tr615
|
|
case 12:
|
|
goto tr482
|
|
case 32:
|
|
goto tr614
|
|
case 34:
|
|
goto tr158
|
|
case 44:
|
|
goto tr90
|
|
case 45:
|
|
goto tr616
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto tr159
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr617
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr156
|
|
tr616:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st131
|
|
st131:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof131
|
|
}
|
|
st_case_131:
|
|
//line plugins/parsers/influx/machine.go:14016
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr161
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st428
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr101
|
|
}
|
|
goto st81
|
|
tr617:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st428
|
|
st428:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof428
|
|
}
|
|
st_case_428:
|
|
//line plugins/parsers/influx/machine.go:14055
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st432
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
tr623:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st429
|
|
tr753:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st429
|
|
tr618:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st429
|
|
tr750:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st429
|
|
st429:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof429
|
|
}
|
|
st_case_429:
|
|
//line plugins/parsers/influx/machine.go:14120
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st429
|
|
case 11:
|
|
goto tr622
|
|
case 12:
|
|
goto st322
|
|
case 32:
|
|
goto st429
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr92
|
|
tr622:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st430
|
|
st430:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof430
|
|
}
|
|
st_case_430:
|
|
//line plugins/parsers/influx/machine.go:14154
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st429
|
|
case 11:
|
|
goto tr622
|
|
case 12:
|
|
goto st322
|
|
case 32:
|
|
goto st429
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr96
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr92
|
|
tr624:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st431
|
|
tr619:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st431
|
|
st431:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof431
|
|
}
|
|
st_case_431:
|
|
//line plugins/parsers/influx/machine.go:14202
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr623
|
|
case 11:
|
|
goto tr624
|
|
case 12:
|
|
goto tr495
|
|
case 32:
|
|
goto tr623
|
|
case 34:
|
|
goto tr158
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto tr159
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr156
|
|
tr159:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st132
|
|
st132:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof132
|
|
}
|
|
st_case_132:
|
|
//line plugins/parsers/influx/machine.go:14236
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st81
|
|
case 92:
|
|
goto st81
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st26
|
|
st432:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof432
|
|
}
|
|
st_case_432:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st433
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st433:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof433
|
|
}
|
|
st_case_433:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st434
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st434:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof434
|
|
}
|
|
st_case_434:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st435
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st435:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof435
|
|
}
|
|
st_case_435:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st436
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st436:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof436
|
|
}
|
|
st_case_436:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st437
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st437:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof437
|
|
}
|
|
st_case_437:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st438
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st438:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof438
|
|
}
|
|
st_case_438:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st439
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st439:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof439
|
|
}
|
|
st_case_439:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st440
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st440:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof440
|
|
}
|
|
st_case_440:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st441
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st441:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof441
|
|
}
|
|
st_case_441:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st442
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st442:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof442
|
|
}
|
|
st_case_442:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st443
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st443:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof443
|
|
}
|
|
st_case_443:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st444
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st444:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof444
|
|
}
|
|
st_case_444:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st445
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st445:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof445
|
|
}
|
|
st_case_445:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st446
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st446:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof446
|
|
}
|
|
st_case_446:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st447
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st447:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof447
|
|
}
|
|
st_case_447:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st448
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st448:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof448
|
|
}
|
|
st_case_448:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st449
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
st449:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof449
|
|
}
|
|
st_case_449:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr618
|
|
case 11:
|
|
goto tr619
|
|
case 12:
|
|
goto tr490
|
|
case 32:
|
|
goto tr618
|
|
case 34:
|
|
goto tr162
|
|
case 44:
|
|
goto tr90
|
|
case 61:
|
|
goto tr163
|
|
case 92:
|
|
goto st132
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr362
|
|
}
|
|
goto st81
|
|
tr83:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st450
|
|
tr89:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st450
|
|
st450:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof450
|
|
}
|
|
st_case_450:
|
|
//line plugins/parsers/influx/machine.go:14844
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr642
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr482
|
|
case 44:
|
|
goto tr484
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr482
|
|
}
|
|
goto st2
|
|
tr642:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st451
|
|
tr794:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st451
|
|
tr819:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st451
|
|
tr822:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st451
|
|
tr825:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st451
|
|
st451:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof451
|
|
}
|
|
st_case_451:
|
|
//line plugins/parsers/influx/machine.go:14914
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr487
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr482
|
|
case 44:
|
|
goto tr7
|
|
case 45:
|
|
goto tr488
|
|
case 61:
|
|
goto st2
|
|
case 92:
|
|
goto tr46
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr489
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr482
|
|
}
|
|
goto tr44
|
|
tr2:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st133
|
|
st133:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof133
|
|
}
|
|
st_case_133:
|
|
//line plugins/parsers/influx/machine.go:14953
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr1
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr1
|
|
}
|
|
goto st2
|
|
tr589:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st134
|
|
tr744:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st134
|
|
tr776:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st134
|
|
tr780:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st134
|
|
tr784:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st134
|
|
tr792:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st134
|
|
tr801:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st134
|
|
tr806:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st134
|
|
tr811:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st134
|
|
st134:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof134
|
|
}
|
|
st_case_134:
|
|
//line plugins/parsers/influx/machine.go:15058
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr259
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr260
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr258
|
|
tr258:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st135
|
|
st135:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof135
|
|
}
|
|
st_case_135:
|
|
//line plugins/parsers/influx/machine.go:15090
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr262
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr263
|
|
case 92:
|
|
goto st169
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st135
|
|
tr259:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st452
|
|
tr262:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st452
|
|
st452:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof452
|
|
}
|
|
st_case_452:
|
|
//line plugins/parsers/influx/machine.go:15132
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st453
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto st9
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st207
|
|
}
|
|
goto st86
|
|
st453:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof453
|
|
}
|
|
st_case_453:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st453
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st207
|
|
case 44:
|
|
goto tr207
|
|
case 45:
|
|
goto tr644
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr645
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st207
|
|
}
|
|
goto st86
|
|
tr644:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st136
|
|
st136:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof136
|
|
}
|
|
st_case_136:
|
|
//line plugins/parsers/influx/machine.go:15196
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr207
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 12:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 10 {
|
|
goto tr207
|
|
}
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st454
|
|
}
|
|
default:
|
|
goto tr207
|
|
}
|
|
goto st86
|
|
tr645:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st454
|
|
st454:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof454
|
|
}
|
|
st_case_454:
|
|
//line plugins/parsers/influx/machine.go:15231
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st456
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
tr646:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st455
|
|
st455:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof455
|
|
}
|
|
st_case_455:
|
|
//line plugins/parsers/influx/machine.go:15268
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto st455
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto st210
|
|
case 44:
|
|
goto tr61
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st210
|
|
}
|
|
goto st86
|
|
st456:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof456
|
|
}
|
|
st_case_456:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st457
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st457:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof457
|
|
}
|
|
st_case_457:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st458
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st458:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof458
|
|
}
|
|
st_case_458:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st459
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st459:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof459
|
|
}
|
|
st_case_459:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st460
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st460:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof460
|
|
}
|
|
st_case_460:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st461
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st461:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof461
|
|
}
|
|
st_case_461:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st462
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st462:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof462
|
|
}
|
|
st_case_462:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st463
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st463:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof463
|
|
}
|
|
st_case_463:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st464
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st464:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof464
|
|
}
|
|
st_case_464:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st465
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st465:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof465
|
|
}
|
|
st_case_465:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st466
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st466:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof466
|
|
}
|
|
st_case_466:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st467
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st467:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof467
|
|
}
|
|
st_case_467:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st468
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st468:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof468
|
|
}
|
|
st_case_468:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st469
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st469:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof469
|
|
}
|
|
st_case_469:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st470
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st470:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof470
|
|
}
|
|
st_case_470:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st471
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st471:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof471
|
|
}
|
|
st_case_471:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st472
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st472:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof472
|
|
}
|
|
st_case_472:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st473
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
st473:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof473
|
|
}
|
|
st_case_473:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr362
|
|
case 11:
|
|
goto tr646
|
|
case 13:
|
|
goto tr362
|
|
case 32:
|
|
goto tr361
|
|
case 44:
|
|
goto tr207
|
|
case 61:
|
|
goto tr169
|
|
case 92:
|
|
goto st118
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr361
|
|
}
|
|
goto st86
|
|
tr263:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st137
|
|
st137:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof137
|
|
}
|
|
st_case_137:
|
|
//line plugins/parsers/influx/machine.go:15839
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr266
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr267
|
|
case 46:
|
|
goto tr268
|
|
case 48:
|
|
goto tr269
|
|
case 61:
|
|
goto st7
|
|
case 70:
|
|
goto tr271
|
|
case 84:
|
|
goto tr272
|
|
case 92:
|
|
goto tr235
|
|
case 102:
|
|
goto tr273
|
|
case 116:
|
|
goto tr274
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr270
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr61
|
|
}
|
|
goto tr234
|
|
tr266:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st474
|
|
st474:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof474
|
|
}
|
|
st_case_474:
|
|
//line plugins/parsers/influx/machine.go:15894
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr666
|
|
case 11:
|
|
goto tr667
|
|
case 12:
|
|
goto tr514
|
|
case 32:
|
|
goto tr666
|
|
case 34:
|
|
goto tr183
|
|
case 44:
|
|
goto tr668
|
|
case 61:
|
|
goto tr25
|
|
case 92:
|
|
goto tr185
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr180
|
|
tr693:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st475
|
|
tr666:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st475
|
|
tr721:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st475
|
|
tr727:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st475
|
|
tr731:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st475
|
|
tr735:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st475
|
|
st475:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof475
|
|
}
|
|
st_case_475:
|
|
//line plugins/parsers/influx/machine.go:15978
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st475
|
|
case 11:
|
|
goto tr670
|
|
case 12:
|
|
goto st318
|
|
case 32:
|
|
goto st475
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr671
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr672
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr192
|
|
tr670:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st476
|
|
st476:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof476
|
|
}
|
|
st_case_476:
|
|
//line plugins/parsers/influx/machine.go:16019
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st475
|
|
case 11:
|
|
goto tr670
|
|
case 12:
|
|
goto st318
|
|
case 32:
|
|
goto st475
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr671
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr672
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr192
|
|
tr671:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st138
|
|
st138:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof138
|
|
}
|
|
st_case_138:
|
|
//line plugins/parsers/influx/machine.go:16060
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr101
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st477
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr101
|
|
}
|
|
goto st91
|
|
tr672:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st477
|
|
st477:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof477
|
|
}
|
|
st_case_477:
|
|
//line plugins/parsers/influx/machine.go:16097
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st479
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
tr673:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st478
|
|
st478:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof478
|
|
}
|
|
st_case_478:
|
|
//line plugins/parsers/influx/machine.go:16136
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st268
|
|
case 11:
|
|
goto st478
|
|
case 12:
|
|
goto st210
|
|
case 32:
|
|
goto st268
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto st91
|
|
st479:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof479
|
|
}
|
|
st_case_479:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st480
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st480:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof480
|
|
}
|
|
st_case_480:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st481
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st481:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof481
|
|
}
|
|
st_case_481:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st482
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st482:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof482
|
|
}
|
|
st_case_482:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st483
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st483:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof483
|
|
}
|
|
st_case_483:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st484
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st484:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof484
|
|
}
|
|
st_case_484:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st485
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st485:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof485
|
|
}
|
|
st_case_485:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st486
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st486:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof486
|
|
}
|
|
st_case_486:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st487
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st487:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof487
|
|
}
|
|
st_case_487:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st488
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st488:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof488
|
|
}
|
|
st_case_488:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st489
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st489:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof489
|
|
}
|
|
st_case_489:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st490
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st490:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof490
|
|
}
|
|
st_case_490:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st491
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st491:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof491
|
|
}
|
|
st_case_491:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st492
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st492:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof492
|
|
}
|
|
st_case_492:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st493
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st493:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof493
|
|
}
|
|
st_case_493:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st494
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st494:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof494
|
|
}
|
|
st_case_494:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st495
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st495:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof495
|
|
}
|
|
st_case_495:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st496
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
st496:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof496
|
|
}
|
|
st_case_496:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr431
|
|
case 11:
|
|
goto tr673
|
|
case 12:
|
|
goto tr361
|
|
case 32:
|
|
goto tr431
|
|
case 34:
|
|
goto tr98
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st93
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr362
|
|
}
|
|
goto st91
|
|
tr667:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st497
|
|
tr722:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st497
|
|
tr728:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st497
|
|
tr732:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st497
|
|
tr736:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st497
|
|
st497:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof497
|
|
}
|
|
st_case_497:
|
|
//line plugins/parsers/influx/machine.go:16785
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr693
|
|
case 11:
|
|
goto tr694
|
|
case 12:
|
|
goto tr514
|
|
case 32:
|
|
goto tr693
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr190
|
|
case 45:
|
|
goto tr695
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr202
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr696
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr199
|
|
tr694:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st498
|
|
st498:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof498
|
|
}
|
|
st_case_498:
|
|
//line plugins/parsers/influx/machine.go:16830
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr693
|
|
case 11:
|
|
goto tr694
|
|
case 12:
|
|
goto tr514
|
|
case 32:
|
|
goto tr693
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr190
|
|
case 45:
|
|
goto tr695
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr202
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr696
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr199
|
|
tr695:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st139
|
|
st139:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof139
|
|
}
|
|
st_case_139:
|
|
//line plugins/parsers/influx/machine.go:16871
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr204
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st499
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr207
|
|
}
|
|
goto st96
|
|
tr696:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st499
|
|
st499:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof499
|
|
}
|
|
st_case_499:
|
|
//line plugins/parsers/influx/machine.go:16910
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st503
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
tr702:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st500
|
|
tr697:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st500
|
|
st500:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof500
|
|
}
|
|
st_case_500:
|
|
//line plugins/parsers/influx/machine.go:16959
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st500
|
|
case 11:
|
|
goto tr701
|
|
case 12:
|
|
goto st322
|
|
case 32:
|
|
goto st500
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr192
|
|
tr701:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st501
|
|
st501:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof501
|
|
}
|
|
st_case_501:
|
|
//line plugins/parsers/influx/machine.go:16993
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st500
|
|
case 11:
|
|
goto tr701
|
|
case 12:
|
|
goto st322
|
|
case 32:
|
|
goto st500
|
|
case 34:
|
|
goto tr95
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr195
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr192
|
|
tr703:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st502
|
|
tr698:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st502
|
|
st502:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof502
|
|
}
|
|
st_case_502:
|
|
//line plugins/parsers/influx/machine.go:17041
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr702
|
|
case 11:
|
|
goto tr703
|
|
case 12:
|
|
goto tr523
|
|
case 32:
|
|
goto tr702
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto tr202
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr199
|
|
st503:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof503
|
|
}
|
|
st_case_503:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st504
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st504:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof504
|
|
}
|
|
st_case_504:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st505
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st505:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof505
|
|
}
|
|
st_case_505:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st506
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st506:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof506
|
|
}
|
|
st_case_506:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st507
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st507:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof507
|
|
}
|
|
st_case_507:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st508
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st508:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof508
|
|
}
|
|
st_case_508:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st509
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st509:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof509
|
|
}
|
|
st_case_509:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st510
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st510:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof510
|
|
}
|
|
st_case_510:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st511
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st511:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof511
|
|
}
|
|
st_case_511:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st512
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st512:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof512
|
|
}
|
|
st_case_512:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st513
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st513:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof513
|
|
}
|
|
st_case_513:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st514
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st514:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof514
|
|
}
|
|
st_case_514:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st515
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st515:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof515
|
|
}
|
|
st_case_515:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st516
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st516:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof516
|
|
}
|
|
st_case_516:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st517
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st517:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof517
|
|
}
|
|
st_case_517:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st518
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st518:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof518
|
|
}
|
|
st_case_518:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st519
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st519:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof519
|
|
}
|
|
st_case_519:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st520
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
st520:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof520
|
|
}
|
|
st_case_520:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr697
|
|
case 11:
|
|
goto tr698
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr697
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto tr197
|
|
case 92:
|
|
goto st105
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr362
|
|
}
|
|
goto st96
|
|
tr668:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st140
|
|
tr723:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st140
|
|
tr729:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st140
|
|
tr733:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st140
|
|
tr737:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st140
|
|
st140:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof140
|
|
}
|
|
st_case_140:
|
|
//line plugins/parsers/influx/machine.go:17690
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr259
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr278
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto tr277
|
|
tr277:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st141
|
|
st141:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof141
|
|
}
|
|
st_case_141:
|
|
//line plugins/parsers/influx/machine.go:17722
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr262
|
|
case 44:
|
|
goto st7
|
|
case 61:
|
|
goto tr280
|
|
case 92:
|
|
goto st155
|
|
}
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st141
|
|
tr280:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:84
|
|
|
|
key = m.text()
|
|
|
|
goto st142
|
|
st142:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof142
|
|
}
|
|
st_case_142:
|
|
//line plugins/parsers/influx/machine.go:17758
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto st7
|
|
case 10:
|
|
goto tr61
|
|
case 32:
|
|
goto st7
|
|
case 34:
|
|
goto tr266
|
|
case 44:
|
|
goto st7
|
|
case 45:
|
|
goto tr282
|
|
case 46:
|
|
goto tr283
|
|
case 48:
|
|
goto tr284
|
|
case 61:
|
|
goto st7
|
|
case 70:
|
|
goto tr286
|
|
case 84:
|
|
goto tr287
|
|
case 92:
|
|
goto tr185
|
|
case 102:
|
|
goto tr288
|
|
case 116:
|
|
goto tr289
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr285
|
|
}
|
|
case ( m.data)[( m.p)] >= 12:
|
|
goto tr61
|
|
}
|
|
goto tr180
|
|
tr282:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st143
|
|
st143:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof143
|
|
}
|
|
st_case_143:
|
|
//line plugins/parsers/influx/machine.go:17809
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 46:
|
|
goto st144
|
|
case 48:
|
|
goto st524
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st527
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
tr283:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st144
|
|
st144:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof144
|
|
}
|
|
st_case_144:
|
|
//line plugins/parsers/influx/machine.go:17852
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st521
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st521:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof521
|
|
}
|
|
st_case_521:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st521
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
st145:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof145
|
|
}
|
|
st_case_145:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr294
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 43:
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] > 45:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st523
|
|
}
|
|
default:
|
|
goto st146
|
|
}
|
|
goto st89
|
|
tr294:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st522
|
|
st522:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof522
|
|
}
|
|
st_case_522:
|
|
//line plugins/parsers/influx/machine.go:17963
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr565
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr514
|
|
case 44:
|
|
goto tr516
|
|
case 61:
|
|
goto tr207
|
|
case 92:
|
|
goto st36
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st390
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr514
|
|
}
|
|
goto st31
|
|
st146:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof146
|
|
}
|
|
st_case_146:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st523
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st523:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof523
|
|
}
|
|
st_case_523:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st523
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
st524:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof524
|
|
}
|
|
st_case_524:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 46:
|
|
goto st521
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
case 105:
|
|
goto st526
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st525
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
st525:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof525
|
|
}
|
|
st_case_525:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 46:
|
|
goto st521
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st525
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
st526:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof526
|
|
}
|
|
st_case_526:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr727
|
|
case 11:
|
|
goto tr728
|
|
case 12:
|
|
goto tr572
|
|
case 32:
|
|
goto tr727
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr729
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr389
|
|
}
|
|
goto st89
|
|
st527:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof527
|
|
}
|
|
st_case_527:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 46:
|
|
goto st521
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
case 105:
|
|
goto st526
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st527
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
tr284:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st528
|
|
st528:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof528
|
|
}
|
|
st_case_528:
|
|
//line plugins/parsers/influx/machine.go:18209
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 46:
|
|
goto st521
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
case 105:
|
|
goto st526
|
|
case 117:
|
|
goto st529
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st525
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
st529:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof529
|
|
}
|
|
st_case_529:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr731
|
|
case 11:
|
|
goto tr732
|
|
case 12:
|
|
goto tr576
|
|
case 32:
|
|
goto tr731
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr733
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr393
|
|
}
|
|
goto st89
|
|
tr285:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st530
|
|
st530:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof530
|
|
}
|
|
st_case_530:
|
|
//line plugins/parsers/influx/machine.go:18285
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr721
|
|
case 11:
|
|
goto tr722
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr721
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr723
|
|
case 46:
|
|
goto st521
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st145
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st145
|
|
case 105:
|
|
goto st526
|
|
case 117:
|
|
goto st529
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st530
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st89
|
|
tr286:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st531
|
|
st531:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof531
|
|
}
|
|
st_case_531:
|
|
//line plugins/parsers/influx/machine.go:18334
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr735
|
|
case 11:
|
|
goto tr736
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr735
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr737
|
|
case 61:
|
|
goto st7
|
|
case 65:
|
|
goto st147
|
|
case 92:
|
|
goto st103
|
|
case 97:
|
|
goto st150
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st89
|
|
st147:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof147
|
|
}
|
|
st_case_147:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 76:
|
|
goto st148
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st148:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof148
|
|
}
|
|
st_case_148:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 83:
|
|
goto st149
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st149:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof149
|
|
}
|
|
st_case_149:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st532
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st532:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof532
|
|
}
|
|
st_case_532:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr735
|
|
case 11:
|
|
goto tr736
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr735
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr737
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st89
|
|
st150:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof150
|
|
}
|
|
st_case_150:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 108:
|
|
goto st151
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st151:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof151
|
|
}
|
|
st_case_151:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 115:
|
|
goto st152
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st152:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof152
|
|
}
|
|
st_case_152:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 101:
|
|
goto st532
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
tr287:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st533
|
|
st533:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof533
|
|
}
|
|
st_case_533:
|
|
//line plugins/parsers/influx/machine.go:18573
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr735
|
|
case 11:
|
|
goto tr736
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr735
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr737
|
|
case 61:
|
|
goto st7
|
|
case 82:
|
|
goto st153
|
|
case 92:
|
|
goto st103
|
|
case 114:
|
|
goto st154
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st89
|
|
st153:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof153
|
|
}
|
|
st_case_153:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 85:
|
|
goto st149
|
|
case 92:
|
|
goto st103
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
st154:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof154
|
|
}
|
|
st_case_154:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr187
|
|
case 11:
|
|
goto tr188
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr187
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr190
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 117:
|
|
goto st152
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st89
|
|
tr288:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st534
|
|
st534:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof534
|
|
}
|
|
st_case_534:
|
|
//line plugins/parsers/influx/machine.go:18669
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr735
|
|
case 11:
|
|
goto tr736
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr735
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr737
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 97:
|
|
goto st150
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st89
|
|
tr289:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st535
|
|
st535:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof535
|
|
}
|
|
st_case_535:
|
|
//line plugins/parsers/influx/machine.go:18705
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr735
|
|
case 11:
|
|
goto tr736
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr735
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr737
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st103
|
|
case 114:
|
|
goto st154
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st89
|
|
tr278:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st155
|
|
st155:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof155
|
|
}
|
|
st_case_155:
|
|
//line plugins/parsers/influx/machine.go:18741
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st141
|
|
case 92:
|
|
goto st141
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st86
|
|
tr267:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st156
|
|
st156:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof156
|
|
}
|
|
st_case_156:
|
|
//line plugins/parsers/influx/machine.go:18768
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 46:
|
|
goto st157
|
|
case 48:
|
|
goto st560
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st563
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
tr268:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st157
|
|
st157:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof157
|
|
}
|
|
st_case_157:
|
|
//line plugins/parsers/influx/machine.go:18811
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st536
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st536:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof536
|
|
}
|
|
st_case_536:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st536
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
tr743:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
goto st537
|
|
tr775:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
goto st537
|
|
tr779:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
goto st537
|
|
tr783:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
goto st537
|
|
st537:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof537
|
|
}
|
|
st_case_537:
|
|
//line plugins/parsers/influx/machine.go:18920
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr746
|
|
case 11:
|
|
goto tr747
|
|
case 12:
|
|
goto tr514
|
|
case 32:
|
|
goto tr746
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr239
|
|
case 45:
|
|
goto tr748
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto tr243
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr749
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr241
|
|
tr747:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st538
|
|
st538:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof538
|
|
}
|
|
st_case_538:
|
|
//line plugins/parsers/influx/machine.go:18965
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr746
|
|
case 11:
|
|
goto tr747
|
|
case 12:
|
|
goto tr514
|
|
case 32:
|
|
goto tr746
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr239
|
|
case 45:
|
|
goto tr748
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr243
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto tr749
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr357
|
|
}
|
|
goto tr241
|
|
tr748:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st158
|
|
st158:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof158
|
|
}
|
|
st_case_158:
|
|
//line plugins/parsers/influx/machine.go:19006
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr245
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st539
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr207
|
|
}
|
|
goto st124
|
|
tr749:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st539
|
|
st539:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof539
|
|
}
|
|
st_case_539:
|
|
//line plugins/parsers/influx/machine.go:19045
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st541
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
tr754:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st540
|
|
tr751:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
goto st540
|
|
st540:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof540
|
|
}
|
|
st_case_540:
|
|
//line plugins/parsers/influx/machine.go:19098
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr753
|
|
case 11:
|
|
goto tr754
|
|
case 12:
|
|
goto tr523
|
|
case 32:
|
|
goto tr753
|
|
case 34:
|
|
goto tr201
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto tr243
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr357
|
|
}
|
|
goto tr241
|
|
st541:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof541
|
|
}
|
|
st_case_541:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st542
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st542:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof542
|
|
}
|
|
st_case_542:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st543
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st543:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof543
|
|
}
|
|
st_case_543:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st544
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st544:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof544
|
|
}
|
|
st_case_544:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st545
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st545:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof545
|
|
}
|
|
st_case_545:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st546
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st546:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof546
|
|
}
|
|
st_case_546:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st547
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st547:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof547
|
|
}
|
|
st_case_547:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st548
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st548:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof548
|
|
}
|
|
st_case_548:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st549
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st549:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof549
|
|
}
|
|
st_case_549:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st550
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st550:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof550
|
|
}
|
|
st_case_550:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st551
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st551:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof551
|
|
}
|
|
st_case_551:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st552
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st552:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof552
|
|
}
|
|
st_case_552:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st553
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st553:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof553
|
|
}
|
|
st_case_553:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st554
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st554:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof554
|
|
}
|
|
st_case_554:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st555
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st555:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof555
|
|
}
|
|
st_case_555:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st556
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st556:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof556
|
|
}
|
|
st_case_556:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st557
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st557:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof557
|
|
}
|
|
st_case_557:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st558
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st558:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof558
|
|
}
|
|
st_case_558:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr750
|
|
case 11:
|
|
goto tr751
|
|
case 12:
|
|
goto tr520
|
|
case 32:
|
|
goto tr750
|
|
case 34:
|
|
goto tr205
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto tr99
|
|
case 92:
|
|
goto st126
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr362
|
|
}
|
|
goto st124
|
|
st159:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof159
|
|
}
|
|
st_case_159:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr294
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 43:
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] > 45:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st559
|
|
}
|
|
default:
|
|
goto st160
|
|
}
|
|
goto st122
|
|
st160:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof160
|
|
}
|
|
st_case_160:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st559
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st559:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof559
|
|
}
|
|
st_case_559:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st559
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
st560:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof560
|
|
}
|
|
st_case_560:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 46:
|
|
goto st536
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
case 105:
|
|
goto st562
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st561
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
st561:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof561
|
|
}
|
|
st_case_561:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 46:
|
|
goto st536
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st561
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
st562:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof562
|
|
}
|
|
st_case_562:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr774
|
|
case 11:
|
|
goto tr775
|
|
case 12:
|
|
goto tr572
|
|
case 32:
|
|
goto tr774
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr776
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr389
|
|
}
|
|
goto st122
|
|
st563:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof563
|
|
}
|
|
st_case_563:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 46:
|
|
goto st536
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
case 105:
|
|
goto st562
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st563
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
tr269:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st564
|
|
st564:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof564
|
|
}
|
|
st_case_564:
|
|
//line plugins/parsers/influx/machine.go:19948
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 46:
|
|
goto st536
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
case 105:
|
|
goto st562
|
|
case 117:
|
|
goto st565
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st561
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
st565:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof565
|
|
}
|
|
st_case_565:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr778
|
|
case 11:
|
|
goto tr779
|
|
case 12:
|
|
goto tr576
|
|
case 32:
|
|
goto tr778
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr780
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr393
|
|
}
|
|
goto st122
|
|
tr270:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st566
|
|
st566:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof566
|
|
}
|
|
st_case_566:
|
|
//line plugins/parsers/influx/machine.go:20024
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr742
|
|
case 11:
|
|
goto tr743
|
|
case 12:
|
|
goto tr566
|
|
case 32:
|
|
goto tr742
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr744
|
|
case 46:
|
|
goto st536
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st159
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st159
|
|
case 105:
|
|
goto st562
|
|
case 117:
|
|
goto st565
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st566
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st122
|
|
tr271:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st567
|
|
st567:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof567
|
|
}
|
|
st_case_567:
|
|
//line plugins/parsers/influx/machine.go:20073
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr782
|
|
case 11:
|
|
goto tr783
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr782
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr784
|
|
case 61:
|
|
goto st7
|
|
case 65:
|
|
goto st161
|
|
case 92:
|
|
goto st127
|
|
case 97:
|
|
goto st164
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st122
|
|
st161:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof161
|
|
}
|
|
st_case_161:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 76:
|
|
goto st162
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st162:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof162
|
|
}
|
|
st_case_162:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 83:
|
|
goto st163
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st163:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof163
|
|
}
|
|
st_case_163:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 69:
|
|
goto st568
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st568:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof568
|
|
}
|
|
st_case_568:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr782
|
|
case 11:
|
|
goto tr783
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr782
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr784
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st122
|
|
st164:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof164
|
|
}
|
|
st_case_164:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 108:
|
|
goto st165
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st165:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof165
|
|
}
|
|
st_case_165:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 115:
|
|
goto st166
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st166:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof166
|
|
}
|
|
st_case_166:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 101:
|
|
goto st568
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
tr272:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st569
|
|
st569:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof569
|
|
}
|
|
st_case_569:
|
|
//line plugins/parsers/influx/machine.go:20312
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr782
|
|
case 11:
|
|
goto tr783
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr782
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr784
|
|
case 61:
|
|
goto st7
|
|
case 82:
|
|
goto st167
|
|
case 92:
|
|
goto st127
|
|
case 114:
|
|
goto st168
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st122
|
|
st167:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof167
|
|
}
|
|
st_case_167:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 85:
|
|
goto st163
|
|
case 92:
|
|
goto st127
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
st168:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof168
|
|
}
|
|
st_case_168:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr237
|
|
case 11:
|
|
goto tr238
|
|
case 12:
|
|
goto tr60
|
|
case 32:
|
|
goto tr237
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr239
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 117:
|
|
goto st166
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
goto st122
|
|
tr273:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st570
|
|
st570:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof570
|
|
}
|
|
st_case_570:
|
|
//line plugins/parsers/influx/machine.go:20408
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr782
|
|
case 11:
|
|
goto tr783
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr782
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr784
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 97:
|
|
goto st164
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st122
|
|
tr274:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st571
|
|
st571:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof571
|
|
}
|
|
st_case_571:
|
|
//line plugins/parsers/influx/machine.go:20444
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr782
|
|
case 11:
|
|
goto tr783
|
|
case 12:
|
|
goto tr580
|
|
case 32:
|
|
goto tr782
|
|
case 34:
|
|
goto tr189
|
|
case 44:
|
|
goto tr784
|
|
case 61:
|
|
goto st7
|
|
case 92:
|
|
goto st127
|
|
case 114:
|
|
goto st168
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st122
|
|
tr260:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st169
|
|
st169:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof169
|
|
}
|
|
st_case_169:
|
|
//line plugins/parsers/influx/machine.go:20480
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st135
|
|
case 92:
|
|
goto st135
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr61
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr61
|
|
}
|
|
goto st86
|
|
tr85:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st170
|
|
st170:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof170
|
|
}
|
|
st_case_170:
|
|
//line plugins/parsers/influx/machine.go:20507
|
|
switch ( m.data)[( m.p)] {
|
|
case 34:
|
|
goto st40
|
|
case 92:
|
|
goto st40
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr5
|
|
}
|
|
goto st2
|
|
tr248:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st171
|
|
st171:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof171
|
|
}
|
|
st_case_171:
|
|
//line plugins/parsers/influx/machine.go:20534
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 46:
|
|
goto st172
|
|
case 48:
|
|
goto st576
|
|
case 92:
|
|
goto st170
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st579
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
tr249:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st172
|
|
st172:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof172
|
|
}
|
|
st_case_172:
|
|
//line plugins/parsers/influx/machine.go:20575
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st572
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st572:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof572
|
|
}
|
|
st_case_572:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st572
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
st173:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof173
|
|
}
|
|
st_case_173:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr318
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 43:
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
case ( m.data)[( m.p)] > 45:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st575
|
|
}
|
|
default:
|
|
goto st174
|
|
}
|
|
goto st40
|
|
tr318:
|
|
//line plugins/parsers/influx/machine.go.rl:104
|
|
|
|
m.handler.AddString(key, m.text())
|
|
|
|
goto st573
|
|
st573:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof573
|
|
}
|
|
st_case_573:
|
|
//line plugins/parsers/influx/machine.go:20680
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr357
|
|
case 11:
|
|
goto tr642
|
|
case 13:
|
|
goto tr357
|
|
case 32:
|
|
goto tr482
|
|
case 44:
|
|
goto tr484
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st574
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr482
|
|
}
|
|
goto st2
|
|
st574:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof574
|
|
}
|
|
st_case_574:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st574
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
st174:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof174
|
|
}
|
|
st_case_174:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st575
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st575:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof575
|
|
}
|
|
st_case_575:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 92:
|
|
goto st170
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st575
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
st576:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof576
|
|
}
|
|
st_case_576:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 46:
|
|
goto st572
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
case 105:
|
|
goto st578
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st577
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
st577:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof577
|
|
}
|
|
st_case_577:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 46:
|
|
goto st572
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st577
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
st578:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof578
|
|
}
|
|
st_case_578:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr798
|
|
case 11:
|
|
goto tr799
|
|
case 12:
|
|
goto tr800
|
|
case 32:
|
|
goto tr798
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr801
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr389
|
|
}
|
|
goto st40
|
|
st579:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof579
|
|
}
|
|
st_case_579:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 46:
|
|
goto st572
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
case 105:
|
|
goto st578
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st579
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
tr250:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st580
|
|
st580:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof580
|
|
}
|
|
st_case_580:
|
|
//line plugins/parsers/influx/machine.go:20940
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 46:
|
|
goto st572
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
case 105:
|
|
goto st578
|
|
case 117:
|
|
goto st581
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st577
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
st581:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof581
|
|
}
|
|
st_case_581:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr803
|
|
case 11:
|
|
goto tr804
|
|
case 12:
|
|
goto tr805
|
|
case 32:
|
|
goto tr803
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr806
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr393
|
|
}
|
|
goto st40
|
|
tr251:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st582
|
|
st582:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof582
|
|
}
|
|
st_case_582:
|
|
//line plugins/parsers/influx/machine.go:21012
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr789
|
|
case 11:
|
|
goto tr790
|
|
case 12:
|
|
goto tr791
|
|
case 32:
|
|
goto tr789
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr792
|
|
case 46:
|
|
goto st572
|
|
case 69:
|
|
goto st173
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st173
|
|
case 105:
|
|
goto st578
|
|
case 117:
|
|
goto st581
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 13:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st582
|
|
}
|
|
case ( m.data)[( m.p)] >= 10:
|
|
goto tr383
|
|
}
|
|
goto st40
|
|
tr252:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st583
|
|
st583:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof583
|
|
}
|
|
st_case_583:
|
|
//line plugins/parsers/influx/machine.go:21059
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr808
|
|
case 11:
|
|
goto tr809
|
|
case 12:
|
|
goto tr810
|
|
case 32:
|
|
goto tr808
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr811
|
|
case 65:
|
|
goto st175
|
|
case 92:
|
|
goto st170
|
|
case 97:
|
|
goto st178
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st40
|
|
st175:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof175
|
|
}
|
|
st_case_175:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 76:
|
|
goto st176
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st176:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof176
|
|
}
|
|
st_case_176:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 83:
|
|
goto st177
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st177:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof177
|
|
}
|
|
st_case_177:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 69:
|
|
goto st584
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st584:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof584
|
|
}
|
|
st_case_584:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr808
|
|
case 11:
|
|
goto tr809
|
|
case 12:
|
|
goto tr810
|
|
case 32:
|
|
goto tr808
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr811
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st40
|
|
st178:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof178
|
|
}
|
|
st_case_178:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
case 108:
|
|
goto st179
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st179:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof179
|
|
}
|
|
st_case_179:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
case 115:
|
|
goto st180
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st180:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof180
|
|
}
|
|
st_case_180:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
case 101:
|
|
goto st584
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
tr253:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st585
|
|
st585:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof585
|
|
}
|
|
st_case_585:
|
|
//line plugins/parsers/influx/machine.go:21282
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr808
|
|
case 11:
|
|
goto tr809
|
|
case 12:
|
|
goto tr810
|
|
case 32:
|
|
goto tr808
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr811
|
|
case 82:
|
|
goto st181
|
|
case 92:
|
|
goto st170
|
|
case 114:
|
|
goto st182
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st40
|
|
st181:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof181
|
|
}
|
|
st_case_181:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 85:
|
|
goto st177
|
|
case 92:
|
|
goto st170
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
st182:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof182
|
|
}
|
|
st_case_182:
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr87
|
|
case 11:
|
|
goto tr88
|
|
case 12:
|
|
goto tr4
|
|
case 32:
|
|
goto tr87
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr90
|
|
case 92:
|
|
goto st170
|
|
case 117:
|
|
goto st180
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr5
|
|
}
|
|
goto st40
|
|
tr254:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st586
|
|
st586:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof586
|
|
}
|
|
st_case_586:
|
|
//line plugins/parsers/influx/machine.go:21372
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr808
|
|
case 11:
|
|
goto tr809
|
|
case 12:
|
|
goto tr810
|
|
case 32:
|
|
goto tr808
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr811
|
|
case 92:
|
|
goto st170
|
|
case 97:
|
|
goto st178
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st40
|
|
tr255:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st587
|
|
st587:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof587
|
|
}
|
|
st_case_587:
|
|
//line plugins/parsers/influx/machine.go:21406
|
|
switch ( m.data)[( m.p)] {
|
|
case 9:
|
|
goto tr808
|
|
case 11:
|
|
goto tr809
|
|
case 12:
|
|
goto tr810
|
|
case 32:
|
|
goto tr808
|
|
case 34:
|
|
goto tr89
|
|
case 44:
|
|
goto tr811
|
|
case 92:
|
|
goto st170
|
|
case 114:
|
|
goto st182
|
|
}
|
|
if 10 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr397
|
|
}
|
|
goto st40
|
|
tr72:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st183
|
|
st183:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof183
|
|
}
|
|
st_case_183:
|
|
//line plugins/parsers/influx/machine.go:21440
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 46:
|
|
goto st184
|
|
case 48:
|
|
goto st589
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st592
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
tr73:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st184
|
|
st184:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof184
|
|
}
|
|
st_case_184:
|
|
//line plugins/parsers/influx/machine.go:21479
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st588
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st588:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof588
|
|
}
|
|
st_case_588:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st588
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
st185:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof185
|
|
}
|
|
st_case_185:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 34:
|
|
goto st186
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] < 43:
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
case ( m.data)[( m.p)] > 45:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st574
|
|
}
|
|
default:
|
|
goto st186
|
|
}
|
|
goto st2
|
|
st186:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof186
|
|
}
|
|
st_case_186:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st574
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st589:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof589
|
|
}
|
|
st_case_589:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 46:
|
|
goto st588
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
case 105:
|
|
goto st591
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st590
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
st590:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof590
|
|
}
|
|
st_case_590:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 46:
|
|
goto st588
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st590
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
st591:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof591
|
|
}
|
|
st_case_591:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr389
|
|
case 11:
|
|
goto tr819
|
|
case 13:
|
|
goto tr389
|
|
case 32:
|
|
goto tr800
|
|
case 44:
|
|
goto tr820
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr800
|
|
}
|
|
goto st2
|
|
st592:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof592
|
|
}
|
|
st_case_592:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 46:
|
|
goto st588
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
case 105:
|
|
goto st591
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st592
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
tr74:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st593
|
|
st593:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof593
|
|
}
|
|
st_case_593:
|
|
//line plugins/parsers/influx/machine.go:21737
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 46:
|
|
goto st588
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
case 105:
|
|
goto st591
|
|
case 117:
|
|
goto st594
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st590
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
st594:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof594
|
|
}
|
|
st_case_594:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr393
|
|
case 11:
|
|
goto tr822
|
|
case 13:
|
|
goto tr393
|
|
case 32:
|
|
goto tr805
|
|
case 44:
|
|
goto tr823
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr805
|
|
}
|
|
goto st2
|
|
tr75:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st595
|
|
st595:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof595
|
|
}
|
|
st_case_595:
|
|
//line plugins/parsers/influx/machine.go:21805
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr383
|
|
case 11:
|
|
goto tr794
|
|
case 13:
|
|
goto tr383
|
|
case 32:
|
|
goto tr791
|
|
case 44:
|
|
goto tr795
|
|
case 46:
|
|
goto st588
|
|
case 69:
|
|
goto st185
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st185
|
|
case 105:
|
|
goto st591
|
|
case 117:
|
|
goto st594
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 12:
|
|
if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 {
|
|
goto st595
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr791
|
|
}
|
|
goto st2
|
|
tr76:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st596
|
|
st596:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof596
|
|
}
|
|
st_case_596:
|
|
//line plugins/parsers/influx/machine.go:21850
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr825
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr810
|
|
case 44:
|
|
goto tr826
|
|
case 65:
|
|
goto st187
|
|
case 92:
|
|
goto st133
|
|
case 97:
|
|
goto st190
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr810
|
|
}
|
|
goto st2
|
|
st187:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof187
|
|
}
|
|
st_case_187:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 76:
|
|
goto st188
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st188:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof188
|
|
}
|
|
st_case_188:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 83:
|
|
goto st189
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st189:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof189
|
|
}
|
|
st_case_189:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 69:
|
|
goto st597
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st597:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof597
|
|
}
|
|
st_case_597:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr825
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr810
|
|
case 44:
|
|
goto tr826
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr810
|
|
}
|
|
goto st2
|
|
st190:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof190
|
|
}
|
|
st_case_190:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
case 108:
|
|
goto st191
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st191:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof191
|
|
}
|
|
st_case_191:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
case 115:
|
|
goto st192
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st192:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof192
|
|
}
|
|
st_case_192:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
case 101:
|
|
goto st597
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
tr77:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st598
|
|
st598:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof598
|
|
}
|
|
st_case_598:
|
|
//line plugins/parsers/influx/machine.go:22057
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr825
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr810
|
|
case 44:
|
|
goto tr826
|
|
case 82:
|
|
goto st193
|
|
case 92:
|
|
goto st133
|
|
case 114:
|
|
goto st194
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr810
|
|
}
|
|
goto st2
|
|
st193:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof193
|
|
}
|
|
st_case_193:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 85:
|
|
goto st189
|
|
case 92:
|
|
goto st133
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
st194:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof194
|
|
}
|
|
st_case_194:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr5
|
|
case 11:
|
|
goto tr6
|
|
case 13:
|
|
goto tr5
|
|
case 32:
|
|
goto tr4
|
|
case 44:
|
|
goto tr7
|
|
case 92:
|
|
goto st133
|
|
case 117:
|
|
goto st192
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr4
|
|
}
|
|
goto st2
|
|
tr78:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st599
|
|
st599:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof599
|
|
}
|
|
st_case_599:
|
|
//line plugins/parsers/influx/machine.go:22141
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr825
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr810
|
|
case 44:
|
|
goto tr826
|
|
case 92:
|
|
goto st133
|
|
case 97:
|
|
goto st190
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr810
|
|
}
|
|
goto st2
|
|
tr79:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st600
|
|
st600:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof600
|
|
}
|
|
st_case_600:
|
|
//line plugins/parsers/influx/machine.go:22173
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr397
|
|
case 11:
|
|
goto tr825
|
|
case 13:
|
|
goto tr397
|
|
case 32:
|
|
goto tr810
|
|
case 44:
|
|
goto tr826
|
|
case 92:
|
|
goto st133
|
|
case 114:
|
|
goto st194
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr810
|
|
}
|
|
goto st2
|
|
st195:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof195
|
|
}
|
|
st_case_195:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr338
|
|
case 13:
|
|
goto tr338
|
|
}
|
|
goto st195
|
|
tr338:
|
|
//line plugins/parsers/influx/machine.go.rl:68
|
|
|
|
{goto st196 }
|
|
|
|
goto st601
|
|
st601:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof601
|
|
}
|
|
st_case_601:
|
|
//line plugins/parsers/influx/machine.go:22217
|
|
goto st0
|
|
st196:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof196
|
|
}
|
|
st_case_196:
|
|
switch ( m.data)[( m.p)] {
|
|
case 11:
|
|
goto tr341
|
|
case 32:
|
|
goto st196
|
|
case 35:
|
|
goto st197
|
|
case 44:
|
|
goto st0
|
|
case 92:
|
|
goto st198
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto st196
|
|
}
|
|
goto tr339
|
|
tr339:
|
|
//line plugins/parsers/influx/machine.go.rl:63
|
|
|
|
( m.p)--
|
|
|
|
{goto st1 }
|
|
|
|
goto st602
|
|
st602:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof602
|
|
}
|
|
st_case_602:
|
|
//line plugins/parsers/influx/machine.go:22253
|
|
goto st0
|
|
tr341:
|
|
//line plugins/parsers/influx/machine.go.rl:63
|
|
|
|
( m.p)--
|
|
|
|
{goto st1 }
|
|
|
|
goto st603
|
|
st603:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof603
|
|
}
|
|
st_case_603:
|
|
//line plugins/parsers/influx/machine.go:22268
|
|
switch ( m.data)[( m.p)] {
|
|
case 11:
|
|
goto tr341
|
|
case 32:
|
|
goto st196
|
|
case 35:
|
|
goto st197
|
|
case 44:
|
|
goto st0
|
|
case 92:
|
|
goto st198
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto st196
|
|
}
|
|
goto tr339
|
|
st197:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof197
|
|
}
|
|
st_case_197:
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto st196
|
|
case 13:
|
|
goto st196
|
|
}
|
|
goto st197
|
|
st198:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof198
|
|
}
|
|
st_case_198:
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto st0
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st0
|
|
}
|
|
goto tr339
|
|
st199:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof199
|
|
}
|
|
st_case_199:
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto st0
|
|
case 35:
|
|
goto st0
|
|
case 44:
|
|
goto st0
|
|
case 92:
|
|
goto tr346
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto st0
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st0
|
|
}
|
|
goto tr345
|
|
tr345:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st604
|
|
tr833:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st604
|
|
st604:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof604
|
|
}
|
|
st_case_604:
|
|
//line plugins/parsers/influx/machine.go:22352
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr832
|
|
case 11:
|
|
goto tr833
|
|
case 13:
|
|
goto tr832
|
|
case 32:
|
|
goto tr831
|
|
case 44:
|
|
goto tr834
|
|
case 92:
|
|
goto st205
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr831
|
|
}
|
|
goto st604
|
|
tr831:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st605
|
|
tr838:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st605
|
|
st605:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof605
|
|
}
|
|
st_case_605:
|
|
//line plugins/parsers/influx/machine.go:22388
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr837
|
|
case 13:
|
|
goto tr837
|
|
case 32:
|
|
goto st605
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto st605
|
|
}
|
|
goto st0
|
|
tr837:
|
|
m.cs = 606
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr832:
|
|
m.cs = 606
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
tr839:
|
|
m.cs = 606
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; goto _out }
|
|
|
|
goto _again
|
|
st606:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof606
|
|
}
|
|
st_case_606:
|
|
//line plugins/parsers/influx/machine.go:22441
|
|
goto st0
|
|
tr834:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
goto st200
|
|
tr841:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st200
|
|
st200:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof200
|
|
}
|
|
st_case_200:
|
|
//line plugins/parsers/influx/machine.go:22460
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr52
|
|
case 92:
|
|
goto tr348
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto tr347
|
|
tr347:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st201
|
|
st201:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof201
|
|
}
|
|
st_case_201:
|
|
//line plugins/parsers/influx/machine.go:22491
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr350
|
|
case 92:
|
|
goto st204
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st201
|
|
tr350:
|
|
//line plugins/parsers/influx/machine.go.rl:76
|
|
|
|
key = m.text()
|
|
|
|
goto st202
|
|
st202:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof202
|
|
}
|
|
st_case_202:
|
|
//line plugins/parsers/influx/machine.go:22522
|
|
switch ( m.data)[( m.p)] {
|
|
case 32:
|
|
goto tr52
|
|
case 44:
|
|
goto tr52
|
|
case 61:
|
|
goto tr52
|
|
case 92:
|
|
goto tr353
|
|
}
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto tr352
|
|
tr352:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st607
|
|
tr840:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
goto st607
|
|
st607:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof607
|
|
}
|
|
st_case_607:
|
|
//line plugins/parsers/influx/machine.go:22559
|
|
switch ( m.data)[( m.p)] {
|
|
case 10:
|
|
goto tr839
|
|
case 11:
|
|
goto tr840
|
|
case 13:
|
|
goto tr839
|
|
case 32:
|
|
goto tr838
|
|
case 44:
|
|
goto tr841
|
|
case 61:
|
|
goto tr52
|
|
case 92:
|
|
goto st203
|
|
}
|
|
if 9 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 12 {
|
|
goto tr838
|
|
}
|
|
goto st607
|
|
tr353:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st203
|
|
st203:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof203
|
|
}
|
|
st_case_203:
|
|
//line plugins/parsers/influx/machine.go:22591
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st607
|
|
tr348:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st204
|
|
st204:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof204
|
|
}
|
|
st_case_204:
|
|
//line plugins/parsers/influx/machine.go:22612
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto tr52
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto tr52
|
|
}
|
|
goto st201
|
|
tr346:
|
|
//line plugins/parsers/influx/machine.go.rl:18
|
|
|
|
m.pb = m.p
|
|
|
|
goto st205
|
|
st205:
|
|
if ( m.p)++; ( m.p) == ( m.pe) {
|
|
goto _test_eof205
|
|
}
|
|
st_case_205:
|
|
//line plugins/parsers/influx/machine.go:22633
|
|
switch {
|
|
case ( m.data)[( m.p)] > 10:
|
|
if 12 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 13 {
|
|
goto st0
|
|
}
|
|
case ( m.data)[( m.p)] >= 9:
|
|
goto st0
|
|
}
|
|
goto st604
|
|
st_out:
|
|
_test_eof1: m.cs = 1; goto _test_eof
|
|
_test_eof2: m.cs = 2; goto _test_eof
|
|
_test_eof3: m.cs = 3; goto _test_eof
|
|
_test_eof4: m.cs = 4; goto _test_eof
|
|
_test_eof5: m.cs = 5; goto _test_eof
|
|
_test_eof6: m.cs = 6; goto _test_eof
|
|
_test_eof7: m.cs = 7; goto _test_eof
|
|
_test_eof206: m.cs = 206; goto _test_eof
|
|
_test_eof207: m.cs = 207; goto _test_eof
|
|
_test_eof208: m.cs = 208; goto _test_eof
|
|
_test_eof8: m.cs = 8; goto _test_eof
|
|
_test_eof209: m.cs = 209; goto _test_eof
|
|
_test_eof210: m.cs = 210; goto _test_eof
|
|
_test_eof211: m.cs = 211; goto _test_eof
|
|
_test_eof212: m.cs = 212; goto _test_eof
|
|
_test_eof213: m.cs = 213; goto _test_eof
|
|
_test_eof214: m.cs = 214; goto _test_eof
|
|
_test_eof215: m.cs = 215; goto _test_eof
|
|
_test_eof216: m.cs = 216; goto _test_eof
|
|
_test_eof217: m.cs = 217; goto _test_eof
|
|
_test_eof218: m.cs = 218; goto _test_eof
|
|
_test_eof219: m.cs = 219; goto _test_eof
|
|
_test_eof220: m.cs = 220; goto _test_eof
|
|
_test_eof221: m.cs = 221; goto _test_eof
|
|
_test_eof222: m.cs = 222; goto _test_eof
|
|
_test_eof223: m.cs = 223; goto _test_eof
|
|
_test_eof224: m.cs = 224; goto _test_eof
|
|
_test_eof225: m.cs = 225; goto _test_eof
|
|
_test_eof226: m.cs = 226; goto _test_eof
|
|
_test_eof227: m.cs = 227; goto _test_eof
|
|
_test_eof228: m.cs = 228; goto _test_eof
|
|
_test_eof9: m.cs = 9; goto _test_eof
|
|
_test_eof10: m.cs = 10; goto _test_eof
|
|
_test_eof11: m.cs = 11; goto _test_eof
|
|
_test_eof12: m.cs = 12; goto _test_eof
|
|
_test_eof13: m.cs = 13; goto _test_eof
|
|
_test_eof229: m.cs = 229; goto _test_eof
|
|
_test_eof14: m.cs = 14; goto _test_eof
|
|
_test_eof15: m.cs = 15; goto _test_eof
|
|
_test_eof230: m.cs = 230; goto _test_eof
|
|
_test_eof231: m.cs = 231; goto _test_eof
|
|
_test_eof232: m.cs = 232; goto _test_eof
|
|
_test_eof233: m.cs = 233; goto _test_eof
|
|
_test_eof234: m.cs = 234; goto _test_eof
|
|
_test_eof235: m.cs = 235; goto _test_eof
|
|
_test_eof236: m.cs = 236; goto _test_eof
|
|
_test_eof237: m.cs = 237; goto _test_eof
|
|
_test_eof238: m.cs = 238; goto _test_eof
|
|
_test_eof16: m.cs = 16; goto _test_eof
|
|
_test_eof17: m.cs = 17; goto _test_eof
|
|
_test_eof18: m.cs = 18; goto _test_eof
|
|
_test_eof239: m.cs = 239; goto _test_eof
|
|
_test_eof19: m.cs = 19; goto _test_eof
|
|
_test_eof20: m.cs = 20; goto _test_eof
|
|
_test_eof21: m.cs = 21; goto _test_eof
|
|
_test_eof240: m.cs = 240; goto _test_eof
|
|
_test_eof22: m.cs = 22; goto _test_eof
|
|
_test_eof23: m.cs = 23; goto _test_eof
|
|
_test_eof241: m.cs = 241; goto _test_eof
|
|
_test_eof242: m.cs = 242; goto _test_eof
|
|
_test_eof24: m.cs = 24; goto _test_eof
|
|
_test_eof25: m.cs = 25; goto _test_eof
|
|
_test_eof26: m.cs = 26; goto _test_eof
|
|
_test_eof27: m.cs = 27; goto _test_eof
|
|
_test_eof28: m.cs = 28; goto _test_eof
|
|
_test_eof29: m.cs = 29; goto _test_eof
|
|
_test_eof30: m.cs = 30; goto _test_eof
|
|
_test_eof31: m.cs = 31; goto _test_eof
|
|
_test_eof32: m.cs = 32; goto _test_eof
|
|
_test_eof33: m.cs = 33; goto _test_eof
|
|
_test_eof34: m.cs = 34; goto _test_eof
|
|
_test_eof35: m.cs = 35; goto _test_eof
|
|
_test_eof36: m.cs = 36; goto _test_eof
|
|
_test_eof37: m.cs = 37; goto _test_eof
|
|
_test_eof38: m.cs = 38; goto _test_eof
|
|
_test_eof39: m.cs = 39; goto _test_eof
|
|
_test_eof40: m.cs = 40; goto _test_eof
|
|
_test_eof41: m.cs = 41; goto _test_eof
|
|
_test_eof42: m.cs = 42; goto _test_eof
|
|
_test_eof243: m.cs = 243; goto _test_eof
|
|
_test_eof244: m.cs = 244; goto _test_eof
|
|
_test_eof43: m.cs = 43; goto _test_eof
|
|
_test_eof245: m.cs = 245; goto _test_eof
|
|
_test_eof246: m.cs = 246; goto _test_eof
|
|
_test_eof247: m.cs = 247; goto _test_eof
|
|
_test_eof248: m.cs = 248; goto _test_eof
|
|
_test_eof249: m.cs = 249; goto _test_eof
|
|
_test_eof250: m.cs = 250; goto _test_eof
|
|
_test_eof251: m.cs = 251; goto _test_eof
|
|
_test_eof252: m.cs = 252; goto _test_eof
|
|
_test_eof253: m.cs = 253; goto _test_eof
|
|
_test_eof254: m.cs = 254; goto _test_eof
|
|
_test_eof255: m.cs = 255; goto _test_eof
|
|
_test_eof256: m.cs = 256; goto _test_eof
|
|
_test_eof257: m.cs = 257; goto _test_eof
|
|
_test_eof258: m.cs = 258; goto _test_eof
|
|
_test_eof259: m.cs = 259; goto _test_eof
|
|
_test_eof260: m.cs = 260; goto _test_eof
|
|
_test_eof261: m.cs = 261; goto _test_eof
|
|
_test_eof262: m.cs = 262; goto _test_eof
|
|
_test_eof263: m.cs = 263; goto _test_eof
|
|
_test_eof264: m.cs = 264; goto _test_eof
|
|
_test_eof44: m.cs = 44; goto _test_eof
|
|
_test_eof265: m.cs = 265; goto _test_eof
|
|
_test_eof266: m.cs = 266; goto _test_eof
|
|
_test_eof45: m.cs = 45; goto _test_eof
|
|
_test_eof267: m.cs = 267; goto _test_eof
|
|
_test_eof268: m.cs = 268; goto _test_eof
|
|
_test_eof269: m.cs = 269; goto _test_eof
|
|
_test_eof270: m.cs = 270; goto _test_eof
|
|
_test_eof271: m.cs = 271; goto _test_eof
|
|
_test_eof272: m.cs = 272; goto _test_eof
|
|
_test_eof273: m.cs = 273; goto _test_eof
|
|
_test_eof274: m.cs = 274; goto _test_eof
|
|
_test_eof275: m.cs = 275; goto _test_eof
|
|
_test_eof276: m.cs = 276; goto _test_eof
|
|
_test_eof277: m.cs = 277; goto _test_eof
|
|
_test_eof278: m.cs = 278; goto _test_eof
|
|
_test_eof279: m.cs = 279; goto _test_eof
|
|
_test_eof280: m.cs = 280; goto _test_eof
|
|
_test_eof281: m.cs = 281; goto _test_eof
|
|
_test_eof282: m.cs = 282; goto _test_eof
|
|
_test_eof283: m.cs = 283; goto _test_eof
|
|
_test_eof284: m.cs = 284; goto _test_eof
|
|
_test_eof285: m.cs = 285; goto _test_eof
|
|
_test_eof286: m.cs = 286; goto _test_eof
|
|
_test_eof46: m.cs = 46; goto _test_eof
|
|
_test_eof47: m.cs = 47; goto _test_eof
|
|
_test_eof48: m.cs = 48; goto _test_eof
|
|
_test_eof287: m.cs = 287; goto _test_eof
|
|
_test_eof49: m.cs = 49; goto _test_eof
|
|
_test_eof50: m.cs = 50; goto _test_eof
|
|
_test_eof51: m.cs = 51; goto _test_eof
|
|
_test_eof52: m.cs = 52; goto _test_eof
|
|
_test_eof53: m.cs = 53; goto _test_eof
|
|
_test_eof288: m.cs = 288; goto _test_eof
|
|
_test_eof54: m.cs = 54; goto _test_eof
|
|
_test_eof289: m.cs = 289; goto _test_eof
|
|
_test_eof55: m.cs = 55; goto _test_eof
|
|
_test_eof290: m.cs = 290; goto _test_eof
|
|
_test_eof291: m.cs = 291; goto _test_eof
|
|
_test_eof292: m.cs = 292; goto _test_eof
|
|
_test_eof293: m.cs = 293; goto _test_eof
|
|
_test_eof294: m.cs = 294; goto _test_eof
|
|
_test_eof295: m.cs = 295; goto _test_eof
|
|
_test_eof296: m.cs = 296; goto _test_eof
|
|
_test_eof297: m.cs = 297; goto _test_eof
|
|
_test_eof298: m.cs = 298; goto _test_eof
|
|
_test_eof56: m.cs = 56; goto _test_eof
|
|
_test_eof57: m.cs = 57; goto _test_eof
|
|
_test_eof58: m.cs = 58; goto _test_eof
|
|
_test_eof299: m.cs = 299; goto _test_eof
|
|
_test_eof59: m.cs = 59; goto _test_eof
|
|
_test_eof60: m.cs = 60; goto _test_eof
|
|
_test_eof61: m.cs = 61; goto _test_eof
|
|
_test_eof300: m.cs = 300; goto _test_eof
|
|
_test_eof62: m.cs = 62; goto _test_eof
|
|
_test_eof63: m.cs = 63; goto _test_eof
|
|
_test_eof301: m.cs = 301; goto _test_eof
|
|
_test_eof302: m.cs = 302; goto _test_eof
|
|
_test_eof64: m.cs = 64; goto _test_eof
|
|
_test_eof65: m.cs = 65; goto _test_eof
|
|
_test_eof66: m.cs = 66; goto _test_eof
|
|
_test_eof303: m.cs = 303; goto _test_eof
|
|
_test_eof67: m.cs = 67; goto _test_eof
|
|
_test_eof68: m.cs = 68; goto _test_eof
|
|
_test_eof304: m.cs = 304; goto _test_eof
|
|
_test_eof305: m.cs = 305; goto _test_eof
|
|
_test_eof306: m.cs = 306; goto _test_eof
|
|
_test_eof307: m.cs = 307; goto _test_eof
|
|
_test_eof308: m.cs = 308; goto _test_eof
|
|
_test_eof309: m.cs = 309; goto _test_eof
|
|
_test_eof310: m.cs = 310; goto _test_eof
|
|
_test_eof311: m.cs = 311; goto _test_eof
|
|
_test_eof312: m.cs = 312; goto _test_eof
|
|
_test_eof69: m.cs = 69; goto _test_eof
|
|
_test_eof70: m.cs = 70; goto _test_eof
|
|
_test_eof71: m.cs = 71; goto _test_eof
|
|
_test_eof313: m.cs = 313; goto _test_eof
|
|
_test_eof72: m.cs = 72; goto _test_eof
|
|
_test_eof73: m.cs = 73; goto _test_eof
|
|
_test_eof74: m.cs = 74; goto _test_eof
|
|
_test_eof314: m.cs = 314; goto _test_eof
|
|
_test_eof75: m.cs = 75; goto _test_eof
|
|
_test_eof76: m.cs = 76; goto _test_eof
|
|
_test_eof315: m.cs = 315; goto _test_eof
|
|
_test_eof316: m.cs = 316; goto _test_eof
|
|
_test_eof77: m.cs = 77; goto _test_eof
|
|
_test_eof78: m.cs = 78; goto _test_eof
|
|
_test_eof79: m.cs = 79; goto _test_eof
|
|
_test_eof80: m.cs = 80; goto _test_eof
|
|
_test_eof81: m.cs = 81; goto _test_eof
|
|
_test_eof82: m.cs = 82; goto _test_eof
|
|
_test_eof317: m.cs = 317; goto _test_eof
|
|
_test_eof318: m.cs = 318; goto _test_eof
|
|
_test_eof319: m.cs = 319; goto _test_eof
|
|
_test_eof320: m.cs = 320; goto _test_eof
|
|
_test_eof83: m.cs = 83; goto _test_eof
|
|
_test_eof321: m.cs = 321; goto _test_eof
|
|
_test_eof322: m.cs = 322; goto _test_eof
|
|
_test_eof323: m.cs = 323; goto _test_eof
|
|
_test_eof324: m.cs = 324; goto _test_eof
|
|
_test_eof84: m.cs = 84; goto _test_eof
|
|
_test_eof325: m.cs = 325; goto _test_eof
|
|
_test_eof326: m.cs = 326; goto _test_eof
|
|
_test_eof327: m.cs = 327; goto _test_eof
|
|
_test_eof328: m.cs = 328; goto _test_eof
|
|
_test_eof329: m.cs = 329; goto _test_eof
|
|
_test_eof330: m.cs = 330; goto _test_eof
|
|
_test_eof331: m.cs = 331; goto _test_eof
|
|
_test_eof332: m.cs = 332; goto _test_eof
|
|
_test_eof333: m.cs = 333; goto _test_eof
|
|
_test_eof334: m.cs = 334; goto _test_eof
|
|
_test_eof335: m.cs = 335; goto _test_eof
|
|
_test_eof336: m.cs = 336; goto _test_eof
|
|
_test_eof337: m.cs = 337; goto _test_eof
|
|
_test_eof338: m.cs = 338; goto _test_eof
|
|
_test_eof339: m.cs = 339; goto _test_eof
|
|
_test_eof340: m.cs = 340; goto _test_eof
|
|
_test_eof341: m.cs = 341; goto _test_eof
|
|
_test_eof342: m.cs = 342; goto _test_eof
|
|
_test_eof85: m.cs = 85; goto _test_eof
|
|
_test_eof86: m.cs = 86; goto _test_eof
|
|
_test_eof87: m.cs = 87; goto _test_eof
|
|
_test_eof88: m.cs = 88; goto _test_eof
|
|
_test_eof89: m.cs = 89; goto _test_eof
|
|
_test_eof90: m.cs = 90; goto _test_eof
|
|
_test_eof91: m.cs = 91; goto _test_eof
|
|
_test_eof92: m.cs = 92; goto _test_eof
|
|
_test_eof93: m.cs = 93; goto _test_eof
|
|
_test_eof94: m.cs = 94; goto _test_eof
|
|
_test_eof95: m.cs = 95; goto _test_eof
|
|
_test_eof96: m.cs = 96; goto _test_eof
|
|
_test_eof97: m.cs = 97; goto _test_eof
|
|
_test_eof343: m.cs = 343; goto _test_eof
|
|
_test_eof344: m.cs = 344; goto _test_eof
|
|
_test_eof98: m.cs = 98; goto _test_eof
|
|
_test_eof345: m.cs = 345; goto _test_eof
|
|
_test_eof346: m.cs = 346; goto _test_eof
|
|
_test_eof347: m.cs = 347; goto _test_eof
|
|
_test_eof348: m.cs = 348; goto _test_eof
|
|
_test_eof349: m.cs = 349; goto _test_eof
|
|
_test_eof350: m.cs = 350; goto _test_eof
|
|
_test_eof351: m.cs = 351; goto _test_eof
|
|
_test_eof352: m.cs = 352; goto _test_eof
|
|
_test_eof353: m.cs = 353; goto _test_eof
|
|
_test_eof354: m.cs = 354; goto _test_eof
|
|
_test_eof355: m.cs = 355; goto _test_eof
|
|
_test_eof356: m.cs = 356; goto _test_eof
|
|
_test_eof357: m.cs = 357; goto _test_eof
|
|
_test_eof358: m.cs = 358; goto _test_eof
|
|
_test_eof359: m.cs = 359; goto _test_eof
|
|
_test_eof360: m.cs = 360; goto _test_eof
|
|
_test_eof361: m.cs = 361; goto _test_eof
|
|
_test_eof362: m.cs = 362; goto _test_eof
|
|
_test_eof363: m.cs = 363; goto _test_eof
|
|
_test_eof364: m.cs = 364; goto _test_eof
|
|
_test_eof99: m.cs = 99; goto _test_eof
|
|
_test_eof100: m.cs = 100; goto _test_eof
|
|
_test_eof365: m.cs = 365; goto _test_eof
|
|
_test_eof366: m.cs = 366; goto _test_eof
|
|
_test_eof101: m.cs = 101; goto _test_eof
|
|
_test_eof367: m.cs = 367; goto _test_eof
|
|
_test_eof368: m.cs = 368; goto _test_eof
|
|
_test_eof369: m.cs = 369; goto _test_eof
|
|
_test_eof370: m.cs = 370; goto _test_eof
|
|
_test_eof371: m.cs = 371; goto _test_eof
|
|
_test_eof372: m.cs = 372; goto _test_eof
|
|
_test_eof373: m.cs = 373; goto _test_eof
|
|
_test_eof374: m.cs = 374; goto _test_eof
|
|
_test_eof375: m.cs = 375; goto _test_eof
|
|
_test_eof376: m.cs = 376; goto _test_eof
|
|
_test_eof377: m.cs = 377; goto _test_eof
|
|
_test_eof378: m.cs = 378; goto _test_eof
|
|
_test_eof379: m.cs = 379; goto _test_eof
|
|
_test_eof380: m.cs = 380; goto _test_eof
|
|
_test_eof381: m.cs = 381; goto _test_eof
|
|
_test_eof382: m.cs = 382; goto _test_eof
|
|
_test_eof383: m.cs = 383; goto _test_eof
|
|
_test_eof384: m.cs = 384; goto _test_eof
|
|
_test_eof385: m.cs = 385; goto _test_eof
|
|
_test_eof386: m.cs = 386; goto _test_eof
|
|
_test_eof102: m.cs = 102; goto _test_eof
|
|
_test_eof387: m.cs = 387; goto _test_eof
|
|
_test_eof388: m.cs = 388; goto _test_eof
|
|
_test_eof103: m.cs = 103; goto _test_eof
|
|
_test_eof104: m.cs = 104; goto _test_eof
|
|
_test_eof105: m.cs = 105; goto _test_eof
|
|
_test_eof106: m.cs = 106; goto _test_eof
|
|
_test_eof107: m.cs = 107; goto _test_eof
|
|
_test_eof389: m.cs = 389; goto _test_eof
|
|
_test_eof108: m.cs = 108; goto _test_eof
|
|
_test_eof109: m.cs = 109; goto _test_eof
|
|
_test_eof390: m.cs = 390; goto _test_eof
|
|
_test_eof391: m.cs = 391; goto _test_eof
|
|
_test_eof392: m.cs = 392; goto _test_eof
|
|
_test_eof393: m.cs = 393; goto _test_eof
|
|
_test_eof394: m.cs = 394; goto _test_eof
|
|
_test_eof395: m.cs = 395; goto _test_eof
|
|
_test_eof396: m.cs = 396; goto _test_eof
|
|
_test_eof397: m.cs = 397; goto _test_eof
|
|
_test_eof398: m.cs = 398; goto _test_eof
|
|
_test_eof110: m.cs = 110; goto _test_eof
|
|
_test_eof111: m.cs = 111; goto _test_eof
|
|
_test_eof112: m.cs = 112; goto _test_eof
|
|
_test_eof399: m.cs = 399; goto _test_eof
|
|
_test_eof113: m.cs = 113; goto _test_eof
|
|
_test_eof114: m.cs = 114; goto _test_eof
|
|
_test_eof115: m.cs = 115; goto _test_eof
|
|
_test_eof400: m.cs = 400; goto _test_eof
|
|
_test_eof116: m.cs = 116; goto _test_eof
|
|
_test_eof117: m.cs = 117; goto _test_eof
|
|
_test_eof401: m.cs = 401; goto _test_eof
|
|
_test_eof402: m.cs = 402; goto _test_eof
|
|
_test_eof118: m.cs = 118; goto _test_eof
|
|
_test_eof119: m.cs = 119; goto _test_eof
|
|
_test_eof120: m.cs = 120; goto _test_eof
|
|
_test_eof121: m.cs = 121; goto _test_eof
|
|
_test_eof122: m.cs = 122; goto _test_eof
|
|
_test_eof123: m.cs = 123; goto _test_eof
|
|
_test_eof124: m.cs = 124; goto _test_eof
|
|
_test_eof125: m.cs = 125; goto _test_eof
|
|
_test_eof126: m.cs = 126; goto _test_eof
|
|
_test_eof127: m.cs = 127; goto _test_eof
|
|
_test_eof128: m.cs = 128; goto _test_eof
|
|
_test_eof129: m.cs = 129; goto _test_eof
|
|
_test_eof403: m.cs = 403; goto _test_eof
|
|
_test_eof404: m.cs = 404; goto _test_eof
|
|
_test_eof405: m.cs = 405; goto _test_eof
|
|
_test_eof130: m.cs = 130; goto _test_eof
|
|
_test_eof406: m.cs = 406; goto _test_eof
|
|
_test_eof407: m.cs = 407; goto _test_eof
|
|
_test_eof408: m.cs = 408; goto _test_eof
|
|
_test_eof409: m.cs = 409; goto _test_eof
|
|
_test_eof410: m.cs = 410; goto _test_eof
|
|
_test_eof411: m.cs = 411; goto _test_eof
|
|
_test_eof412: m.cs = 412; goto _test_eof
|
|
_test_eof413: m.cs = 413; goto _test_eof
|
|
_test_eof414: m.cs = 414; goto _test_eof
|
|
_test_eof415: m.cs = 415; goto _test_eof
|
|
_test_eof416: m.cs = 416; goto _test_eof
|
|
_test_eof417: m.cs = 417; goto _test_eof
|
|
_test_eof418: m.cs = 418; goto _test_eof
|
|
_test_eof419: m.cs = 419; goto _test_eof
|
|
_test_eof420: m.cs = 420; goto _test_eof
|
|
_test_eof421: m.cs = 421; goto _test_eof
|
|
_test_eof422: m.cs = 422; goto _test_eof
|
|
_test_eof423: m.cs = 423; goto _test_eof
|
|
_test_eof424: m.cs = 424; goto _test_eof
|
|
_test_eof425: m.cs = 425; goto _test_eof
|
|
_test_eof426: m.cs = 426; goto _test_eof
|
|
_test_eof427: m.cs = 427; goto _test_eof
|
|
_test_eof131: m.cs = 131; goto _test_eof
|
|
_test_eof428: m.cs = 428; goto _test_eof
|
|
_test_eof429: m.cs = 429; goto _test_eof
|
|
_test_eof430: m.cs = 430; goto _test_eof
|
|
_test_eof431: m.cs = 431; goto _test_eof
|
|
_test_eof132: m.cs = 132; goto _test_eof
|
|
_test_eof432: m.cs = 432; goto _test_eof
|
|
_test_eof433: m.cs = 433; goto _test_eof
|
|
_test_eof434: m.cs = 434; goto _test_eof
|
|
_test_eof435: m.cs = 435; goto _test_eof
|
|
_test_eof436: m.cs = 436; goto _test_eof
|
|
_test_eof437: m.cs = 437; goto _test_eof
|
|
_test_eof438: m.cs = 438; goto _test_eof
|
|
_test_eof439: m.cs = 439; goto _test_eof
|
|
_test_eof440: m.cs = 440; goto _test_eof
|
|
_test_eof441: m.cs = 441; goto _test_eof
|
|
_test_eof442: m.cs = 442; goto _test_eof
|
|
_test_eof443: m.cs = 443; goto _test_eof
|
|
_test_eof444: m.cs = 444; goto _test_eof
|
|
_test_eof445: m.cs = 445; goto _test_eof
|
|
_test_eof446: m.cs = 446; goto _test_eof
|
|
_test_eof447: m.cs = 447; goto _test_eof
|
|
_test_eof448: m.cs = 448; goto _test_eof
|
|
_test_eof449: m.cs = 449; goto _test_eof
|
|
_test_eof450: m.cs = 450; goto _test_eof
|
|
_test_eof451: m.cs = 451; goto _test_eof
|
|
_test_eof133: m.cs = 133; goto _test_eof
|
|
_test_eof134: m.cs = 134; goto _test_eof
|
|
_test_eof135: m.cs = 135; goto _test_eof
|
|
_test_eof452: m.cs = 452; goto _test_eof
|
|
_test_eof453: m.cs = 453; goto _test_eof
|
|
_test_eof136: m.cs = 136; goto _test_eof
|
|
_test_eof454: m.cs = 454; goto _test_eof
|
|
_test_eof455: m.cs = 455; goto _test_eof
|
|
_test_eof456: m.cs = 456; goto _test_eof
|
|
_test_eof457: m.cs = 457; goto _test_eof
|
|
_test_eof458: m.cs = 458; goto _test_eof
|
|
_test_eof459: m.cs = 459; goto _test_eof
|
|
_test_eof460: m.cs = 460; goto _test_eof
|
|
_test_eof461: m.cs = 461; goto _test_eof
|
|
_test_eof462: m.cs = 462; goto _test_eof
|
|
_test_eof463: m.cs = 463; goto _test_eof
|
|
_test_eof464: m.cs = 464; goto _test_eof
|
|
_test_eof465: m.cs = 465; goto _test_eof
|
|
_test_eof466: m.cs = 466; goto _test_eof
|
|
_test_eof467: m.cs = 467; goto _test_eof
|
|
_test_eof468: m.cs = 468; goto _test_eof
|
|
_test_eof469: m.cs = 469; goto _test_eof
|
|
_test_eof470: m.cs = 470; goto _test_eof
|
|
_test_eof471: m.cs = 471; goto _test_eof
|
|
_test_eof472: m.cs = 472; goto _test_eof
|
|
_test_eof473: m.cs = 473; goto _test_eof
|
|
_test_eof137: m.cs = 137; goto _test_eof
|
|
_test_eof474: m.cs = 474; goto _test_eof
|
|
_test_eof475: m.cs = 475; goto _test_eof
|
|
_test_eof476: m.cs = 476; goto _test_eof
|
|
_test_eof138: m.cs = 138; goto _test_eof
|
|
_test_eof477: m.cs = 477; goto _test_eof
|
|
_test_eof478: m.cs = 478; goto _test_eof
|
|
_test_eof479: m.cs = 479; goto _test_eof
|
|
_test_eof480: m.cs = 480; goto _test_eof
|
|
_test_eof481: m.cs = 481; goto _test_eof
|
|
_test_eof482: m.cs = 482; goto _test_eof
|
|
_test_eof483: m.cs = 483; goto _test_eof
|
|
_test_eof484: m.cs = 484; goto _test_eof
|
|
_test_eof485: m.cs = 485; goto _test_eof
|
|
_test_eof486: m.cs = 486; goto _test_eof
|
|
_test_eof487: m.cs = 487; goto _test_eof
|
|
_test_eof488: m.cs = 488; goto _test_eof
|
|
_test_eof489: m.cs = 489; goto _test_eof
|
|
_test_eof490: m.cs = 490; goto _test_eof
|
|
_test_eof491: m.cs = 491; goto _test_eof
|
|
_test_eof492: m.cs = 492; goto _test_eof
|
|
_test_eof493: m.cs = 493; goto _test_eof
|
|
_test_eof494: m.cs = 494; goto _test_eof
|
|
_test_eof495: m.cs = 495; goto _test_eof
|
|
_test_eof496: m.cs = 496; goto _test_eof
|
|
_test_eof497: m.cs = 497; goto _test_eof
|
|
_test_eof498: m.cs = 498; goto _test_eof
|
|
_test_eof139: m.cs = 139; goto _test_eof
|
|
_test_eof499: m.cs = 499; goto _test_eof
|
|
_test_eof500: m.cs = 500; goto _test_eof
|
|
_test_eof501: m.cs = 501; goto _test_eof
|
|
_test_eof502: m.cs = 502; goto _test_eof
|
|
_test_eof503: m.cs = 503; goto _test_eof
|
|
_test_eof504: m.cs = 504; goto _test_eof
|
|
_test_eof505: m.cs = 505; goto _test_eof
|
|
_test_eof506: m.cs = 506; goto _test_eof
|
|
_test_eof507: m.cs = 507; goto _test_eof
|
|
_test_eof508: m.cs = 508; goto _test_eof
|
|
_test_eof509: m.cs = 509; goto _test_eof
|
|
_test_eof510: m.cs = 510; goto _test_eof
|
|
_test_eof511: m.cs = 511; goto _test_eof
|
|
_test_eof512: m.cs = 512; goto _test_eof
|
|
_test_eof513: m.cs = 513; goto _test_eof
|
|
_test_eof514: m.cs = 514; goto _test_eof
|
|
_test_eof515: m.cs = 515; goto _test_eof
|
|
_test_eof516: m.cs = 516; goto _test_eof
|
|
_test_eof517: m.cs = 517; goto _test_eof
|
|
_test_eof518: m.cs = 518; goto _test_eof
|
|
_test_eof519: m.cs = 519; goto _test_eof
|
|
_test_eof520: m.cs = 520; goto _test_eof
|
|
_test_eof140: m.cs = 140; goto _test_eof
|
|
_test_eof141: m.cs = 141; goto _test_eof
|
|
_test_eof142: m.cs = 142; goto _test_eof
|
|
_test_eof143: m.cs = 143; goto _test_eof
|
|
_test_eof144: m.cs = 144; goto _test_eof
|
|
_test_eof521: m.cs = 521; goto _test_eof
|
|
_test_eof145: m.cs = 145; goto _test_eof
|
|
_test_eof522: m.cs = 522; goto _test_eof
|
|
_test_eof146: m.cs = 146; goto _test_eof
|
|
_test_eof523: m.cs = 523; goto _test_eof
|
|
_test_eof524: m.cs = 524; goto _test_eof
|
|
_test_eof525: m.cs = 525; goto _test_eof
|
|
_test_eof526: m.cs = 526; goto _test_eof
|
|
_test_eof527: m.cs = 527; goto _test_eof
|
|
_test_eof528: m.cs = 528; goto _test_eof
|
|
_test_eof529: m.cs = 529; goto _test_eof
|
|
_test_eof530: m.cs = 530; goto _test_eof
|
|
_test_eof531: m.cs = 531; goto _test_eof
|
|
_test_eof147: m.cs = 147; goto _test_eof
|
|
_test_eof148: m.cs = 148; goto _test_eof
|
|
_test_eof149: m.cs = 149; goto _test_eof
|
|
_test_eof532: m.cs = 532; goto _test_eof
|
|
_test_eof150: m.cs = 150; goto _test_eof
|
|
_test_eof151: m.cs = 151; goto _test_eof
|
|
_test_eof152: m.cs = 152; goto _test_eof
|
|
_test_eof533: m.cs = 533; goto _test_eof
|
|
_test_eof153: m.cs = 153; goto _test_eof
|
|
_test_eof154: m.cs = 154; goto _test_eof
|
|
_test_eof534: m.cs = 534; goto _test_eof
|
|
_test_eof535: m.cs = 535; goto _test_eof
|
|
_test_eof155: m.cs = 155; goto _test_eof
|
|
_test_eof156: m.cs = 156; goto _test_eof
|
|
_test_eof157: m.cs = 157; goto _test_eof
|
|
_test_eof536: m.cs = 536; goto _test_eof
|
|
_test_eof537: m.cs = 537; goto _test_eof
|
|
_test_eof538: m.cs = 538; goto _test_eof
|
|
_test_eof158: m.cs = 158; goto _test_eof
|
|
_test_eof539: m.cs = 539; goto _test_eof
|
|
_test_eof540: m.cs = 540; goto _test_eof
|
|
_test_eof541: m.cs = 541; goto _test_eof
|
|
_test_eof542: m.cs = 542; goto _test_eof
|
|
_test_eof543: m.cs = 543; goto _test_eof
|
|
_test_eof544: m.cs = 544; goto _test_eof
|
|
_test_eof545: m.cs = 545; goto _test_eof
|
|
_test_eof546: m.cs = 546; goto _test_eof
|
|
_test_eof547: m.cs = 547; goto _test_eof
|
|
_test_eof548: m.cs = 548; goto _test_eof
|
|
_test_eof549: m.cs = 549; goto _test_eof
|
|
_test_eof550: m.cs = 550; goto _test_eof
|
|
_test_eof551: m.cs = 551; goto _test_eof
|
|
_test_eof552: m.cs = 552; goto _test_eof
|
|
_test_eof553: m.cs = 553; goto _test_eof
|
|
_test_eof554: m.cs = 554; goto _test_eof
|
|
_test_eof555: m.cs = 555; goto _test_eof
|
|
_test_eof556: m.cs = 556; goto _test_eof
|
|
_test_eof557: m.cs = 557; goto _test_eof
|
|
_test_eof558: m.cs = 558; goto _test_eof
|
|
_test_eof159: m.cs = 159; goto _test_eof
|
|
_test_eof160: m.cs = 160; goto _test_eof
|
|
_test_eof559: m.cs = 559; goto _test_eof
|
|
_test_eof560: m.cs = 560; goto _test_eof
|
|
_test_eof561: m.cs = 561; goto _test_eof
|
|
_test_eof562: m.cs = 562; goto _test_eof
|
|
_test_eof563: m.cs = 563; goto _test_eof
|
|
_test_eof564: m.cs = 564; goto _test_eof
|
|
_test_eof565: m.cs = 565; goto _test_eof
|
|
_test_eof566: m.cs = 566; goto _test_eof
|
|
_test_eof567: m.cs = 567; goto _test_eof
|
|
_test_eof161: m.cs = 161; goto _test_eof
|
|
_test_eof162: m.cs = 162; goto _test_eof
|
|
_test_eof163: m.cs = 163; goto _test_eof
|
|
_test_eof568: m.cs = 568; goto _test_eof
|
|
_test_eof164: m.cs = 164; goto _test_eof
|
|
_test_eof165: m.cs = 165; goto _test_eof
|
|
_test_eof166: m.cs = 166; goto _test_eof
|
|
_test_eof569: m.cs = 569; goto _test_eof
|
|
_test_eof167: m.cs = 167; goto _test_eof
|
|
_test_eof168: m.cs = 168; goto _test_eof
|
|
_test_eof570: m.cs = 570; goto _test_eof
|
|
_test_eof571: m.cs = 571; goto _test_eof
|
|
_test_eof169: m.cs = 169; goto _test_eof
|
|
_test_eof170: m.cs = 170; goto _test_eof
|
|
_test_eof171: m.cs = 171; goto _test_eof
|
|
_test_eof172: m.cs = 172; goto _test_eof
|
|
_test_eof572: m.cs = 572; goto _test_eof
|
|
_test_eof173: m.cs = 173; goto _test_eof
|
|
_test_eof573: m.cs = 573; goto _test_eof
|
|
_test_eof574: m.cs = 574; goto _test_eof
|
|
_test_eof174: m.cs = 174; goto _test_eof
|
|
_test_eof575: m.cs = 575; goto _test_eof
|
|
_test_eof576: m.cs = 576; goto _test_eof
|
|
_test_eof577: m.cs = 577; goto _test_eof
|
|
_test_eof578: m.cs = 578; goto _test_eof
|
|
_test_eof579: m.cs = 579; goto _test_eof
|
|
_test_eof580: m.cs = 580; goto _test_eof
|
|
_test_eof581: m.cs = 581; goto _test_eof
|
|
_test_eof582: m.cs = 582; goto _test_eof
|
|
_test_eof583: m.cs = 583; goto _test_eof
|
|
_test_eof175: m.cs = 175; goto _test_eof
|
|
_test_eof176: m.cs = 176; goto _test_eof
|
|
_test_eof177: m.cs = 177; goto _test_eof
|
|
_test_eof584: m.cs = 584; goto _test_eof
|
|
_test_eof178: m.cs = 178; goto _test_eof
|
|
_test_eof179: m.cs = 179; goto _test_eof
|
|
_test_eof180: m.cs = 180; goto _test_eof
|
|
_test_eof585: m.cs = 585; goto _test_eof
|
|
_test_eof181: m.cs = 181; goto _test_eof
|
|
_test_eof182: m.cs = 182; goto _test_eof
|
|
_test_eof586: m.cs = 586; goto _test_eof
|
|
_test_eof587: m.cs = 587; goto _test_eof
|
|
_test_eof183: m.cs = 183; goto _test_eof
|
|
_test_eof184: m.cs = 184; goto _test_eof
|
|
_test_eof588: m.cs = 588; goto _test_eof
|
|
_test_eof185: m.cs = 185; goto _test_eof
|
|
_test_eof186: m.cs = 186; goto _test_eof
|
|
_test_eof589: m.cs = 589; goto _test_eof
|
|
_test_eof590: m.cs = 590; goto _test_eof
|
|
_test_eof591: m.cs = 591; goto _test_eof
|
|
_test_eof592: m.cs = 592; goto _test_eof
|
|
_test_eof593: m.cs = 593; goto _test_eof
|
|
_test_eof594: m.cs = 594; goto _test_eof
|
|
_test_eof595: m.cs = 595; goto _test_eof
|
|
_test_eof596: m.cs = 596; goto _test_eof
|
|
_test_eof187: m.cs = 187; goto _test_eof
|
|
_test_eof188: m.cs = 188; goto _test_eof
|
|
_test_eof189: m.cs = 189; goto _test_eof
|
|
_test_eof597: m.cs = 597; goto _test_eof
|
|
_test_eof190: m.cs = 190; goto _test_eof
|
|
_test_eof191: m.cs = 191; goto _test_eof
|
|
_test_eof192: m.cs = 192; goto _test_eof
|
|
_test_eof598: m.cs = 598; goto _test_eof
|
|
_test_eof193: m.cs = 193; goto _test_eof
|
|
_test_eof194: m.cs = 194; goto _test_eof
|
|
_test_eof599: m.cs = 599; goto _test_eof
|
|
_test_eof600: m.cs = 600; goto _test_eof
|
|
_test_eof195: m.cs = 195; goto _test_eof
|
|
_test_eof601: m.cs = 601; goto _test_eof
|
|
_test_eof196: m.cs = 196; goto _test_eof
|
|
_test_eof602: m.cs = 602; goto _test_eof
|
|
_test_eof603: m.cs = 603; goto _test_eof
|
|
_test_eof197: m.cs = 197; goto _test_eof
|
|
_test_eof198: m.cs = 198; goto _test_eof
|
|
_test_eof199: m.cs = 199; goto _test_eof
|
|
_test_eof604: m.cs = 604; goto _test_eof
|
|
_test_eof605: m.cs = 605; goto _test_eof
|
|
_test_eof606: m.cs = 606; goto _test_eof
|
|
_test_eof200: m.cs = 200; goto _test_eof
|
|
_test_eof201: m.cs = 201; goto _test_eof
|
|
_test_eof202: m.cs = 202; goto _test_eof
|
|
_test_eof607: m.cs = 607; goto _test_eof
|
|
_test_eof203: m.cs = 203; goto _test_eof
|
|
_test_eof204: m.cs = 204; goto _test_eof
|
|
_test_eof205: m.cs = 205; goto _test_eof
|
|
|
|
_test_eof: {}
|
|
if ( m.p) == ( m.eof) {
|
|
switch m.cs {
|
|
case 206, 207, 208, 210, 243, 244, 246, 265, 266, 268, 287, 289, 317, 318, 319, 320, 322, 323, 324, 343, 344, 346, 365, 366, 368, 387, 388, 403, 404, 405, 407, 426, 427, 429, 430, 431, 450, 451, 452, 453, 455, 474, 475, 476, 478, 497, 498, 500, 501, 502, 522, 537, 538, 540, 573, 602, 603, 605, 606:
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 1, 133:
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 90, 91, 92, 93, 94, 129, 132, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194:
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 28, 29, 30, 36, 37, 200, 201, 202, 203, 204:
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 8:
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 604:
|
|
//line plugins/parsers/influx/machine.go.rl:72
|
|
|
|
m.handler.SetMeasurement(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 607:
|
|
//line plugins/parsers/influx/machine.go.rl:80
|
|
|
|
m.handler.AddTag(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 233, 293, 307, 393, 526, 562, 578, 591:
|
|
//line plugins/parsers/influx/machine.go.rl:88
|
|
|
|
m.handler.AddInt(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 236, 296, 310, 396, 529, 565, 581, 594:
|
|
//line plugins/parsers/influx/machine.go.rl:92
|
|
|
|
m.handler.AddUint(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 229, 230, 231, 232, 234, 235, 237, 288, 290, 291, 292, 294, 295, 297, 303, 304, 305, 306, 308, 309, 311, 389, 390, 391, 392, 394, 395, 397, 521, 523, 524, 525, 527, 528, 530, 536, 559, 560, 561, 563, 564, 566, 572, 574, 575, 576, 577, 579, 580, 582, 588, 589, 590, 592, 593, 595:
|
|
//line plugins/parsers/influx/machine.go.rl:96
|
|
|
|
m.handler.AddFloat(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 238, 239, 240, 241, 242, 298, 299, 300, 301, 302, 312, 313, 314, 315, 316, 398, 399, 400, 401, 402, 531, 532, 533, 534, 535, 567, 568, 569, 570, 571, 583, 584, 585, 586, 587, 596, 597, 598, 599, 600:
|
|
//line plugins/parsers/influx/machine.go.rl:100
|
|
|
|
m.handler.AddBool(key, m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 209, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 267, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 321, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 345, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 406, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 428, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 454, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 477, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 499, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 539, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558:
|
|
//line plugins/parsers/influx/machine.go.rl:108
|
|
|
|
m.handler.SetTimestamp(m.text())
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:22
|
|
|
|
yield = true
|
|
m.cs = 196;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 43, 45, 83, 130, 131, 138:
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 31, 32, 33, 34, 35, 85, 86, 87, 88, 89, 95, 96, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 134, 135, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169:
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 101:
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
case 98, 136, 139, 158:
|
|
//line plugins/parsers/influx/machine.go.rl:42
|
|
|
|
m.err = ErrTagParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:35
|
|
|
|
m.err = ErrFieldParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:49
|
|
|
|
m.err = ErrTimestampParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:56
|
|
|
|
m.err = ErrParse
|
|
( m.p)--
|
|
|
|
m.cs = 195;
|
|
{( m.p)++; m.cs = 0; goto _out }
|
|
|
|
//line plugins/parsers/influx/machine.go:23507
|
|
}
|
|
}
|
|
|
|
_out: {}
|
|
}
|
|
|
|
//line plugins/parsers/influx/machine.go.rl:308
|
|
|
|
// Even if there was an error, return true. On the next call to this
|
|
// function we will attempt to scan to the next line of input and recover.
|
|
if m.err != nil {
|
|
return true
|
|
}
|
|
|
|
// Don't check the error state in the case that we just yielded, because
|
|
// the yield indicates we just completed parsing a line.
|
|
if !yield && m.cs == LineProtocol_error {
|
|
m.err = ErrParse
|
|
return true
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// Err returns the error that occurred on the last call to ParseLine. If the
|
|
// result is nil, then the line was parsed successfully.
|
|
func (m *machine) Err() error {
|
|
return m.err
|
|
}
|
|
|
|
// Position returns the current position into the input.
|
|
func (m *machine) Position() int {
|
|
return m.p
|
|
}
|
|
|
|
func (m *machine) text() []byte {
|
|
return m.data[m.pb:m.p]
|
|
}
|