@@ -248,6 +248,7 @@ export const DATA_CATEGORY_INFO = {
248
248
name : DataCategoryExact . ERROR ,
249
249
apiName : 'error' ,
250
250
plural : DataCategory . ERRORS ,
251
+ singular : 'error' ,
251
252
displayName : 'error' ,
252
253
titleName : t ( 'Errors' ) ,
253
254
productName : t ( 'Error Monitoring' ) ,
@@ -263,6 +264,7 @@ export const DATA_CATEGORY_INFO = {
263
264
name : DataCategoryExact . TRANSACTION ,
264
265
apiName : 'transaction' ,
265
266
plural : DataCategory . TRANSACTIONS ,
267
+ singular : 'transaction' ,
266
268
displayName : 'transaction' ,
267
269
titleName : t ( 'Transactions' ) ,
268
270
productName : t ( 'Performance Monitoring' ) ,
@@ -278,6 +280,7 @@ export const DATA_CATEGORY_INFO = {
278
280
name : DataCategoryExact . ATTACHMENT ,
279
281
apiName : 'attachment' ,
280
282
plural : DataCategory . ATTACHMENTS ,
283
+ singular : 'attachment' ,
281
284
displayName : 'attachment' ,
282
285
titleName : t ( 'Attachments' ) ,
283
286
productName : t ( 'Attachments' ) ,
@@ -294,6 +297,7 @@ export const DATA_CATEGORY_INFO = {
294
297
name : DataCategoryExact . PROFILE ,
295
298
apiName : 'profile' ,
296
299
plural : DataCategory . PROFILES ,
300
+ singular : 'profile' ,
297
301
displayName : 'profile' ,
298
302
titleName : t ( 'Profiles' ) ,
299
303
productName : t ( 'Continuous Profiling' ) ,
@@ -309,6 +313,7 @@ export const DATA_CATEGORY_INFO = {
309
313
name : DataCategoryExact . PROFILE_INDEXED ,
310
314
apiName : 'profileIndexed' ,
311
315
plural : DataCategory . PROFILES_INDEXED ,
316
+ singular : 'profileIndexed' ,
312
317
displayName : 'indexed profile' ,
313
318
titleName : t ( 'Indexed Profiles' ) ,
314
319
productName : t ( 'Continuous Profiling' ) ,
@@ -320,6 +325,7 @@ export const DATA_CATEGORY_INFO = {
320
325
name : DataCategoryExact . REPLAY ,
321
326
apiName : 'replay' ,
322
327
plural : DataCategory . REPLAYS ,
328
+ singular : 'replay' ,
323
329
displayName : 'replay' ,
324
330
titleName : t ( 'Session Replays' ) ,
325
331
productName : t ( 'Session Replay' ) ,
@@ -335,6 +341,7 @@ export const DATA_CATEGORY_INFO = {
335
341
name : DataCategoryExact . USER_REPORT_V2 ,
336
342
apiName : 'feedback' ,
337
343
plural : DataCategory . USER_REPORT_V2 ,
344
+ singular : 'feedback' ,
338
345
displayName : 'user feedback' ,
339
346
titleName : t ( 'User Feedback' ) ,
340
347
productName : t ( 'User Feedback' ) ,
@@ -350,6 +357,7 @@ export const DATA_CATEGORY_INFO = {
350
357
name : DataCategoryExact . TRANSACTION_PROCESSED ,
351
358
apiName : 'transactions' ,
352
359
plural : DataCategory . TRANSACTIONS_PROCESSED ,
360
+ singular : 'transactionProcessed' ,
353
361
displayName : 'transaction' ,
354
362
titleName : t ( 'Transactions' ) ,
355
363
productName : t ( 'Performance Monitoring' ) ,
@@ -364,6 +372,7 @@ export const DATA_CATEGORY_INFO = {
364
372
name : DataCategoryExact . TRANSACTION_INDEXED ,
365
373
apiName : 'transactionIndexed' ,
366
374
plural : DataCategory . TRANSACTIONS_INDEXED ,
375
+ singular : 'transactionIndexed' ,
367
376
displayName : 'indexed transaction' ,
368
377
titleName : t ( 'Indexed Transactions' ) ,
369
378
productName : t ( 'Performance Monitoring' ) ,
@@ -375,6 +384,7 @@ export const DATA_CATEGORY_INFO = {
375
384
name : DataCategoryExact . MONITOR ,
376
385
apiName : 'monitor' ,
377
386
plural : DataCategory . MONITOR ,
387
+ singular : 'monitor' ,
378
388
displayName : 'monitor check-in' ,
379
389
titleName : t ( 'Monitor Check-Ins' ) ,
380
390
productName : t ( 'Cron Monitoring' ) ,
@@ -389,6 +399,7 @@ export const DATA_CATEGORY_INFO = {
389
399
name : DataCategoryExact . SPAN ,
390
400
apiName : 'span' ,
391
401
plural : DataCategory . SPANS ,
402
+ singular : 'span' ,
392
403
displayName : 'span' ,
393
404
titleName : t ( 'Spans' ) , // TODO(DS Spans): Update name
394
405
productName : t ( 'Tracing' ) ,
@@ -404,6 +415,7 @@ export const DATA_CATEGORY_INFO = {
404
415
name : DataCategoryExact . MONITOR_SEAT ,
405
416
apiName : 'monitorSeat' ,
406
417
plural : DataCategory . MONITOR_SEATS ,
418
+ singular : 'monitorSeat' ,
407
419
displayName : 'cron monitor' ,
408
420
titleName : t ( 'Cron Monitors' ) ,
409
421
productName : t ( 'Cron Monitoring' ) ,
@@ -419,6 +431,7 @@ export const DATA_CATEGORY_INFO = {
419
431
name : DataCategoryExact . SPAN_INDEXED ,
420
432
apiName : 'span_indexed' ,
421
433
plural : DataCategory . SPANS_INDEXED ,
434
+ singular : 'spanIndexed' ,
422
435
displayName : 'stored span' ,
423
436
titleName : t ( 'Stored Spans' ) ,
424
437
productName : t ( 'Tracing' ) ,
@@ -431,6 +444,7 @@ export const DATA_CATEGORY_INFO = {
431
444
name : DataCategoryExact . PROFILE_DURATION ,
432
445
apiName : 'profile_duration' ,
433
446
plural : DataCategory . PROFILE_DURATION ,
447
+ singular : 'profileDuration' ,
434
448
displayName : 'continuous profile hour' ,
435
449
titleName : t ( 'Continuous Profile Hours' ) ,
436
450
productName : t ( 'Continuous Profiling' ) ,
@@ -447,6 +461,7 @@ export const DATA_CATEGORY_INFO = {
447
461
name : DataCategoryExact . PROFILE_CHUNK ,
448
462
apiName : 'profile_chunk' ,
449
463
plural : DataCategory . PROFILE_CHUNKS ,
464
+ singular : 'profileChunk' ,
450
465
displayName : 'profile chunk' ,
451
466
titleName : t ( 'Profile Chunks' ) ,
452
467
productName : t ( 'Continuous Profiling' ) ,
@@ -458,6 +473,7 @@ export const DATA_CATEGORY_INFO = {
458
473
name : DataCategoryExact . PROFILE_DURATION_UI ,
459
474
apiName : 'profile_duration_ui' ,
460
475
plural : DataCategory . PROFILE_DURATION_UI ,
476
+ singular : 'profileDurationUI' ,
461
477
displayName : 'UI profile hour' ,
462
478
titleName : t ( 'UI Profile Hours' ) ,
463
479
productName : t ( 'UI Profiling' ) ,
@@ -474,6 +490,7 @@ export const DATA_CATEGORY_INFO = {
474
490
name : DataCategoryExact . PROFILE_CHUNK_UI ,
475
491
apiName : 'profile_chunk_ui' ,
476
492
plural : DataCategory . PROFILE_CHUNKS_UI ,
493
+ singular : 'profileChunkUI' ,
477
494
displayName : 'UI profile chunk' ,
478
495
titleName : t ( 'UI Profile Chunks' ) ,
479
496
productName : t ( 'UI Profiling' ) ,
@@ -486,6 +503,7 @@ export const DATA_CATEGORY_INFO = {
486
503
name : DataCategoryExact . UPTIME ,
487
504
apiName : 'uptime' ,
488
505
plural : DataCategory . UPTIME ,
506
+ singular : 'uptime' ,
489
507
displayName : 'uptime monitor' ,
490
508
titleName : t ( 'Uptime Monitors' ) ,
491
509
productName : t ( 'Uptime Monitoring' ) ,
@@ -501,6 +519,7 @@ export const DATA_CATEGORY_INFO = {
501
519
name : DataCategoryExact . LOG_ITEM ,
502
520
apiName : 'log_item' ,
503
521
plural : DataCategory . LOG_ITEM ,
522
+ singular : 'logItem' ,
504
523
displayName : 'log' ,
505
524
titleName : t ( 'Log Counts' ) , // Only currently visible internally, this name should change if we expose this to users.
506
525
productName : t ( 'Logging' ) ,
@@ -515,6 +534,7 @@ export const DATA_CATEGORY_INFO = {
515
534
name : DataCategoryExact . LOG_BYTE ,
516
535
apiName : 'log_byte' ,
517
536
plural : DataCategory . LOG_BYTE ,
537
+ singular : 'logByte' ,
518
538
displayName : 'log byte' ,
519
539
titleName : t ( 'Logs' ) ,
520
540
productName : t ( 'Logging' ) ,
@@ -530,6 +550,7 @@ export const DATA_CATEGORY_INFO = {
530
550
name : DataCategoryExact . SEER_AUTOFIX ,
531
551
apiName : 'seer_autofix' ,
532
552
plural : DataCategory . SEER_AUTOFIX ,
553
+ singular : 'seerAutofix' ,
533
554
displayName : 'issue fix' ,
534
555
titleName : t ( 'Issue Fixes' ) ,
535
556
productName : t ( 'Seer' ) ,
@@ -544,6 +565,7 @@ export const DATA_CATEGORY_INFO = {
544
565
name : DataCategoryExact . SEER_SCANNER ,
545
566
apiName : 'seer_scanner' ,
546
567
plural : DataCategory . SEER_SCANNER ,
568
+ singular : 'seerScanner' ,
547
569
displayName : 'issue scan' ,
548
570
titleName : t ( 'Issue Scans' ) ,
549
571
productName : t ( 'Seer' ) ,
0 commit comments