Log rotate

Hi,
I have below script in logrotate.d to rotate logs.
logs are not rotating after the file grow to 1k, do you have any idea? Is it because of it just only 1K?
Please let me know if the below syntax is in correct.

[root logrotate.d]# more trotate
/sourcepath/*/servers/*/logs/*log
/sourcepath/*/servers/*/logs/*out
{
        daily
        dateext
        dateformat .%Y-%m-%d
        copytruncate
        rotate 7
        size 1k
        compress
        missingok
        notifempty
}

I am not sure the newline is acceptable, but you can check with:

logrotate -d /etc/logrotate.conf

I'm not sure it will cope with wild-card characters for the file-names. The configuration file I have specifies all the log files it is to deal with. If you add a new log file, you will need to edit the configuration file.

Robin