This commit is contained in:
@@ -1,18 +1,6 @@
|
|||||||
# now
|
# now
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
todo: test devops as production server with automated backups, upload a range of attachments, simulate crash and restore etc, run load test then backup etc see disk space consumption and make sure
|
|
||||||
backup works adn restore works as this is obvsiouly critical.
|
|
||||||
IN PROGRESS: set devops to backup at 10pm tonight
|
|
||||||
attached files to a customer called "A customer I created..." and also to Batz customer and also to bizadmin user (several files)
|
|
||||||
Tommorrow morning download backup, erase all data, restore it, document the process for subscription server
|
|
||||||
Also check the docs I must have documetned it there but if not then document that shit
|
|
||||||
|
|
||||||
Test restore a linux backup to windows
|
|
||||||
pg_restore -U postgres -c -d AyaNova "C:\temp\xfer\db-20220920220000302.backup"
|
|
||||||
|
|
||||||
|
|
||||||
CLIENT CHANGS TO DO NOW
|
CLIENT CHANGS TO DO NOW
|
||||||
|
|
||||||
STRIP OUT METRICS (maybe some of them for both types, just not working or accurate, the db and file size stuff is useful if working properly)
|
STRIP OUT METRICS (maybe some of them for both types, just not working or accurate, the db and file size stuff is useful if working properly)
|
||||||
@@ -25,14 +13,6 @@ METRIC WE DO NEED
|
|||||||
todo: should alert users if low on disk space in dedicated subscription volume
|
todo: should alert users if low on disk space in dedicated subscription volume
|
||||||
in central location maybe server information or license page or whatever
|
in central location maybe server information or license page or whatever
|
||||||
|
|
||||||
todo: Seeding, maybe just offer one size of seeding for trialers, there's no real use to us to offer more levels for marketing or testing
|
|
||||||
people just want to try all features, v7 only had 20 workorders
|
|
||||||
Keep ability for us for load testing etc, but don't offer it in the UI
|
|
||||||
YES DO THIS FOR PERPETUAL AS WELL AS SUBSCRIPTION, CHECK DOCS TO MAKE SURE IT"S NOT MENTIONED ANYMORE
|
|
||||||
|
|
||||||
todo: on a night run with full generation see how big the db actually gets, it's surprisingly time consuming to erase it right now during testing
|
|
||||||
note this is important to see over time how big it gets with a continual heavy load
|
|
||||||
|
|
||||||
todo: document subscription server maximum attachment is 25mb unless they ask us to change it, actually for a subscriptin we might want to decrease that
|
todo: document subscription server maximum attachment is 25mb unless they ask us to change it, actually for a subscriptin we might want to decrease that
|
||||||
maybe more like 5mb or something?? Need to look into it
|
maybe more like 5mb or something?? Need to look into it
|
||||||
But overall that would be a good thing to be able to show in the User interface if possible...hmmm..how to do that is tricky
|
But overall that would be a good thing to be able to show in the User interface if possible...hmmm..how to do that is tricky
|
||||||
@@ -1394,3 +1374,5 @@ BUILD 8.0.10 CHANGES OF NOTE
|
|||||||
AyaAnova with active trial license now does fast track license check to accomodate slow data generation users
|
AyaAnova with active trial license now does fast track license check to accomodate slow data generation users
|
||||||
docs additions
|
docs additions
|
||||||
Removed optins of seedlevel from eval page at client, now defaults to small only
|
Removed optins of seedlevel from eval page at client, now defaults to small only
|
||||||
|
Fixed issue with some metrics timeline charts
|
||||||
|
Changed 12 hour metrics to 24 hour metrics
|
||||||
@@ -76,7 +76,7 @@ This chart is useful for interpreting over time any changes in CPU load for the
|
|||||||
|
|
||||||
### DATABASE tab
|
### DATABASE tab
|
||||||
|
|
||||||
These statistics are gathered every 12 hours.
|
These statistics are gathered every 24 hours.
|
||||||
|
|
||||||
##### Database size
|
##### Database size
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ This graph shows the distribution of data by table stored in the AyaNova databas
|
|||||||
|
|
||||||
### File storage tab
|
### File storage tab
|
||||||
|
|
||||||
These statistics are gathered every 12 hours.
|
These statistics are gathered every 24 hours.
|
||||||
|
|
||||||
#### Storage statistics
|
#### Storage statistics
|
||||||
|
|
||||||
|
|||||||
@@ -27,10 +27,10 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
#if (DEBUG)
|
#if (DEBUG)
|
||||||
private static TimeSpan tsMMFrequency = new TimeSpan(0, 5, 0);
|
private static TimeSpan tsMMFrequency = new TimeSpan(0, 5, 0);
|
||||||
private static TimeSpan tsDDFrequency = new TimeSpan(12, 0, 0);
|
private static TimeSpan tsDDFrequency = new TimeSpan(24, 0, 0);
|
||||||
#else
|
#else
|
||||||
private static TimeSpan tsMMFrequency = new TimeSpan(0, 5, 0);
|
private static TimeSpan tsMMFrequency = new TimeSpan(0, 5, 0);
|
||||||
private static TimeSpan tsDDFrequency = new TimeSpan(12, 0, 0);//changed to 12 hours from 24 due to weird issue not gathering like it should diagnosis
|
private static TimeSpan tsDDFrequency = new TimeSpan(24, 0, 0);//changed to 12 hours from 24 due to weird issue not gathering like it should diagnosis
|
||||||
#endif
|
#endif
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user