File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ export const DATA_CATEGORY_INFO = {
507
507
apiName : 'log_item' ,
508
508
plural : DataCategory . LOG_ITEM ,
509
509
displayName : 'log' ,
510
- titleName : t ( 'Logs ' ) ,
510
+ titleName : t ( 'Log Counts ' ) , // Only currently visible internally, this name should change if we expose this to users.
511
511
productName : t ( 'Logging' ) ,
512
512
uid : 23 ,
513
513
isBilledCategory : false ,
@@ -521,7 +521,7 @@ export const DATA_CATEGORY_INFO = {
521
521
apiName : 'log_byte' ,
522
522
plural : DataCategory . LOG_BYTE ,
523
523
displayName : 'log byte' ,
524
- titleName : t ( 'Logs Storage ' ) ,
524
+ titleName : t ( 'Logs' ) ,
525
525
productName : t ( 'Logging' ) ,
526
526
uid : 24 ,
527
527
isBilledCategory : false ,
Original file line number Diff line number Diff line change @@ -276,7 +276,10 @@ export class OrganizationStats extends Component<OrganizationStatsProps> {
276
276
if ( [ DataCategory . SEER_AUTOFIX , DataCategory . SEER_SCANNER ] . includes ( opt . value ) ) {
277
277
return organization . features . includes ( 'seer-billing' ) ;
278
278
}
279
- if ( [ DataCategory . LOG_BYTE , DataCategory . LOG_ITEM ] . includes ( opt . value ) ) {
279
+ if ( [ DataCategory . LOG_BYTE ] . includes ( opt . value ) ) {
280
+ return organization . features . includes ( 'ourlogs-enabled' ) ;
281
+ }
282
+ if ( [ DataCategory . LOG_ITEM ] . includes ( opt . value ) ) {
280
283
return organization . features . includes ( 'ourlogs-stats' ) ;
281
284
}
282
285
if (
You can’t perform that action at this time.
0 commit comments