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
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Storage', 'DEFAULT', 'StorageManager', 'create.volume.from.snapshot.wait', '10800', 'In second, timeout for create template from snapshot');
51
51
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Storage', 'DEFAULT', 'TemplateManager', 'primary.storage.download.wait', '10800', 'In second, timeout for download template to primary storage');
52
52
53
-
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.execution.timezone', null, 'The timezone to use for usage job execution time');
53
+
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.execution.timezone', 'Asia/Seoul', 'The timezone to use for usage job execution time');
54
54
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.stats.job.aggregation.range', '1440', 'The range of time for aggregating the user statistics specified in minutes (e.g. 1440 for daily, 60 for hourly.');
55
55
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.stats.job.exec.time', '00:15', 'The time at which the usage statistics aggregation job will run as an HH24:MM time, e.g. 00:30 to run at 12:30am.');
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'direct.network.stats.interval', '86400', 'Interval (in seconds) to collect stats from Traffic Monitor');
58
-
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.aggregation.timezone', 'GMT', 'The timezone to use for usage stats aggregation');
58
+
INSERT IGNORE INTO`cloud`.`configuration`VALUES ('Premium', 'DEFAULT', 'management-server', 'usage.aggregation.timezone', 'Asia/Seoul', 'The timezone to use for usage stats aggregation');
Copy file name to clipboardExpand all lines: server/src/main/java/com/cloud/configuration/Config.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1225,7 +1225,7 @@ public enum Config {
1225
1225
null),
1226
1226
1227
1227
// Usage
1228
-
UsageExecutionTimezone("Usage", ManagementServer.class, String.class, "usage.execution.timezone", null, "The timezone to use for usage job execution time", null),
1228
+
UsageExecutionTimezone("Usage", ManagementServer.class, String.class, "usage.execution.timezone", "Asia/Seoul", "The timezone to use for usage job execution time", null),
1229
1229
UsageStatsJobAggregationRange(
1230
1230
"Usage",
1231
1231
ManagementServer.class,
@@ -1259,7 +1259,7 @@ public enum Config {
1259
1259
null,
1260
1260
"Interval (in days) to check sanity of usage data. To disable set it to 0 or negative.",
1261
1261
null),
1262
-
UsageAggregationTimezone("Usage", ManagementServer.class, String.class, "usage.aggregation.timezone", "GMT", "The timezone to use for usage stats aggregation", null),
1262
+
UsageAggregationTimezone("Usage", ManagementServer.class, String.class, "usage.aggregation.timezone", "Asia/Seoul", "The timezone to use for usage stats aggregation", null),
0 commit comments