You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BYTES_BINARY_PER_SECOND='Bytes Binary Per Second (KiB/s, MiB/s)',
45
+
BYTES_DECIMAL_PER_SECOND='Bytes Decimal Per Second (kB/s, MB/s)',
46
+
PACKETS_PER_SECOND='Packets Per Second',
47
+
MILISECONDS='Miliseconds',
48
+
SECONDS='Seconds',
49
+
PERCENTAGE='Percentage',
50
+
};
51
+
52
+
exportenumMetricsPageRefreshInterval{
53
+
REFRESH_OFF='Refresh off',
54
+
FIFTEEN_SECONDS='15 seconds',
55
+
THIRTY_SECONDS='30 seconds',
56
+
ONE_MINUTE='1 minute',
57
+
FIFTEEN_MINUTES='15 minutes',
58
+
ONE_HOUR='1 hour',
59
+
TWO_HOURS='2 hours',
60
+
ONE_DAY='1 day',
61
+
};
62
+
63
+
exportenumMetricsPagePredefinedQueries{
64
+
CPU_USAGE='CPU Usage',
65
+
MEMORY_USAGE='Memory Usage',
66
+
FILESYSTEM_USAGE='Filesystem Usage',
67
+
RECEIVE_BANDWIDTH='Receive bandwidth',
68
+
TRANSMIT_BANDWIDTH='Transmit bandwidth',
69
+
RATE_OF_RECEIVED_PACKETS='Rate of received packets',
70
+
RATE_OF_TRANSMITTED_PACKETS='Rate of transmitted packets',
71
+
RATE_OF_RECEIVED_PACKETS_DROPPED='Rate of received packets dropped',
72
+
RATE_OF_TRANSMITTED_PACKETS_DROPPED='Rate of transmitted packets dropped',
73
+
};
74
+
75
+
exportenumMetricsPageQueryInput{
76
+
EXPRESSION_PRESS_SHIFT_ENTER_FOR_NEWLINES='Expression (press Shift+Enter for newlines)',
77
+
INSERT_EXAMPLE_QUERY='sort_desc(sum(sum_over_time(ALERTS{alertstate="firing"}[24h])) by (alertname))',
78
+
VECTOR_QUERY='vector(1)',
79
+
CPU_USAGE='OpenShift_Metrics_QueryTable_sum(node_namespace_pod_container_container_cpu_usage_seconds_total_sum_irate) by (pod).csv',
80
+
MEMORY_USAGE='OpenShift_Metrics_QueryTable_sum(container_memory_working_set_bytes{container!=__}) by (pod).csv',
81
+
FILESYSTEM_USAGE='OpenShift_Metrics_QueryTable_topk(25, sort_desc(sum(pod_container_fs_usage_bytes_sum{container=__,pod!=__}) BY (pod, namespace))).csv',
82
+
RECEIVE_BANDWIDTH='OpenShift_Metrics_QueryTable_sum(irate(container_network_receive_bytes_total[2h])) by (pod).csv',
83
+
TRANSMIT_BANDWIDTH='OpenShift_Metrics_QueryTable_sum(irate(container_network_transmit_bytes_total[2h])) by (pod).csv',
84
+
RATE_OF_RECEIVED_PACKETS='OpenShift_Metrics_QueryTable_sum(irate(container_network_receive_packets_total[2h])) by (pod).csv',
85
+
RATE_OF_TRANSMITTED_PACKETS='OpenShift_Metrics_QueryTable_sum(irate(container_network_transmit_packets_total[2h])) by (pod).csv',
86
+
RATE_OF_RECEIVED_PACKETS_DROPPED='OpenShift_Metrics_QueryTable_sum(irate(container_network_receive_packets_dropped_total[2h])) by (pod).csv',
87
+
RATE_OF_TRANSMITTED_PACKETS_DROPPED='OpenShift_Metrics_QueryTable_sum(irate(container_network_transmit_packets_dropped_total[2h])) by (pod).csv',
88
+
}
89
+
90
+
exportenumMetricsPageActions{
91
+
ADD_QUERY='Add query',
92
+
DELETE_ALL_QUERIES='Delete all queries',
93
+
EXPAND_ALL_QUERY_TABLES='Expand all query tables',
94
+
COLLAPSE_ALL_QUERY_TABLES='Collapse all query tables',
95
+
}
96
+
97
+
exportenumMetricGraphEmptyState{
98
+
NO_DATAPOINTS_FOUND='No datapoints found.',
99
+
NO_QUERY_ENTERED='No query entered',
100
+
ENTER_QUERY='Enter a query in the box below to explore metrics for this cluster.',
101
+
UNGRAPHABLE_RESULTS='Ungraphable results',
102
+
UNGRAPHABLE_RESULTS_DESCRIPTION='The resulting dataset is too large to graph.',
0 commit comments