- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 192 for prometheus (0.08 sec)
-
manifests/addons/dashboards/istio-mesh-dashboard.gen.json
], "displayMode": "table" } }, "pluginVersion": "v11.0.0", "targets": [ { "datasource": { "type": "prometheus", "uid": "$datasource" }, "expr": "round(sum (rate(istio_requests_total{reporter=~\"source|waypoint\"}[$__rate_interval])), 0.01)" } ],
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 22.3K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt
ECDS NAME TYPE istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP istio.io/telemetry/stats/prometheus/sidecar/Inbound/TCP istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP default.display-metadata envoy.extensions.filters.http.wasm.v3.Wasm
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Dec 24 08:16:26 UTC 2023 - 528 bytes - Viewed (0) -
go.mod
github.com/pierrec/lz4/v4 v4.1.21 github.com/pkg/errors v0.9.1 github.com/pkg/sftp v1.13.6 github.com/pkg/xattr v0.4.10 github.com/prometheus/client_golang v1.20.2 github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.59.1 github.com/prometheus/procfs v0.15.1 github.com/puzpuzpuz/xsync/v3 v3.4.0 github.com/rabbitmq/amqp091-go v1.10.0 github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 11.1K bytes - Viewed (0) -
cmd/metrics-v3-handler.go
"github.com/minio/mux" "github.com/minio/pkg/v3/env" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" ) type promLogger struct{} func (p promLogger) Println(v ...interface{}) { metricsLogIf(GlobalContext, fmt.Errorf("metrics handler error: %v", v)) } type metricsV3Server struct { registry *prometheus.Registry opts promhttp.HandlerOpts
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 15 16:28:02 UTC 2024 - 7.8K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml
- ecdsFilter: '@type': type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig name: istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP lastUpdated: "2023-12-23T13:46:00.701Z" - ecdsFilter: '@type': type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig name: istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP lastUpdated: "2023-12-23T13:46:00.708Z" - ecdsFilter:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Dec 24 08:16:26 UTC 2023 - 2.5K bytes - Viewed (0) -
cmd/metrics-v3.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "slices" "strings" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/collectors" ) // Collector paths. // // These are paths under the top-level /minio/metrics/v3 metrics endpoint. Each // of these paths returns a set of V3 metrics. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 02 00:55:27 UTC 2024 - 13.6K bytes - Viewed (0) -
cmd/metrics-v3-types.go
case HistogramMT: return "histogram" default: return "*unknown*" } } func (mt MetricType) toProm() prometheus.ValueType { switch mt { case CounterMT: return prometheus.CounterValue case GaugeMT: return prometheus.GaugeValue case HistogramMT: return prometheus.CounterValue default: panic(fmt.Sprintf("unknown metric type: %d", mt)) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:28:46 UTC 2024 - 15.6K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected
selector: matchLabels: app: hello tier: backend track: stable strategy: {} template: metadata: annotations: prometheus.io/path: /stats/prometheus prometheus.io/port: "15020" prometheus.io/scrape: "true" sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.iop.injected
selector: matchLabels: app: hello tier: backend track: stable strategy: {} template: metadata: annotations: prometheus.io/path: /stats/prometheus prometheus.io/port: "15020" prometheus.io/scrape: "true" sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.1K bytes - Viewed (0) -
cmd/metrics-v2_test.go
package cmd import ( "testing" "time" "github.com/prometheus/client_golang/prometheus" ) func TestGetHistogramMetrics(t *testing.T) { histBuckets := []float64{0.05, 0.1, 0.25, 0.5, 0.75} labels := []string{"GetObject", "PutObject", "CopyObject", "CompleteMultipartUpload"} ttfbHist := prometheus.NewHistogramVec( prometheus.HistogramOpts{ Name: "s3_ttfb_seconds",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 04 18:05:56 UTC 2024 - 2.3K bytes - Viewed (0)