Skip to content

Commit adc3615

Browse files
authored
Merge pull request #59 from onx2/master
2 parents 0c17521 + 2123636 commit adc3615

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ members = [
55
"models/files",
66
"models/token",
77

8+
"poem/opentelemetry-basic",
89
"poem/starwars",
910
"poem/subscription",
1011
"poem/subscription-redis",

poem/opentelemetry-basic/Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "poem-opentelemetry-basic"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
async-graphql = { path = "../../..", features = ["opentelemetry"] }
10+
async-graphql-poem = { path = "../../../integrations/poem" }
11+
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
12+
poem = "1.3.42"
13+
opentelemetry = { version = "0.17.0", features = ["rt-tokio"] }

poem/opentelemetry-basic/src/main.rs

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
use async_graphql::{
2+
extensions::OpenTelemetry, EmptyMutation, EmptySubscription, Object, Result, Schema,
3+
};
4+
use async_graphql_poem::GraphQL;
5+
use opentelemetry::sdk::export::trace::stdout;
6+
use poem::{listener::TcpListener, post, EndpointExt, Route, Server};
7+
8+
struct QueryRoot;
9+
10+
#[Object]
11+
impl QueryRoot {
12+
async fn hello(&self) -> Result<String> {
13+
Ok("World".to_string())
14+
}
15+
}
16+
17+
#[tokio::main]
18+
async fn main() {
19+
let tracer = stdout::new_pipeline().install_simple();
20+
let opentelemetry_extension = OpenTelemetry::new(tracer);
21+
22+
let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription)
23+
.extension(opentelemetry_extension)
24+
.finish();
25+
26+
let app = Route::new()
27+
.at("/", post(GraphQL::new(schema.clone())))
28+
.data(schema);
29+
30+
let example_curl = "\
31+
curl '0.0.0.0:8000' \
32+
-X POST \
33+
-H 'content-type: application/json' \
34+
--data '{ \"query\": \"{ hello }\" }'";
35+
36+
println!("Run this curl command from another terminal window to see opentelemetry output in this terminal.\n\n{example_curl}\n\n");
37+
38+
Server::new(TcpListener::bind("0.0.0.0:8000"))
39+
.run(app)
40+
.await
41+
.unwrap();
42+
}

0 commit comments

Comments
 (0)