- 921. Minimum Add to Make Parentheses Valid 使括号有效的最少添加
- 915. Partition Array into Disjoint Intervals 分割数组
- 932. Beautiful Array 漂亮数组
- 940. Distinct Subsequences II 不同的子序列 II
1、 broker-service->auth-service->postgresdb;
2、 zipkin监控:需代码入侵;
1、 通过context传递span;
main.go
package main
import (
"broker-service/auth-service"
"broker-service/svc1"
"context"
"fmt"
"log"
"net/http"
"time"
"github.com/opentracing/opentracing-go"
zipkinot "github.com/openzipkin-contrib/zipkin-go-opentracing"
"github.com/openzipkin/zipkin-go"
zipkinhttp "github.com/openzipkin/zipkin-go/reporter/http"
)
var webPort = "8080"
const (
// Our service name.
serviceName = "client"
// Host + port of our service.
hostPort = "0.0.0.0:0"
// Endpoint to send Zipkin spans to.
zipkinHTTPEndpoint = "http://localhost:9411/api/v2/spans"
// Base endpoint of our Auth service.
authEndpoint = "http://localhost:8090"
)
type Config struct {
Client Services
Ctx context.Context
}
type Services struct {
Auth auth.Service
}
func main() {
fmt.Println("Starting broker service: ", webPort)
// set up a span reporter
reporter := zipkinhttp.NewReporter(zipkinHTTPEndpoint)
defer reporter.Close()
// create our local service endpoint
endpoint, err := zipkin.NewEndpoint(serviceName, hostPort)
if err != nil {
log.Fatalf("unable to create local endpoint: %+v\n", err)
}
// initialize our tracer
nativeTracer, err := zipkin.NewTracer(reporter, zipkin.WithLocalEndpoint(endpoint))
if err != nil {
log.Fatalf("unable to create tracer: %+v\n", err)
}
// use zipkin-go-opentracing to wrap our tracer
tracer := zipkinot.Wrap(nativeTracer)
// optionally set as Global OpenTracing tracer instance
opentracing.SetGlobalTracer(tracer)
// Create Client to auth Services
as := auth.NewHTTPClient(tracer, authEndpoint)
// Create Root Span for duration of the interaction with svc1
span := opentracing.StartSpan("Run")
// Put root span in context so it will be used in our calls to the client.
ctx := opentracing.ContextWithSpan(context.Background(), span)
//setup config
app := Config{
Client: Services{
Auth: as,
},
Ctx: ctx,
}
span.Finish()
srv := &http.Server{
Addr: ":8080",
Handler: app.routes(),
}
err = srv.ListenAndServe()
if err != nil {
log.Panic(err)
}
}
1、 路由到auth服务;
router.go
package main
import (
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
"github.com/go-chi/cors"
)
func (app *Config) routes() http.Handler {
mux := chi.NewRouter()
mux.Use(cors.Handler(cors.Options{
AllowedOrigins: []string{
"https://*", "http://*"},
AllowedMethods: []string{
"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowedHeaders: []string{
"Accept", "Authorization", "Content-Type", "X-CSRF-Token"},
ExposedHeaders: []string{
"link"},
AllowCredentials: true,
MaxAge: 300,
}))
mux.Use(middleware.Heartbeat("/ping"))
mux.Post("/", app.Broker)
mux.Post("/authenticate", app.Authenticate)
mux.Post("/auth", app.Auth)
return mux
}
package main
import (
"broker-service/auth-service"
"broker-service/event"
"broker-service/logs"
"context"
"encoding/json"
"errors"
"log"
"net/http"
"net/rpc"
"strconv"
"time"
"github.com/opentracing/opentracing-go"
otlog "github.com/opentracing/opentracing-go/log"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
type RequestPayload struct {
Action string json:"action"
Auth AuthPayload json:"auth,omitempty"
Log loggerPayload json:"log,omitempty"
}
type AuthPayload struct {
Email string json:"email"
Password string json:"password"
}
type loggerPayload struct {
Name string json:"name"
Data string json:"data"
}
// zipkin 未监控
func (app *Config) authenticate(w http.ResponseWriter, r *http.Request, a AuthPayload) {
var jsonFromService jsonResponse
// create json and send to the auth microservice
log.Println("auth: ", a)
jsonData, _ := json.Marshal(a)
//call the service
msg := &HttpMessage{
Url: "http://authentication-service",
Api: "authenticate",
Data: jsonData,
Method: "POST"}
jsonFromService, status := msg.HttpClient()
//make sure get back the correct status code
if status == http.StatusUnauthorized {
app.errorJSON(w, errors.New("invalid credentials"))
return
} else if status != http.StatusOK {
log.Println("Data: ", jsonFromService, " | status:", status)
app.errorJSON(w, errors.New("calling from service failed"))
return
}
var payload jsonResponse
payload.Error = false
payload.Message = "Authenticated!"
payload.Data = jsonFromService.Data
app.writeJSON(w, http.StatusAccepted, payload)
}
// zipkin 监控
func (app *Config) Auth(w http.ResponseWriter, r *http.Request) {
span, ctx := opentracing.StartSpanFromContext(app.Ctx, "Auth")
defer span.Finish()
var payload jsonResponse
payload.Error = true
payload.Message = "Authentication failed!"
var requestPayload AuthPayload
log.Println("request Auth")
err := app.readJSON(w, r, &requestPayload)
if err != nil {
app.errorJSON(w, err)
return
}
log.Println(requestPayload)
span.LogFields(otlog.String("event", "Call Auth"))
response, err := app.Client.Auth.Auth(
ctx, auth.AuthPayload(requestPayload))
//check
if err != nil {
app.errorJSON(w, errors.New("calling from svc1 failed"))
log.Printf("Response err: %s\n", err.Error())
return
}
log.Printf("Auth Rresponse: %v Err: %+v\n", response, err)
payload.Error = false
payload.Message = response.Message
payload.Data = response.Data
app.writeJSON(w, http.StatusAccepted, payload)
}
通过依赖 spring-cloud-starter-zipkin,当 sleuth 触发时,应用程序应该连接到 zipkin 服务器。我没有启动zipkin服务器,所以它应该抛出连接异常。但什么也没发
我对使用 OpenTelemetry 非常陌生,刚刚尝试将其配置为将跟踪发送到我的 Zipkin 服务器。不幸的是,通过指定 zipkin exporter details 配置代理后,我可以在控制台
我有一个 Spring Boot 2.0.0 REST 服务,我正在尝试启用 Sleuth 和 Zipkin 以将跟踪发送到我的本地主机 Zipkin 服务器。 应用程序运行良好,直到我将两个依赖项
一、环境安装 下载一个 Zipkin 的jar包,直接cmd运行即可,浏览器访问9411端口web管理页面。 二、模拟链路调用 支付项目下订单需要调用调用订单接口,同时订单接口需要调用会
在日志中,Zipkin 状态为 true,但我在 Zipkin UI 中看不到它。 personservice,c083b6900ad38c72,5276fea5682c7efa,true 同样的事情
我想使用 zipkin 来分析传统程序的内部结构。 我使用术语“传统”,因为 AFAIK zipkin 用于微服务环境中的跟踪,其中一个请求由 N 个子请求计算。 我想分析我的 python 程序的性
1、 broker-service->auth-service->postgresdb; 2、 zipkin监控:需代码入侵; 一、auth-service 1、 通过context传
分布式跟踪系统还有其他比较成熟的实现,例如:Naver的Pinpoint、Apache的HTrace、阿里的鹰眼Tracing、京东的Hydra、新浪的Watchman,美团点评的CAT,skywal
前面几篇博文中,都是使用OkHttpSender来上报Trace信息给Zipkin,这在生产环境中,当业务量比较大的时候,可能会成为一个性能瓶颈,这一篇博文我们来使用KafkaSender将Trace
上一篇博文中,我们分析了Tracing的相关源代码,这一篇我们来看看Brave是如何在Web项目中使用的 我们先来看看普通的servlet项目中,如何使用Brave,这对我们后面分析和理解Brave
上一篇博文中,我们分析了Brave是如何在普通Web项目中使用的,这一篇博文我们继续分析Brave和SpringMVC项目的整合方法及原理。 我们分两个部分来介绍和SpringMVC的整合,及XML配
Zipkin是一个分布式跟踪系统。它有助于收集解决服务体系结构中的延迟问题所需的计时数据。功能包括此数据的收集和查找。 如果日志文件中有跟踪 ID,则可以直接跳转到该 ID。否则,您可以根据服务、操
前面花了大量篇幅来介绍Brave的使用,一直把Zipkin当黑盒在使用,现在来逐渐拨开Zipkin的神秘面纱。 Zipkin的源代码地址为:https://github.com/openzipkin
1、 broker-service->auth-service->postgresdb; 2、 zipkin监控:需代码入侵; 使用 zipkin 库的 serverMiddleware
Brave是Java版的Zipkin客户端,它将收集的跟踪信息,以Span的形式上报给Zipkin系统。 (Zipkin是基于Google的一篇论文,名为Dapper,Dapper在荷兰语里是“勇敢
1、 broker-service->auth-service->postgresdb; 2、 zipkin监控:需代码入侵; 一、broker-service 1、 通过contex
上一篇博文中,我们分析了Tracing的相关源代码,这一篇我们来看看Brave是如何在Web项目中使用的 我们先来看看普通的servlet项目中,如何使用Brave,这对我们后面分析和理解Brave
微服务架构是一个分布式架构,它按业务划分服务单元,一个分布式系统往往有很多个服务单元。由于服务单元数量众多,业务的复杂性,如果出现了错误和异常,很难去定位。主要体现在,一个请求可能需要调用很多个服务,
1.概述 ”链路追踪“一词首次在google的Dapper论文中出现,该论文介绍了google自研的分布式链路追踪的实现原理,还介绍了他们是怎么低成本实现对应用透明的。Dapper论文一开始介绍的只
1、 broker-service->auth-service->postgresdb; 2、 zipkin监控:需代码入侵; 使用 zipkin 库的 serverMiddleware
我是一名优秀的程序员,十分优秀!