~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to src/rgw/rgw_log.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-07-16 09:56:24 UTC
  • mfrom: (0.3.11)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20120716095624-azr2w4hbhei1rxmx
Tags: upstream-0.48
ImportĀ upstreamĀ versionĀ 0.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
#define RGW_LOG_POOL_NAME ".log"
8
8
#define RGW_INTENT_LOG_POOL_NAME ".intent-log"
 
9
#define RGW_USAGE_LOG_POOL_NAME ".usage"
9
10
 
10
11
struct rgw_log_entry {
11
12
  string object_owner;
118
119
 
119
120
int rgw_log_op(struct req_state *s);
120
121
int rgw_log_intent(struct req_state *s, rgw_obj& obj, RGWIntentEvent intent);
 
122
void rgw_log_usage_init(CephContext *cct);
 
123
void rgw_log_usage_finalize();
121
124
 
122
125
#endif
123
126