-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial structure for ODS3 logging for Mononoke Server
Summary: :) Reviewed By: andreacampi Differential Revision: D68830617 fbshipit-source-id: 17e3251c6e3ee5721276194dc2dc574569358a0c
- Loading branch information
1 parent
078e639
commit 8dcb0a1
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This software may be used and distributed according to the terms of the | ||
* GNU General Public License version 2. | ||
*/ | ||
|
||
use gotham_ext::middleware::post_request::PostResponseInfo; | ||
use hyper::StatusCode; | ||
|
||
pub fn log_ods3( | ||
_info: &PostResponseInfo, | ||
_status: &StatusCode, | ||
_method: String, | ||
_request_load: Option<f64>, | ||
) { | ||
} |