Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for version_info (0.31 sec)

  1. istioctl/pkg/describe/testdata/describe/http_config.json

    {
      "configs": [
        {
          "@type": "type.googleapis.com/envoy.admin.v3.RoutesConfigDump",
          "dynamic_route_configs": [
            {
              "version_info": "2022-03-04T10:22:24Z/54",
              "route_config": {
                "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
                "name": "http.8080",
                "virtual_hosts": [
                  {
                    "name": "*:80",
                    "domains": [
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 13.7K bytes
    - Viewed (0)
  2. cmd/metrics.go

    			Buckets: []float64{.05, .1, .25, .5, 1, 2.5, 5, 10},
    		},
    		[]string{"api", "bucket"},
    	)
    	minioVersionInfo = prometheus.NewGaugeVec(
    		prometheus.GaugeOpts{
    			Namespace: "minio",
    			Name:      "version_info",
    			Help:      "Version of current MinIO server instance",
    		},
    		[]string{
    			// current version
    			"version",
    			// commit-id of the current version
    			"commit",
    		},
    	)
    )
    
    const (
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 02 06:48:36 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    |:------------------------------|:---------------------------------------|
    | `minio_software_commit_info`  | Git commit hash for the MinIO release. |
    | `minio_software_version_info` | MinIO Release tag for the server.      |
    
    ## Drive Metrics
    
    | Name                                   | Description                                                         |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            }
        }
    
        private void merge(
                String key,
                Map<String, VersionInfo> infos,
                String timestamp,
                String version,
                ArtifactRepository repository) {
            VersionInfo info = infos.get(key);
            if (info == null) {
                info = new VersionInfo(timestamp, version, repository);
                infos.put(key, info);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
Back to top