--- /home/sh/Documents/mysql-utilities-1.5.4/mysql/utilities/command/diskusage.py 2015-02-26 19:49:22.000000000 +0400 +++ /home/sh/Downloads/mysql-utilities-1.5.4/mysql/utilities/command/diskusage.py 2015-04-15 18:21:51.629286767 +0500 @@ -137,7 +137,7 @@ return None for item in os.listdir(folder): name, ext = os.path.splitext(item) - if ext.upper() not in (".MYD", ".MYI") and \ + if ext.upper() not in (".MYD", ".MYI",".IBD") and \ name.upper() not in ('SLOW_LOG', 'GENERAL_LOG'): itemfolder = os.path.join(folder, item) if os.path.isfile(itemfolder): @@ -397,10 +397,10 @@ db_total = 0 else: data_size = int(row[1]) - db_total = int(row[1]) + misc_files + db_total = dbdir_size # Count total for all databases - total += data_size + misc_files + total += dbdir_size if have_read and not is_remote: if verbosity >= 2: # get all columns