]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/db/db_info_dumper.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / rocksdb / db / db_info_dumper.h
CommitLineData
7c673cae 1// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
11fdf7f2
TL
2// This source code is licensed under both the GPLv2 (found in the
3// COPYING file in the root directory) and Apache 2.0 License
4// (found in the LICENSE.Apache file in the root directory).
7c673cae
FG
5#pragma once
6
7#include <string>
8
9#include "options/db_options.h"
10
f67539c2 11namespace ROCKSDB_NAMESPACE {
7c673cae 12void DumpDBFileSummary(const ImmutableDBOptions& options,
20effc67
TL
13 const std::string& dbname,
14 const std::string& session_id = "");
f67539c2 15} // namespace ROCKSDB_NAMESPACE