You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							58 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							58 lines
						
					
					
						
							1.4 KiB
						
					
					
				
								package shell
							 | 
						|
								
							 | 
						|
								import (
							 | 
						|
									"context"
							 | 
						|
									"flag"
							 | 
						|
									"fmt"
							 | 
						|
									"github.com/seaweedfs/seaweedfs/weed/filer"
							 | 
						|
									"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
							 | 
						|
									"io"
							 | 
						|
									"time"
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								func init() {
							 | 
						|
									Commands = append(Commands, &commandFsLogPurge{})
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								type commandFsLogPurge struct {
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (c *commandFsLogPurge) Name() string {
							 | 
						|
									return "fs.log.purge"
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (c *commandFsLogPurge) Help() string {
							 | 
						|
									return `purge filer logs
							 | 
						|
								
							 | 
						|
									fs.log.purge [-v] [-daysAgo 365]
							 | 
						|
								`
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (c *commandFsLogPurge) HasTag(CommandTag) bool {
							 | 
						|
									return false
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (c *commandFsLogPurge) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
							 | 
						|
									fsLogPurgeCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
							 | 
						|
									daysAgo := fsLogPurgeCommand.Uint("daysAgo", 365, "purge logs older than N days")
							 | 
						|
									verbose := fsLogPurgeCommand.Bool("v", false, "verbose mode")
							 | 
						|
								
							 | 
						|
									if err = fsLogPurgeCommand.Parse(args); err != nil {
							 | 
						|
										return err
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									modificationTimeAgo := time.Now().Add(-time.Hour * 24 * time.Duration(*daysAgo)).Unix()
							 | 
						|
									err = filer_pb.ReadDirAllEntries(context.Background(), commandEnv, filer.SystemLogDir, "", func(entry *filer_pb.Entry, isLast bool) error {
							 | 
						|
										if entry.Attributes.Mtime > modificationTimeAgo {
							 | 
						|
											return nil
							 | 
						|
										}
							 | 
						|
										if errDel := filer_pb.Remove(context.Background(), commandEnv, filer.SystemLogDir, entry.Name, true, true, true, false, nil); errDel != nil {
							 | 
						|
											return errDel
							 | 
						|
										}
							 | 
						|
										if *verbose {
							 | 
						|
											fmt.Fprintf(writer, "delete %s\n", entry.Name)
							 | 
						|
										}
							 | 
						|
										return nil
							 | 
						|
									})
							 | 
						|
									return err
							 | 
						|
								}
							 |