github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/apps/sys.monitor/site.main.src/src/i18n/en.js (about)

     1  /*
     2   * Copyright (c) 2022-present unTill Pro, Ltd.
     3   */
     4  
     5  import englishMessages from 'ra-language-english';
     6  
     7  const customEnglishMessages = {
     8      ...englishMessages,
     9      menu: {
    10          performance: 'Performance',
    11          resources: 'Resources',
    12          sysPerformance: 'System Performance',
    13          sysResources: 'System Resources',
    14          appPerformance: 'App Performance',
    15      },
    16      dashboard: {
    17          title: 'Dashboard',
    18          sysPerfOverview: 'System Performance Overview',
    19          sysResourcesOverview: 'System Resources Overview',
    20          applicationsOverview: 'Applications Overview',
    21      },
    22      charts: {
    23          cpuUsage: 'CPU Usage',
    24          memUsage: 'Memory Usage',
    25          diskUsage: 'Disk Usage',
    26          diskIO: 'Disk I/O',
    27          rps: 'RPS',
    28          iops: 'IOPS',
    29          statusCodes: 'Status Codes',
    30      },
    31      resourcesOverview: {
    32          node: 'Node',
    33          cpu: 'CPU',
    34          memory: 'Memory',
    35          totalMemory: 'Total Mem',
    36          disk: 'Disk',
    37          totalDisk: 'totalDisk',
    38          iops: 'IOPS',
    39      },
    40      appsOverview: {
    41          application: 'Application',
    42          version: 'Version',
    43          partitions: 'Partitions',
    44          uptime: 'Uptime',
    45          rps: 'RPS',
    46      },
    47      performanceOverview: {
    48          total503: 'Total 503',
    49      },
    50      appPerformance: {
    51          commandProcessor: 'Command Processor',
    52          queryProcessor: 'Query Processor',
    53          executionTime: 'Execution Time',
    54          cacheHits: 'Cache Hits',
    55          projectorsProgress: 'Projectors Overrun',
    56          projectorsProgressAtPartition: 'Projectors Overrun at Partition',
    57          partitionsBalance: 'Partitions Balance',
    58          projector: 'Projector',
    59          partition: 'App Partition',
    60          lag: 'Lag',
    61          storage: 'Storage',
    62          iops: 'IOPS',
    63          overall: 'Overall',
    64      },
    65      sysPerformance: {
    66          executionTime: 'Execution Time',
    67          cacheHits: 'Cache Hits',
    68          top5ByRt: 'Top 5 by request time',
    69          top5ByRps: 'Top 5 by RPS',
    70          bottom5ByCacheHits: 'Bottom 5 by cache hits',
    71          top5ByBatchSize: 'Top 5 by batch size',
    72          worstApps: 'Worst Apps'
    73      },
    74      common: {
    75          showDetails: 'Show Details',
    76          average: 'Average',
    77          showAll: 'Show all',
    78          avg: 'Avg',
    79      }
    80  };
    81  
    82  export default customEnglishMessages;