Results 63 comments of 嗯嗯
trafficstars

> Currently only restart dashboard can solve it, i think we should provide a sync api to allow the user to actively refresh the local cache. 可能理解有误。我的意思是`apisix`的`conf.yaml`.`plugins`增加或者删除了`plugin`,`dashboard`这边并不会同步`apisix`的`plugins`

Yes. look hear [https://github.com/prometheus/pushgateway](url) Prometheus does not work well in a cluster environment, because the IP address of the host will change at any time. Prometheus Pushgateway can receive the...

[Prometheus PushGateway document](https://prometheus.io/docs/practices/pushing/) AND [go document](https://pkg.go.dev/github.com/prometheus/client_golang/prometheus/push#Pusher.Push)

Prometheus PushGateway document The Pushgateway is an intermediary service which allows you to push metrics from jobs which cannot be scraped.

I'm sorry I misrepresented what I meant. Prometheus needs to actively configure the client metrics address, but if my pod is scaled up, the new node cannot be collected because...

Thank you, I will read this document carefully

@estahn i fixed issue #93 , please help me review the code

> Please check if ENV is prior to values in configuration file. > If not it can break the way that debian package Prometheus export (using /etc/default/.conf file for parameters)...

@da-tai ````golang package main import ( "context" "crypto/tls" "flag" "github.com/cloudwego/netpoll" "log" "net" ) var cert tls.Certificate func init() { var ( cer string key string err error ) flag.StringVar(&cer, "cert",...

**server.go** ```golang package main import ( "context" "crypto/tls" "flag" "github.com/cloudwego/netpoll" "io" logger "log" "net" "os" "time" ) const tlsConnCtxKey = "TLS_CONN" var ( conf *tls.Config bufSize = 64 log =...