-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Howdy, scanning through the code, I excitedly found ...
https://github.com/Cacti/plugin_syslog/blob/develop/setup.php
Line 573
if ($db_version >= 5.5) { $fields_syslog_update['dayparts'] = array( 'method' => 'drop_array', 'friendly_name' => __('Partitions per Day', 'syslog'), 'description' => __('Select the number of partitions per day that you wish to create.', 'syslog'), 'value' => '1', 'array' => array( '1' => __('%d Per Day', 1, 'syslog'), '2' => __('%d Per Day', 2, 'syslog'), '4' => __('%d Per Day', 4, 'syslog'), '6' => __('%d Per Day', 6, 'syslog'), '12' => __('%d Per Day', 12, 'syslog') ) ); }
I am using the "Cacti Appliance" generated by (http://www.kevinnoall.com/blog/2015/03/06/cacti-virtual-appliance/centos7_cacti-v1-1-37/), which is Centos 7 and "10.1.34-MariaDB"
Any thoughts in adding another section in support of this MariaDB? And/or pointers on how to "trick" the runtime into permitting Partitions per Day, but with MariaDB?
Grateful for advise / direction