From 04269efd9c06f81ba2cccb58bcf8383ed1c8d4d1 Mon Sep 17 00:00:00 2001 From: yzhao Date: Wed, 19 Jan 2022 17:00:57 -0800 Subject: [PATCH] Use ebpf-http2-tracing as the link component (#28) * Use ebpf-http2-tracing as the link component Signed-off-by: yzhao1012 * Fix other README too. Signed-off-by: Hannah Troisi Co-authored-by: Hannah Troisi --- README.md | 8 ++++---- http2-tracing/README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 574dcbc..3dd9e86 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,10 @@ Want to deprecate an API? Use [Pixie](https://github.com/pixie-io/pixie) to quic [Can I deprecate this endpoint?](https://blog.px.dev/endpoint-deprecation) is the accompanying blog post for this demo. +## http2-tracing + +Demo project to accompany the [Observing HTTP/2 Traffic is Hard, but eBPF Can Help](https://blog.px.dev/ebpf-http2-tracing/) blog post. This is a basic example of how to trace HTTP/2 messages using eBPF uprobes. + ## k8s-cost-estimation Use Pixie to estimate the cost of hosting your Kubernetes cluster. @@ -45,10 +49,6 @@ Demo project to accompany the [Detect SQL injections with Pixie](https://blog.px Demo project to accompany the [Tables are Hard, Part 2: Building a Simple Data Table in React](https://blog.px.dev/tables-are-hard-2) blog post. Interactive demo: [github.io](https://pixie-io.github.io/pixie-demos/react-table). -## http2-tracing - -Demo project to accompany the [Observing HTTP/2 Traffic is Hard, but eBPF Can Help](https://blog.px.dev/http2-tracing/) blog post. This is a basic example of how to trace HTTP/2 messages using eBPF uprobes. - # Have questions? Need help? Please reach out on our Pixie Community [Slack](https://slackin.px.dev/) or file a GitHub issue. diff --git a/http2-tracing/README.md b/http2-tracing/README.md index 7bcaa2d..c417527 100644 --- a/http2-tracing/README.md +++ b/http2-tracing/README.md @@ -5,7 +5,7 @@ Use eBPF uprobes to trace HTTP/2 headers, without any changes to the application ## What is this demo? This demo provides the gRPC client and server, and the uprobe tracer for -[Observing HTTP/2 Traffic is Hard, but eBPF Can Help](https://blog.px.dev/http2-tracing) +[Observing HTTP/2 Traffic is Hard, but eBPF Can Help](https://blog.px.dev/ebpf-http2-tracing/) blog post. Follow the instructions provided below to trace HTTP/2 message headers with eBPF uprobes. ## Prerequisites