-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add server instrumentation for method calls
- Loading branch information
1 parent
7c53f68
commit a8268aa
Showing
6 changed files
with
179 additions
and
13 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,38 @@ | ||
// Copyright 2017 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
extern crate grpcio; | ||
extern crate grpcio_proto; | ||
#[macro_use] | ||
extern crate log; | ||
|
||
#[path = "../log_util.rs"] | ||
mod log_util; | ||
|
||
use std::sync::Arc; | ||
|
||
use grpcio::{ChannelBuilder, EnvBuilder}; | ||
use grpcio_proto::example::helloworld::HelloRequest; | ||
use grpcio_proto::example::helloworld_grpc::GreeterClient; | ||
|
||
fn main() { | ||
let _guard = log_util::init_log(None); | ||
let env = Arc::new(EnvBuilder::new().build()); | ||
let ch = ChannelBuilder::new(env).connect("localhost:50051"); | ||
let client = GreeterClient::new(ch); | ||
|
||
let mut req = HelloRequest::new(); | ||
req.set_name("world".to_owned()); | ||
let reply = client.say_hello(&req).expect("rpc"); | ||
info!("Greeter received: {}", reply.get_message()); | ||
} |
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,85 @@ | ||
// Copyright 2017 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
extern crate futures; | ||
extern crate grpcio; | ||
extern crate grpcio_proto; | ||
#[macro_use] | ||
extern crate log; | ||
|
||
#[path = "../log_util.rs"] | ||
mod log_util; | ||
|
||
use std::io::Read; | ||
use std::sync::Arc; | ||
use std::{io, thread}; | ||
|
||
use futures::sync::oneshot; | ||
use futures::Future; | ||
use grpcio::{Environment, RpcContext, ServerBuilder, UnarySink, ServerInstrumenter}; | ||
|
||
use grpcio_proto::example::helloworld::{HelloReply, HelloRequest}; | ||
use grpcio_proto::example::helloworld_grpc::{self, Greeter}; | ||
|
||
#[derive(Clone)] | ||
struct GreeterService; | ||
|
||
impl Greeter for GreeterService { | ||
fn say_hello(&mut self, ctx: RpcContext, req: HelloRequest, sink: UnarySink<HelloReply>) { | ||
let msg = format!("Hello {}", req.get_name()); | ||
let mut resp = HelloReply::new(); | ||
resp.set_message(msg); | ||
let f = sink | ||
.success(resp) | ||
.map_err(move |e| error!("failed to reply {:?}: {:?}", req, e)); | ||
ctx.spawn(f) | ||
} | ||
} | ||
|
||
#[derive(Copy)] | ||
#[derive(Clone)] | ||
struct MyServerInstrumenter; | ||
|
||
impl ServerInstrumenter for MyServerInstrumenter { | ||
fn before(&self) { | ||
println!("Hello world!"); | ||
} | ||
|
||
fn after(&self) { | ||
println!("Goodbye."); | ||
} | ||
} | ||
|
||
|
||
fn main() { | ||
let _guard = log_util::init_log(None); | ||
let env = Arc::new(Environment::new(1)); | ||
let service = helloworld_grpc::create_instrumented_greeter(GreeterService, MyServerInstrumenter); | ||
let mut server = ServerBuilder::new(env) | ||
.register_service(service) | ||
.bind("127.0.0.1", 50_051) | ||
.build() | ||
.unwrap(); | ||
server.start(); | ||
for &(ref host, port) in server.bind_addrs() { | ||
info!("listening on {}:{}", host, port); | ||
} | ||
let (tx, rx) = oneshot::channel(); | ||
thread::spawn(move || { | ||
info!("Press ENTER to exit..."); | ||
let _ = io::stdin().read(&mut [0]).unwrap(); | ||
tx.send(()) | ||
}); | ||
let _ = rx.wait(); | ||
let _ = server.shutdown().wait(); | ||
} |
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