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
Hi, first of all, thanks, it is a nice tool.
I happen to have a configuration where conf.d is used and timescales-tune seems not to recognise this. A nice improvement could be to read the values from the live database and maybe write the changes to conf.d/13_tuned.conf.
I feel this would make life a bit easier. 13 is obviously a random choice and should be the highest number so it overrules all previous settings.
The text was updated successfully, but these errors were encountered:
yeah, I agree. I'd be nice if tune was reading config files from include and include_dir.
Alternative:
COPY (with s as (select name,setting,vartype from pg_settings) select name || ' = ' || CASE vartype WHEN 'string' THEN '"' || setting || '"' ELSE setting END from s) TO '/tmp/p.conf';
Hi, first of all, thanks, it is a nice tool.
I happen to have a configuration where conf.d is used and timescales-tune seems not to recognise this. A nice improvement could be to read the values from the live database and maybe write the changes to conf.d/13_tuned.conf.
I feel this would make life a bit easier. 13 is obviously a random choice and should be the highest number so it overrules all previous settings.
The text was updated successfully, but these errors were encountered: