org.neo4j.kernel.diagnostics.KernelDiagnosticsOfflineReportProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-kernel Show documentation
Show all versions of neo4j-kernel Show documentation
Neo4j kernel is a lightweight, embedded Java database designed to
store data structured as graphs rather than tables. For more
information, see http://neo4j.org.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.kernel.diagnostics;
import java.io.IOException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.function.Supplier;
import org.neo4j.annotations.service.ServiceProvider;
import org.neo4j.configuration.Config;
import org.neo4j.configuration.GraphDatabaseSettings;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.io.layout.DatabaseLayout;
import org.neo4j.io.layout.Neo4jLayout;
import org.neo4j.kernel.diagnostics.providers.StoreFilesDiagnostics;
import org.neo4j.kernel.impl.transaction.log.files.LogFiles;
import org.neo4j.kernel.impl.transaction.log.files.LogFilesBuilder;
import org.neo4j.kernel.internal.Version;
import org.neo4j.storageengine.api.StorageEngineFactory;
@ServiceProvider
public class KernelDiagnosticsOfflineReportProvider extends DiagnosticsOfflineReportProvider
{
private FileSystemAbstraction fs;
private Config config;
private Set databaseNames;
private Neo4jLayout neo4jLayout;
public KernelDiagnosticsOfflineReportProvider()
{
super( "logs", "plugins", "tree", "tx", "version" );
}
@Override
public void init( FileSystemAbstraction fs, Config config, Set databaseNames )
{
this.fs = fs;
this.config = config;
this.databaseNames = databaseNames;
this.neo4jLayout = Neo4jLayout.of( config );
}
@Override
protected List provideSources( Set classifiers )
{
List sources = new ArrayList<>();
if ( classifiers.contains( "logs" ) )
{
getLogFiles( sources );
}
if ( classifiers.contains( "plugins" ) )
{
listPlugins( sources );
}
if ( classifiers.contains( "tree" ) )
{
for ( String databaseName : databaseNames )
{
listDataDirectory(sources, databaseName);
}
}
if ( classifiers.contains( "tx" ) )
{
for ( String databaseName : databaseNames )
{
getTransactionLogFiles(sources, databaseName);
}
}
if ( classifiers.contains( "version" ) )
{
getVersion( sources );
}
return sources;
}
private static void getVersion( List sources )
{
Supplier neo4jVersion = () -> "neo4j " + Version.getNeo4jVersion() + System.lineSeparator();
sources.add( DiagnosticsReportSources.newDiagnosticsString( "version.txt", neo4jVersion ) );
}
/**
* Collect a list of all the files in the plugins directory.
*
* @param sources destination of the sources.
*/
private void listPlugins( List sources )
{
Path pluginDirectory = config.get( GraphDatabaseSettings.plugin_dir );
if ( fs.fileExists( pluginDirectory ) )
{
StringBuilder sb = new StringBuilder();
sb.append( "List of plugin directory:" ).append( System.lineSeparator() );
try
{
listContentOfDirectory( pluginDirectory, " ", sb );
}
catch ( IOException e )
{
sb.append( e.getMessage() ).append( System.lineSeparator() );
}
sources.add( DiagnosticsReportSources.newDiagnosticsString( "plugins.txt", sb::toString ) );
}
}
private void listContentOfDirectory( Path directory, String prefix, StringBuilder sb ) throws IOException
{
if ( !fs.isDirectory( directory ) )
{
return;
}
Path[] files = fs.listFiles( directory );
for ( Path file : files )
{
if ( fs.isDirectory( file ) )
{
listContentOfDirectory( file, prefix + file.getFileSystem().getSeparator() + file.getFileName(), sb );
}
else
{
sb.append( prefix ).append( file.getFileName() ).append( System.lineSeparator() );
}
}
}
/**
* Print a tree view of all the files in the database directory with files sizes.
*
* @param sources destination of the sources.
*/
private void listDataDirectory( List sources, String databaseName )
{
DatabaseLayout databaseLayout = DatabaseLayout.of(neo4jLayout, databaseName);
StorageEngineFactory storageEngineFactory = StorageEngineFactory.defaultStorageEngine();
StoreFilesDiagnostics storeFiles = new StoreFilesDiagnostics( storageEngineFactory, fs, databaseLayout );
List files = new ArrayList<>();
storeFiles.dump( files::add );
sources.add( DiagnosticsReportSources.newDiagnosticsString( databaseName + "/tree.txt", () -> String.join( System.lineSeparator(), files ) ) );
}
/**
* Add {@code debug.log}, {@code neo4j.log} and {@code gc.log}. All with all available rotated files.
*
* @param sources destination of the sources.
*/
private void getLogFiles( List sources )
{
// debug.log
Path debugLogFile = config.get( GraphDatabaseSettings.store_internal_log_path );
if ( fs.fileExists( debugLogFile ) )
{
sources.addAll( DiagnosticsReportSources.newDiagnosticsRotatingFile( "logs/", fs, debugLogFile ) );
}
// neo4j.log
Path neo4jLog = config.get( GraphDatabaseSettings.store_user_log_path );
if ( fs.fileExists( neo4jLog ) )
{
sources.addAll( DiagnosticsReportSources.newDiagnosticsRotatingFile( "logs/", fs, neo4jLog ) );
}
// gc.log
Path logDirectory = config.get( GraphDatabaseSettings.logs_directory );
Path gcLog = logDirectory.resolve( "gc.log" );
if ( fs.fileExists( gcLog ) )
{
sources.addAll( DiagnosticsReportSources.newDiagnosticsRotatingFile( "logs/", fs, gcLog ) );
}
// there are other rotation schemas but nothing we can predict...
}
/**
* Add all available log files as sources.
*
* @param sources destination of the sources.
*/
private void getTransactionLogFiles( List sources, String databaseName )
{
try
{
DatabaseLayout databaseLayout = DatabaseLayout.of(neo4jLayout, databaseName);
LogFiles logFiles = LogFilesBuilder.logFilesBasedOnlyBuilder( databaseLayout.getTransactionLogsDirectory(), fs ).build();
for ( Path file : logFiles.logFiles() )
{
sources.add( DiagnosticsReportSources.newDiagnosticsFile( databaseName + "/tx/" + file.getFileName(), fs, file ) );
}
}
catch ( IOException e )
{
sources.add( DiagnosticsReportSources
.newDiagnosticsString( databaseName + "/tx.txt", () -> "Error getting tx logs: " + e.getMessage() ) );
}
}
}