]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Merge pull request #6175 from XinzeChi/wip-finisher-lat
authorSage Weil <sage@redhat.com>
Thu, 26 Nov 2015 22:28:10 +0000 (17:28 -0500)
committerSage Weil <sage@redhat.com>
Thu, 26 Nov 2015 22:28:10 +0000 (17:28 -0500)
common: add latency perf counter for finisher

Reviewed-by: Sage Weil <sage@redhat.com>
1  2 
src/os/JournalingObjectStore.h

index 42d13f6491a46f9e09828a2f781493b06762640b,1531d3cdd000505791c866bd945e67abda3c59dd..bba3767b2c3d8643200bf509701346adb8a317a7
@@@ -132,12 -133,10 +132,12 @@@ public
    JournalingObjectStore(const std::string& path)
      : ObjectStore(path),
        journal(NULL),
-       finisher(g_ceph_context),
+       finisher(g_ceph_context, "JournalObjectStore"),
        apply_manager(journal, finisher),
        replaying(false) {}
 -  
 +
 +  ~JournalingObjectStore() {
 +  }
  };
  
  #endif