1
0
Fork 0
mirror of synced 2024-10-02 02:07:04 +13:00

few last updates

This commit is contained in:
shimon 2023-02-15 11:21:31 +02:00
parent 074d7dad32
commit bb98033aed
2 changed files with 13 additions and 0 deletions

View file

@ -10,6 +10,7 @@
- Deprecated influxdb, telegraf containers and removed all of their occurrences from the code.
- Removed _APP_INFLUXDB_HOST, _APP_INFLUXDB_PORT, _APP_STATSD_HOST, _APP_STATSD_PORT env variables.
- Removed usage labels dependency.
- Dropped type attribute from stats collection.
- Usage metrics are processed via new usage worker.
- Metrics changes:
- Storage

View file

@ -99,6 +99,18 @@ class V17 extends Migration
}
break;
case 'stats':
try {
/**
* Delete 'type' attribute
*/
$this->projectDB->deleteAttribute($id, 'type');
$this->projectDB->deleteCachedCollection($id);
} catch (\Throwable $th) {
Console::warning("'type' from {$id}: {$th->getMessage()}");
}
break;
case 'schedules':
try {
/**