mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
Merge branch 'public-single-node' into pmm-6401-read-prometheus-data-files
This commit is contained in:
commit
343f444e87
155 changed files with 4714 additions and 2240 deletions
20
README.md
20
README.md
|
@ -605,6 +605,10 @@ VictoriaMetrics supports the following Graphite APIs, which are needed for [Grap
|
||||||
|
|
||||||
All the Graphite handlers can be pre-pended with `/graphite` prefix. For example, both `/graphite/metrics/find` and `/metrics/find` should work.
|
All the Graphite handlers can be pre-pended with `/graphite` prefix. For example, both `/graphite/metrics/find` and `/metrics/find` should work.
|
||||||
|
|
||||||
|
VictoriaMetrics accepts optional `extra_label=<label_name>=<label_value>` query arg for all the Graphite APIs. This arg can be used for limiting the scope of time series
|
||||||
|
visible to the given tenant. It is expected that the `extra_label` query arg is automatically set by auth proxy sitting in front of VictoriaMetrics.
|
||||||
|
[Contact us](mailto:sales@victoriametrics.com) if you need assistance with such a proxy.
|
||||||
|
|
||||||
VictoriaMetrics supports `__graphite__` pseudo-label for filtering time series with Graphite-compatible filters in [MetricsQL](https://victoriametrics.github.io/MetricsQL.html).
|
VictoriaMetrics supports `__graphite__` pseudo-label for filtering time series with Graphite-compatible filters in [MetricsQL](https://victoriametrics.github.io/MetricsQL.html).
|
||||||
For example, `{__graphite__="foo.*.bar"}` is equivalent to `{__name__=~"foo[.][^.]*[.]bar"}`, but it works faster
|
For example, `{__graphite__="foo.*.bar"}` is equivalent to `{__name__=~"foo[.][^.]*[.]bar"}`, but it works faster
|
||||||
and it is easier to use when migrating from Graphite to VictoriaMetrics.
|
and it is easier to use when migrating from Graphite to VictoriaMetrics.
|
||||||
|
@ -655,13 +659,13 @@ to your needs or when testing bugfixes.
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics` from the root folder of the repository.
|
2. Run `make victoria-metrics` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make victoria-metrics-prod` from the root folder of the repository.
|
2. Run `make victoria-metrics-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-prod` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### ARM build
|
### ARM build
|
||||||
|
@ -671,23 +675,21 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
### Development ARM build
|
### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics-arm` or `make victoria-metrics-arm64` from the root folder of the repository.
|
2. Run `make victoria-metrics-arm` or `make victoria-metrics-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-arm` or `victoria-metrics-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `victoria-metrics-arm` or `victoria-metrics-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production ARM build
|
### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make victoria-metrics-arm-prod` or `make victoria-metrics-arm64-prod` from the root folder of the repository.
|
2. Run `make victoria-metrics-arm-prod` or `make victoria-metrics-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-arm-prod` or `victoria-metrics-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `victoria-metrics-arm-prod` or `victoria-metrics-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Pure Go build (CGO_ENABLED=0)
|
### Pure Go build (CGO_ENABLED=0)
|
||||||
|
|
||||||
`Pure Go` mode builds only Go code without [cgo](https://golang.org/cmd/cgo/) dependencies.
|
`Pure Go` mode builds only Go code without [cgo](https://golang.org/cmd/cgo/) dependencies.
|
||||||
This is an experimental mode, which may result in a lower compression ratio and slower decompression performance.
|
|
||||||
Use it with caution!
|
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics-pure` from the root folder of the repository.
|
2. Run `make victoria-metrics-pure` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-pure` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics-pure` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
@ -1683,6 +1685,8 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
|
||||||
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
||||||
-promscrape.configCheckInterval duration
|
-promscrape.configCheckInterval duration
|
||||||
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
||||||
|
-promscrape.consul.waitTime duration
|
||||||
|
Wait time used by Consul service discovery. Default value is used if not set
|
||||||
-promscrape.consulSDCheckInterval duration
|
-promscrape.consulSDCheckInterval duration
|
||||||
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
||||||
-promscrape.disableCompression
|
-promscrape.disableCompression
|
||||||
|
@ -1744,7 +1748,7 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
|
||||||
-search.maxLookback duration
|
-search.maxLookback duration
|
||||||
Synonim to -search.lookback-delta from Prometheus. The value is dynamically detected from interval between time series datapoints if not set. It can be overridden on per-query basis via max_lookback arg. See also '-search.maxStalenessInterval' flag, which has the same meaining due to historical reasons
|
Synonim to -search.lookback-delta from Prometheus. The value is dynamically detected from interval between time series datapoints if not set. It can be overridden on per-query basis via max_lookback arg. See also '-search.maxStalenessInterval' flag, which has the same meaining due to historical reasons
|
||||||
-search.maxPointsPerTimeseries int
|
-search.maxPointsPerTimeseries int
|
||||||
The maximum points per a single timeseries returned from /api/v1/query_range. This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points returned to graphing UI such as Grafana. There is no sense in setting this limit to values significantly exceeding horizontal resoultion of the graph (default 30000)
|
The maximum points per a single timeseries returned from /api/v1/query_range. This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points returned to graphing UI such as Grafana. There is no sense in setting this limit to values bigger than the horizontal resolution of the graph (default 30000)
|
||||||
-search.maxQueryDuration duration
|
-search.maxQueryDuration duration
|
||||||
The maximum duration for query execution (default 30s)
|
The maximum duration for query execution (default 30s)
|
||||||
-search.maxQueryLen size
|
-search.maxQueryLen size
|
||||||
|
|
|
@ -22,7 +22,6 @@ import (
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmselect"
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmselect"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmselect/promql"
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmselect/promql"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmstorage"
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmstorage"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/envflag"
|
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fs"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fs"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
||||||
|
@ -149,7 +148,7 @@ func setUp() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func processFlags() {
|
func processFlags() {
|
||||||
envflag.Parse()
|
flag.Parse()
|
||||||
for _, fv := range []struct {
|
for _, fv := range []struct {
|
||||||
flag string
|
flag string
|
||||||
value string
|
value string
|
||||||
|
|
|
@ -61,7 +61,7 @@ Then send Influx data to `http://vmagent-host:8429`. See [these docs](https://vi
|
||||||
|
|
||||||
`vmagent` is also available in [docker images](https://hub.docker.com/r/victoriametrics/vmagent/tags).
|
`vmagent` is also available in [docker images](https://hub.docker.com/r/victoriametrics/vmagent/tags).
|
||||||
|
|
||||||
Pass `-help` to `vmagent` in order to see the full list of supported command-line flags with their descriptions.
|
Pass `-help` to `vmagent` in order to see [the full list of supported command-line flags with their descriptions](#advanced-usage).
|
||||||
|
|
||||||
|
|
||||||
## Configuration update
|
## Configuration update
|
||||||
|
@ -97,7 +97,7 @@ See [the corresponding Makefile rules](https://github.com/VictoriaMetrics/Victor
|
||||||
### Drop-in replacement for Prometheus
|
### Drop-in replacement for Prometheus
|
||||||
|
|
||||||
If you use Prometheus only for scraping metrics from various targets and forwarding those metrics to remote storage
|
If you use Prometheus only for scraping metrics from various targets and forwarding those metrics to remote storage
|
||||||
then `vmagent` can replace Prometheus. tupically, `vmagent` requires lower amounts of RAM, CPU and network bandwidth compared with Prometheus.
|
then `vmagent` can replace Prometheus. Typically, `vmagent` requires lower amounts of RAM, CPU and network bandwidth compared with Prometheus.
|
||||||
See [these docs](#how-to-collect-metrics-in-prometheus-format) for details.
|
See [these docs](#how-to-collect-metrics-in-prometheus-format) for details.
|
||||||
|
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ Also, Basic Auth can be enabled for the incoming `remote_write` requests with `-
|
||||||
|
|
||||||
### remote_write for clustered version
|
### remote_write for clustered version
|
||||||
|
|
||||||
While `vmagent` can accept data in several supported protocols (OpenTSDB, Influx, Prometheus, Graphite) and scrape data from various targets, writes are always peformed in Promethes remote_write protocol. Therefore for the clustered version, `-remoteWrite.url` the command-line flag should be configured as `<schema>://<vminsert-host>:8480/insert/<customer-id>/prometheus/api/v1/write`
|
While `vmagent` can accept data in several supported protocols (OpenTSDB, Influx, Prometheus, Graphite) and scrape data from various targets, writes are always peformed in Promethes remote_write protocol. Therefore for the [clustered version](https://victoriametrics.github.io/Cluster-VictoriaMetrics.html), `-remoteWrite.url` the command-line flag should be configured as `<schema>://<vminsert-host>:8480/insert/<customer-id>/prometheus/api/v1/write`
|
||||||
|
|
||||||
|
|
||||||
## How to collect metrics in Prometheus format
|
## How to collect metrics in Prometheus format
|
||||||
|
@ -152,11 +152,11 @@ The following scrape types in [scrape_config](https://prometheus.io/docs/prometh
|
||||||
* `static_configs` - is for scraping statically defined targets. See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config) for details.
|
* `static_configs` - is for scraping statically defined targets. See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config) for details.
|
||||||
* `file_sd_configs` - is for scraping targets defined in external files (aka file-based service discover).
|
* `file_sd_configs` - is for scraping targets defined in external files (aka file-based service discover).
|
||||||
See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#file_sd_config) for details
|
See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#file_sd_config) for details
|
||||||
* and `kubernetes_sd_configs` - for scraping targets in Kubernetes (k8s).
|
* `kubernetes_sd_configs` - for scraping targets in Kubernetes (k8s).
|
||||||
See [kubernetes_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config) for details.
|
See [kubernetes_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config) for details.
|
||||||
* `ec2_sd_configs` - is for scraping targets in Amazon EC2.
|
* `ec2_sd_configs` - is for scraping targets in Amazon EC2.
|
||||||
See [ec2_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#ec2_sd_config) for details.
|
See [ec2_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#ec2_sd_config) for details.
|
||||||
`vmagent` doesn't support the `profile` config param and aws credentials file yet.
|
`vmagent` doesn't support the `profile` config param yet.
|
||||||
* `gce_sd_configs` - is for scraping targets in Google Compute Engine (GCE).
|
* `gce_sd_configs` - is for scraping targets in Google Compute Engine (GCE).
|
||||||
See [gce_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#gce_sd_config) for details.
|
See [gce_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#gce_sd_config) for details.
|
||||||
`vmagent` provides the following additional functionality for `gce_sd_config`:
|
`vmagent` provides the following additional functionality for `gce_sd_config`:
|
||||||
|
@ -164,7 +164,7 @@ The following scrape types in [scrape_config](https://prometheus.io/docs/prometh
|
||||||
* if `zone` arg is missing then `vmagent` uses the zone for the instance where it runs;
|
* if `zone` arg is missing then `vmagent` uses the zone for the instance where it runs;
|
||||||
* if `zone` arg is equal to `"*"`, then `vmagent` discovers all the zones for the given project;
|
* if `zone` arg is equal to `"*"`, then `vmagent` discovers all the zones for the given project;
|
||||||
* `zone` may contain an arbitrary number of zones, i.e. `zone: [us-east1-a, us-east1-b]`.
|
* `zone` may contain an arbitrary number of zones, i.e. `zone: [us-east1-a, us-east1-b]`.
|
||||||
* `consul_sd_configs` - for scraping the targets registered in Consul.
|
* `consul_sd_configs` - is for scraping the targets registered in Consul.
|
||||||
See [consul_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config) for details.
|
See [consul_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config) for details.
|
||||||
* `dns_sd_configs` - is for scraping targets discovered from DNS records (SRV, A and AAAA).
|
* `dns_sd_configs` - is for scraping targets discovered from DNS records (SRV, A and AAAA).
|
||||||
See [dns_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#dns_sd_config) for details.
|
See [dns_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#dns_sd_config) for details.
|
||||||
|
@ -184,6 +184,7 @@ Please file feature requests to [our issue tracker](https://github.com/VictoriaM
|
||||||
to save network bandwidth.
|
to save network bandwidth.
|
||||||
* `disable_keepalive: true` - to disable [HTTP keep-alive connections](https://en.wikipedia.org/wiki/HTTP_persistent_connection) on a per-job basis.
|
* `disable_keepalive: true` - to disable [HTTP keep-alive connections](https://en.wikipedia.org/wiki/HTTP_persistent_connection) on a per-job basis.
|
||||||
By default, `vmagent` uses keep-alive connections to scrape targets to reduce overhead on connection re-establishing.
|
By default, `vmagent` uses keep-alive connections to scrape targets to reduce overhead on connection re-establishing.
|
||||||
|
* `stream_parse: true` - for scraping targets in a streaming manner. This may be useful for targets exporting big number of metrics.
|
||||||
|
|
||||||
Note that `vmagent` doesn't support `refresh_interval` option for these scrape configs. Use the corresponding `-promscrape.*CheckInterval`
|
Note that `vmagent` doesn't support `refresh_interval` option for these scrape configs. Use the corresponding `-promscrape.*CheckInterval`
|
||||||
command-line flag instead. For example, `-promscrape.consulSDCheckInterval=60s` sets `refresh_interval` for all the `consul_sd_configs`
|
command-line flag instead. For example, `-promscrape.consulSDCheckInterval=60s` sets `refresh_interval` for all the `consul_sd_configs`
|
||||||
|
@ -196,8 +197,12 @@ The file pointed by `-promscrape.config` may contain `%{ENV_VAR}` placeholders w
|
||||||
|
|
||||||
Labels can be added to metrics by the following mechanisms:
|
Labels can be added to metrics by the following mechanisms:
|
||||||
|
|
||||||
* The `global -> external_labels` section in `-promscrape.config` file. These labels are added only to metrics scraped from targets configured in the `-promscrape.config` file.
|
* The `global -> external_labels` section in `-promscrape.config` file. These labels are added only to metrics scraped from targets configured in the `-promscrape.config` file. They aren't added to metrics collected via other [data ingestion protocols](https://victoriametrics.github.io/#how-to-import-time-series-data).
|
||||||
* The `-remoteWrite.label` command-line flag. These labels are added to all the collected metrics before sending them to `-remoteWrite.url`.
|
* The `-remoteWrite.label` command-line flag. These labels are added to all the collected metrics before sending them to `-remoteWrite.url`. For example, the following command will start `vmagent`, which will add `{datacenter="foobar"}` label to all the metrics pushed to all the configured remote storage systems (all the `-remoteWrite.url` flag values):
|
||||||
|
|
||||||
|
```
|
||||||
|
/path/to/vmagent -remoteWrite.label=datacenter=foobar ...
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Relabeling
|
## Relabeling
|
||||||
|
@ -295,11 +300,11 @@ scrape_configs:
|
||||||
`vmagent` exports various metrics in Prometheus exposition format at `http://vmagent-host:8429/metrics` page. We recommend setting up regular scraping of this page
|
`vmagent` exports various metrics in Prometheus exposition format at `http://vmagent-host:8429/metrics` page. We recommend setting up regular scraping of this page
|
||||||
either through `vmagent` itself or by Prometheus so that the exported metrics may be analyzed later.
|
either through `vmagent` itself or by Prometheus so that the exported metrics may be analyzed later.
|
||||||
Use official [Grafana dashboard](https://grafana.com/grafana/dashboards/12683) for `vmagent` state overview.
|
Use official [Grafana dashboard](https://grafana.com/grafana/dashboards/12683) for `vmagent` state overview.
|
||||||
If you have suggestions for improvements or have found a bug -please open an issue on github or add a review to the dashboard.
|
If you have suggestions for improvements or have found a bug - please open an issue on github or add a review to the dashboard.
|
||||||
|
|
||||||
`vmagent` also exports the status for various targets at the following handlers:
|
`vmagent` also exports the status for various targets at the following handlers:
|
||||||
|
|
||||||
* `http://vmagent-host:8429/targets`. This handler returns human-readable plaintext status for every active target.
|
* `http://vmagent-host:8429/targets`. This handler returns human-readable status for every active target.
|
||||||
This page is easy to query from the command line with `wget`, `curl` or similar tools.
|
This page is easy to query from the command line with `wget`, `curl` or similar tools.
|
||||||
It accepts optional `show_original_labels=1` query arg which shows the original labels per each target before applying the relabeling.
|
It accepts optional `show_original_labels=1` query arg which shows the original labels per each target before applying the relabeling.
|
||||||
This information may be useful for debugging target relabeling.
|
This information may be useful for debugging target relabeling.
|
||||||
|
@ -407,19 +412,19 @@ We recommend using [binary releases](https://github.com/VictoriaMetrics/Victoria
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmagent` from the root folder of the repository.
|
2. Run `make vmagent` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds the `vmagent` binary and puts it into the `bin` folder.
|
It builds the `vmagent` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmagent-prod` from the root folder of the repository.
|
2. Run `make vmagent-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmagent-prod` binary and puts it into the `bin` folder.
|
It builds `vmagent-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
||||||
Run `make package-vmagent`. It builds `victoriametrics/vmagent:<PKG_TAG>` docker image locally.
|
Run `make package-vmagent`. It builds `victoriametrics/vmagent:<PKG_TAG>` docker image locally.
|
||||||
`<PKG_TAG>` is an auto-generated image tag, which depends on source code in the repository.
|
`<PKG_TAG>` is an auto-generated image tag, which depends on source code in [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package-vmagent`.
|
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package-vmagent`.
|
||||||
|
|
||||||
The base docker image is [alpine](https://hub.docker.com/_/alpine) but it is possible to use any other base image
|
The base docker image is [alpine](https://hub.docker.com/_/alpine) but it is possible to use any other base image
|
||||||
|
@ -436,13 +441,13 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
### Development ARM build
|
### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmagent-arm` or `make vmagent-arm64` from the root folder of the repository.
|
2. Run `make vmagent-arm` or `make vmagent-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics)
|
||||||
It builds `vmagent-arm` or `vmagent-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmagent-arm` or `vmagent-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production ARM build
|
### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmagent-arm-prod` or `make vmagent-arm64-prod` from the root folder of the repository.
|
2. Run `make vmagent-arm-prod` or `make vmagent-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmagent-arm-prod` or `vmagent-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmagent-arm-prod` or `vmagent-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
@ -483,7 +488,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-dryRun
|
-dryRun
|
||||||
Whether to check only config files without running vmagent. The following files are checked: -promscrape.config, -remoteWrite.relabelConfig, -remoteWrite.urlRelabelConfig . Unknown config entries are allowed in -promscrape.config by default. This can be changed with -promscrape.config.strictParse
|
Whether to check only config files without running vmagent. The following files are checked: -promscrape.config, -remoteWrite.relabelConfig, -remoteWrite.urlRelabelConfig . Unknown config entries are allowed in -promscrape.config by default. This can be changed with -promscrape.config.strictParse
|
||||||
-enableTCP6
|
-enableTCP6
|
||||||
Whether to enable IPv6 for listening and dialing. By default only IPv4 TCP is used
|
Whether to enable IPv6 for listening and dialing. By default only IPv4 TCP and UDP is used
|
||||||
-envflag.enable
|
-envflag.enable
|
||||||
Whether to enable reading flags from environment variables additionally to command line. Command line flag values have priority over values from environment vars. Flags are read only from command line if this flag isn't set
|
Whether to enable reading flags from environment variables additionally to command line. Command line flag values have priority over values from environment vars. Flags are read only from command line if this flag isn't set
|
||||||
-envflag.prefix string
|
-envflag.prefix string
|
||||||
|
@ -586,6 +591,8 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
||||||
-promscrape.configCheckInterval duration
|
-promscrape.configCheckInterval duration
|
||||||
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
||||||
|
-promscrape.consul.waitTime duration
|
||||||
|
Wait time used by Consul service discovery. Default value is used if not set
|
||||||
-promscrape.consulSDCheckInterval duration
|
-promscrape.consulSDCheckInterval duration
|
||||||
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
||||||
-promscrape.disableCompression
|
-promscrape.disableCompression
|
||||||
|
@ -615,7 +622,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-promscrape.kubernetesSDCheckInterval duration
|
-promscrape.kubernetesSDCheckInterval duration
|
||||||
Interval for checking for changes in Kubernetes API server. This works only if kubernetes_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config for details (default 30s)
|
Interval for checking for changes in Kubernetes API server. This works only if kubernetes_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config for details (default 30s)
|
||||||
-promscrape.maxDroppedTargets int
|
-promscrape.maxDroppedTargets int
|
||||||
The maximum number of droppedTargets shown at /api/v1/targets page. Increase this value if your setup drops more scrape targets during relabeling and you need investigating labels for all the dropped targets. Note that the increased number of tracked dropped targets may result in increased memory usage (default 1000)
|
The maximum number of droppedTargets to show at /api/v1/targets page. Increase this value if your setup drops more scrape targets during relabeling and you need investigating labels for all the dropped targets. Note that the increased number of tracked dropped targets may result in increased memory usage (default 1000)
|
||||||
-promscrape.maxScrapeSize size
|
-promscrape.maxScrapeSize size
|
||||||
The maximum size of scrape response in bytes to process from Prometheus targets. Bigger responses are rejected
|
The maximum size of scrape response in bytes to process from Prometheus targets. Bigger responses are rejected
|
||||||
Supports the following optional suffixes for size values: KB, MB, GB, KiB, MiB, GiB (default 16777216)
|
Supports the following optional suffixes for size values: KB, MB, GB, KiB, MiB, GiB (default 16777216)
|
||||||
|
@ -639,7 +646,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-remoteWrite.flushInterval duration
|
-remoteWrite.flushInterval duration
|
||||||
Interval for flushing the data to remote storage. This option takes effect only when less than 10K data points per second are pushed to -remoteWrite.url (default 1s)
|
Interval for flushing the data to remote storage. This option takes effect only when less than 10K data points per second are pushed to -remoteWrite.url (default 1s)
|
||||||
-remoteWrite.label array
|
-remoteWrite.label array
|
||||||
Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. Pass multiple -remoteWrite.label flags in order to add multiple flags to metrics before sending them to remote storage
|
Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. Pass multiple -remoteWrite.label flags in order to add multiple labels to metrics before sending them to remote storage
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
-remoteWrite.maxBlockSize size
|
-remoteWrite.maxBlockSize size
|
||||||
The maximum size in bytes of unpacked request to send to remote storage. It shouldn't exceed -maxInsertRequestSize from VictoriaMetrics
|
The maximum size in bytes of unpacked request to send to remote storage. It shouldn't exceed -maxInsertRequestSize from VictoriaMetrics
|
||||||
|
@ -684,7 +691,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
Optional TLS server name to use for connections to -remoteWrite.url. By default the server name from -remoteWrite.url is used. If multiple args are set, then they are applied independently for the corresponding -remoteWrite.url
|
Optional TLS server name to use for connections to -remoteWrite.url. By default the server name from -remoteWrite.url is used. If multiple args are set, then they are applied independently for the corresponding -remoteWrite.url
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
-remoteWrite.tmpDataPath string
|
-remoteWrite.tmpDataPath string
|
||||||
Path to directory where temporary data for remote write component is stored (default "vmagent-remotewrite-data")
|
Path to directory where temporary data for remote write component is stored. See also -remoteWrite.maxDiskUsagePerURL (default "vmagent-remotewrite-data")
|
||||||
-remoteWrite.url array
|
-remoteWrite.url array
|
||||||
Remote storage URL to write data to. It must support Prometheus remote_write API. It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems
|
Remote storage URL to write data to. It must support Prometheus remote_write API. It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
|
|
|
@ -96,7 +96,8 @@ func insertRows(db string, rows []parser.Row, extraLabels []prompbmarshal.Label)
|
||||||
if !*skipMeasurement {
|
if !*skipMeasurement {
|
||||||
ctx.metricGroupBuf = append(ctx.metricGroupBuf, r.Measurement...)
|
ctx.metricGroupBuf = append(ctx.metricGroupBuf, r.Measurement...)
|
||||||
}
|
}
|
||||||
skipFieldKey := len(r.Fields) == 1 && *skipSingleField
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1139
|
||||||
|
skipFieldKey := len(r.Measurement) > 0 && len(r.Fields) == 1 && *skipSingleField
|
||||||
if len(ctx.metricGroupBuf) > 0 && !skipFieldKey {
|
if len(ctx.metricGroupBuf) > 0 && !skipFieldKey {
|
||||||
ctx.metricGroupBuf = append(ctx.metricGroupBuf, *measurementFieldSeparator...)
|
ctx.metricGroupBuf = append(ctx.metricGroupBuf, *measurementFieldSeparator...)
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
unparsedLabelsGlobal = flagutil.NewArray("remoteWrite.label", "Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. "+
|
unparsedLabelsGlobal = flagutil.NewArray("remoteWrite.label", "Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. "+
|
||||||
"Pass multiple -remoteWrite.label flags in order to add multiple flags to metrics before sending them to remote storage")
|
"Pass multiple -remoteWrite.label flags in order to add multiple labels to metrics before sending them to remote storage")
|
||||||
relabelConfigPathGlobal = flag.String("remoteWrite.relabelConfig", "", "Optional path to file with relabel_config entries. These entries are applied to all the metrics "+
|
relabelConfigPathGlobal = flag.String("remoteWrite.relabelConfig", "", "Optional path to file with relabel_config entries. These entries are applied to all the metrics "+
|
||||||
"before sending them to -remoteWrite.url. See https://victoriametrics.github.io/vmagent.html#relabeling for details")
|
"before sending them to -remoteWrite.url. See https://victoriametrics.github.io/vmagent.html#relabeling for details")
|
||||||
relabelConfigPaths = flagutil.NewArray("remoteWrite.urlRelabelConfig", "Optional path to relabel config for the corresponding -remoteWrite.url")
|
relabelConfigPaths = flagutil.NewArray("remoteWrite.urlRelabelConfig", "Optional path to relabel config for the corresponding -remoteWrite.url")
|
||||||
|
|
|
@ -21,8 +21,9 @@ var (
|
||||||
remoteWriteURLs = flagutil.NewArray("remoteWrite.url", "Remote storage URL to write data to. It must support Prometheus remote_write API. "+
|
remoteWriteURLs = flagutil.NewArray("remoteWrite.url", "Remote storage URL to write data to. It must support Prometheus remote_write API. "+
|
||||||
"It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . "+
|
"It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . "+
|
||||||
"Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems")
|
"Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems")
|
||||||
tmpDataPath = flag.String("remoteWrite.tmpDataPath", "vmagent-remotewrite-data", "Path to directory where temporary data for remote write component is stored")
|
tmpDataPath = flag.String("remoteWrite.tmpDataPath", "vmagent-remotewrite-data", "Path to directory where temporary data for remote write component is stored. "+
|
||||||
queues = flag.Int("remoteWrite.queues", 4, "The number of concurrent queues to each -remoteWrite.url. Set more queues if default number of queues "+
|
"See also -remoteWrite.maxDiskUsagePerURL")
|
||||||
|
queues = flag.Int("remoteWrite.queues", 4, "The number of concurrent queues to each -remoteWrite.url. Set more queues if default number of queues "+
|
||||||
"isn't enough for sending high volume of collected data to remote storage")
|
"isn't enough for sending high volume of collected data to remote storage")
|
||||||
showRemoteWriteURL = flag.Bool("remoteWrite.showURL", false, "Whether to show -remoteWrite.url in the exported metrics. "+
|
showRemoteWriteURL = flag.Bool("remoteWrite.showURL", false, "Whether to show -remoteWrite.url in the exported metrics. "+
|
||||||
"It is hidden by default, since it can contain sensitive info such as auth key")
|
"It is hidden by default, since it can contain sensitive info such as auth key")
|
||||||
|
|
|
@ -51,8 +51,7 @@ Then configure `vmalert` accordingly:
|
||||||
-remoteWrite.url=http://localhost:8428 \ # remote write compatible storage to persist rules
|
-remoteWrite.url=http://localhost:8428 \ # remote write compatible storage to persist rules
|
||||||
-remoteRead.url=http://localhost:8428 \ # PromQL compatible datasource to restore alerts state from
|
-remoteRead.url=http://localhost:8428 \ # PromQL compatible datasource to restore alerts state from
|
||||||
-external.label=cluster=east-1 \ # External label to be applied for each rule
|
-external.label=cluster=east-1 \ # External label to be applied for each rule
|
||||||
-external.label=replica=a \ # Multiple external labels may be set
|
-external.label=replica=a # Multiple external labels may be set
|
||||||
-evaluationInterval=3s # Default evaluation interval if not specified in rules group
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you run multiple `vmalert` services for the same datastore or AlertManager - do not forget
|
If you run multiple `vmalert` services for the same datastore or AlertManager - do not forget
|
||||||
|
@ -392,13 +391,13 @@ It is recommended using
|
||||||
#### Development build
|
#### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmalert` from the root folder of the repository.
|
2. Run `make vmalert` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert` binary and puts it into the `bin` folder.
|
It builds `vmalert` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production build
|
#### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmalert-prod` from the root folder of the repository.
|
2. Run `make vmalert-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-prod` binary and puts it into the `bin` folder.
|
It builds `vmalert-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
@ -409,11 +408,11 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
#### Development ARM build
|
#### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmalert-arm` or `make vmalert-arm64` from the root folder of the repository.
|
2. Run `make vmalert-arm` or `make vmalert-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-arm` or `vmalert-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmalert-arm` or `vmalert-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production ARM build
|
#### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmalert-arm-prod` or `make vmalert-arm64-prod` from the root folder of the repository.
|
2. Run `make vmalert-arm-prod` or `make vmalert-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-arm-prod` or `vmalert-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmalert-arm-prod` or `vmalert-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
|
@ -111,13 +111,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmauth` from the root folder of the repository.
|
2. Run `make vmauth` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmauth` binary and puts it into the `bin` folder.
|
It builds `vmauth` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmauth-prod` from the root folder of the repository.
|
2. Run `make vmauth-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmauth-prod` binary and puts it into the `bin` folder.
|
It builds `vmauth-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
|
@ -236,13 +236,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmbackup` from the root folder of the repository.
|
2. Run `make vmbackup` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmbackup` binary and puts it into the `bin` folder.
|
It builds `vmbackup` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmbackup-prod` from the root folder of the repository.
|
2. Run `make vmbackup-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmbackup-prod` binary and puts it into the `bin` folder.
|
It builds `vmbackup-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
|
@ -49,13 +49,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmctl` from the root folder of the repository.
|
2. Run `make vmctl` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl` binary and puts it into the `bin` folder.
|
It builds `vmctl` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmctl-prod` from the root folder of the repository.
|
2. Run `make vmctl-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-prod` binary and puts it into the `bin` folder.
|
It builds `vmctl-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
@ -78,13 +78,13 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
#### Development ARM build
|
#### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmctl-arm` or `make vmctl-arm64` from the root folder of the repository.
|
2. Run `make vmctl-arm` or `make vmctl-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-arm` or `vmctl-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmctl-arm` or `vmctl-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production ARM build
|
#### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmctl-arm-prod` or `make vmctl-arm64-prod` from the root folder of the repository.
|
2. Run `make vmctl-arm-prod` or `make vmctl-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-arm-prod` or `vmctl-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmctl-arm-prod` or `vmctl-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,8 @@ func insertRows(db string, rows []parser.Row, extraLabels []prompbmarshal.Label)
|
||||||
if !*skipMeasurement {
|
if !*skipMeasurement {
|
||||||
ctx.metricGroupBuf = append(ctx.metricGroupBuf, r.Measurement...)
|
ctx.metricGroupBuf = append(ctx.metricGroupBuf, r.Measurement...)
|
||||||
}
|
}
|
||||||
skipFieldKey := len(r.Fields) == 1 && *skipSingleField
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1139
|
||||||
|
skipFieldKey := len(r.Measurement) > 0 && len(r.Fields) == 1 && *skipSingleField
|
||||||
if len(ctx.metricGroupBuf) > 0 && !skipFieldKey {
|
if len(ctx.metricGroupBuf) > 0 && !skipFieldKey {
|
||||||
ctx.metricGroupBuf = append(ctx.metricGroupBuf, *measurementFieldSeparator...)
|
ctx.metricGroupBuf = append(ctx.metricGroupBuf, *measurementFieldSeparator...)
|
||||||
}
|
}
|
||||||
|
|
|
@ -132,13 +132,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmrestore` from the root folder of the repository.
|
2. Run `make vmrestore` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmrestore` binary and puts it into the `bin` folder.
|
It builds `vmrestore` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmrestore-prod` from the root folder of the repository.
|
2. Run `make vmrestore-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmrestore-prod` binary and puts it into the `bin` folder.
|
It builds `vmrestore-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
|
@ -76,7 +76,7 @@ func MetricsFindHandler(startTime time.Time, w http.ResponseWriter, r *http.Requ
|
||||||
MinTimestamp: from,
|
MinTimestamp: from,
|
||||||
MaxTimestamp: until,
|
MaxTimestamp: until,
|
||||||
}
|
}
|
||||||
paths, err := metricsFind(tr, label, query, delimiter[0], false, deadline)
|
paths, err := metricsFind(tr, label, "", query, delimiter[0], false, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -155,7 +155,7 @@ func MetricsExpandHandler(startTime time.Time, w http.ResponseWriter, r *http.Re
|
||||||
}
|
}
|
||||||
m := make(map[string][]string, len(queries))
|
m := make(map[string][]string, len(queries))
|
||||||
for _, query := range queries {
|
for _, query := range queries {
|
||||||
paths, err := metricsFind(tr, label, query, delimiter[0], true, deadline)
|
paths, err := metricsFind(tr, label, "", query, delimiter[0], true, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -222,14 +222,11 @@ func MetricsIndexHandler(startTime time.Time, w http.ResponseWriter, r *http.Req
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// metricsFind searches for label values that match the given query.
|
// metricsFind searches for label values that match the given qHead and qTail.
|
||||||
func metricsFind(tr storage.TimeRange, label, query string, delimiter byte, isExpand bool, deadline searchutils.Deadline) ([]string, error) {
|
func metricsFind(tr storage.TimeRange, label, qHead, qTail string, delimiter byte, isExpand bool, deadline searchutils.Deadline) ([]string, error) {
|
||||||
n := strings.IndexAny(query, "*{[")
|
n := strings.IndexAny(qTail, "*{[")
|
||||||
if n < 0 || n == len(query)-1 && strings.HasSuffix(query, "*") {
|
if n < 0 {
|
||||||
expandTail := n >= 0
|
query := qHead + qTail
|
||||||
if expandTail {
|
|
||||||
query = query[:len(query)-1]
|
|
||||||
}
|
|
||||||
suffixes, err := netstorage.GetTagValueSuffixes(tr, label, query, delimiter, deadline)
|
suffixes, err := netstorage.GetTagValueSuffixes(tr, label, query, delimiter, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -237,29 +234,44 @@ func metricsFind(tr storage.TimeRange, label, query string, delimiter byte, isEx
|
||||||
if len(suffixes) == 0 {
|
if len(suffixes) == 0 {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
if !expandTail && len(query) > 0 && query[len(query)-1] == delimiter {
|
if len(query) > 0 && query[len(query)-1] == delimiter {
|
||||||
return []string{query}, nil
|
return []string{query}, nil
|
||||||
}
|
}
|
||||||
results := make([]string, 0, len(suffixes))
|
results := make([]string, 0, len(suffixes))
|
||||||
for _, suffix := range suffixes {
|
for _, suffix := range suffixes {
|
||||||
if expandTail || len(suffix) == 0 || len(suffix) == 1 && suffix[0] == delimiter {
|
if len(suffix) == 0 || len(suffix) == 1 && suffix[0] == delimiter {
|
||||||
results = append(results, query+suffix)
|
results = append(results, query+suffix)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return results, nil
|
return results, nil
|
||||||
}
|
}
|
||||||
subquery := query[:n] + "*"
|
if n == len(qTail)-1 && strings.HasSuffix(qTail, "*") {
|
||||||
paths, err := metricsFind(tr, label, subquery, delimiter, isExpand, deadline)
|
query := qHead + qTail[:len(qTail)-1]
|
||||||
|
suffixes, err := netstorage.GetTagValueSuffixes(tr, label, query, delimiter, deadline)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(suffixes) == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
results := make([]string, 0, len(suffixes))
|
||||||
|
for _, suffix := range suffixes {
|
||||||
|
results = append(results, query+suffix)
|
||||||
|
}
|
||||||
|
return results, nil
|
||||||
|
}
|
||||||
|
qHead += qTail[:n]
|
||||||
|
paths, err := metricsFind(tr, label, qHead, "*", delimiter, isExpand, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
tail := ""
|
suffix := qTail[n:]
|
||||||
suffix := query[n:]
|
qTail = ""
|
||||||
if m := strings.IndexByte(suffix, delimiter); m >= 0 {
|
if m := strings.IndexByte(suffix, delimiter); m >= 0 {
|
||||||
tail = suffix[m+1:]
|
qTail = suffix[m+1:]
|
||||||
suffix = suffix[:m+1]
|
suffix = suffix[:m+1]
|
||||||
}
|
}
|
||||||
qPrefix := query[:n] + suffix
|
qPrefix := qHead + suffix
|
||||||
rePrefix, err := getRegexpForQuery(qPrefix, delimiter)
|
rePrefix, err := getRegexpForQuery(qPrefix, delimiter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("cannot convert query %q to regexp: %w", qPrefix, err)
|
return nil, fmt.Errorf("cannot convert query %q to regexp: %w", qPrefix, err)
|
||||||
|
@ -269,12 +281,11 @@ func metricsFind(tr storage.TimeRange, label, query string, delimiter byte, isEx
|
||||||
if !rePrefix.MatchString(path) {
|
if !rePrefix.MatchString(path) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if tail == "" {
|
if qTail == "" {
|
||||||
results = append(results, path)
|
results = append(results, path)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
subquery := path + tail
|
fullPaths, err := metricsFind(tr, label, path, qTail, delimiter, isExpand, deadline)
|
||||||
fullPaths, err := metricsFind(tr, label, subquery, delimiter, isExpand, deadline)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,13 +32,17 @@ func TagsDelSeriesHandler(startTime time.Time, w http.ResponseWriter, r *http.Re
|
||||||
var row graphiteparser.Row
|
var row graphiteparser.Row
|
||||||
var tagsPool []graphiteparser.Tag
|
var tagsPool []graphiteparser.Tag
|
||||||
ct := startTime.UnixNano() / 1e6
|
ct := startTime.UnixNano() / 1e6
|
||||||
|
etfs, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot setup tag filters: %w", err)
|
||||||
|
}
|
||||||
for _, path := range paths {
|
for _, path := range paths {
|
||||||
var err error
|
var err error
|
||||||
tagsPool, err = row.UnmarshalMetricAndTags(path, tagsPool[:0])
|
tagsPool, err = row.UnmarshalMetricAndTags(path, tagsPool[:0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("cannot parse path=%q: %w", path, err)
|
return fmt.Errorf("cannot parse path=%q: %w", path, err)
|
||||||
}
|
}
|
||||||
tfs := make([]storage.TagFilter, 0, 1+len(row.Tags))
|
tfs := make([]storage.TagFilter, 0, 1+len(row.Tags)+len(etfs))
|
||||||
tfs = append(tfs, storage.TagFilter{
|
tfs = append(tfs, storage.TagFilter{
|
||||||
Key: nil,
|
Key: nil,
|
||||||
Value: []byte(row.Metric),
|
Value: []byte(row.Metric),
|
||||||
|
@ -49,6 +53,7 @@ func TagsDelSeriesHandler(startTime time.Time, w http.ResponseWriter, r *http.Re
|
||||||
Value: []byte(tag.Value),
|
Value: []byte(tag.Value),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
tfs = append(tfs, etfs...)
|
||||||
sq := storage.NewSearchQuery(0, ct, [][]storage.TagFilter{tfs})
|
sq := storage.NewSearchQuery(0, ct, [][]storage.TagFilter{tfs})
|
||||||
n, err := netstorage.DeleteSeries(sq, deadline)
|
n, err := netstorage.DeleteSeries(sq, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -176,7 +181,11 @@ func TagsAutoCompleteValuesHandler(startTime time.Time, w http.ResponseWriter, r
|
||||||
valuePrefix := r.FormValue("valuePrefix")
|
valuePrefix := r.FormValue("valuePrefix")
|
||||||
exprs := r.Form["expr"]
|
exprs := r.Form["expr"]
|
||||||
var tagValues []string
|
var tagValues []string
|
||||||
if len(exprs) == 0 {
|
etfs, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot setup tag filters: %w", err)
|
||||||
|
}
|
||||||
|
if len(exprs) == 0 && len(etfs) == 0 {
|
||||||
// Fast path: there are no `expr` filters, so use netstorage.GetGraphiteTagValues.
|
// Fast path: there are no `expr` filters, so use netstorage.GetGraphiteTagValues.
|
||||||
// Escape special chars in tagPrefix as Graphite does.
|
// Escape special chars in tagPrefix as Graphite does.
|
||||||
// See https://github.com/graphite-project/graphite-web/blob/3ad279df5cb90b211953e39161df416e54a84948/webapp/graphite/tags/base.py#L228
|
// See https://github.com/graphite-project/graphite-web/blob/3ad279df5cb90b211953e39161df416e54a84948/webapp/graphite/tags/base.py#L228
|
||||||
|
@ -187,7 +196,7 @@ func TagsAutoCompleteValuesHandler(startTime time.Time, w http.ResponseWriter, r
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Slow path: use netstorage.SearchMetricNames for applying `expr` filters.
|
// Slow path: use netstorage.SearchMetricNames for applying `expr` filters.
|
||||||
sq, err := getSearchQueryForExprs(startTime, exprs)
|
sq, err := getSearchQueryForExprs(startTime, etfs, exprs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -257,7 +266,11 @@ func TagsAutoCompleteTagsHandler(startTime time.Time, w http.ResponseWriter, r *
|
||||||
tagPrefix := r.FormValue("tagPrefix")
|
tagPrefix := r.FormValue("tagPrefix")
|
||||||
exprs := r.Form["expr"]
|
exprs := r.Form["expr"]
|
||||||
var labels []string
|
var labels []string
|
||||||
if len(exprs) == 0 {
|
etfs, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot setup tag filters: %w", err)
|
||||||
|
}
|
||||||
|
if len(exprs) == 0 && len(etfs) == 0 {
|
||||||
// Fast path: there are no `expr` filters, so use netstorage.GetGraphiteTags.
|
// Fast path: there are no `expr` filters, so use netstorage.GetGraphiteTags.
|
||||||
|
|
||||||
// Escape special chars in tagPrefix as Graphite does.
|
// Escape special chars in tagPrefix as Graphite does.
|
||||||
|
@ -269,7 +282,7 @@ func TagsAutoCompleteTagsHandler(startTime time.Time, w http.ResponseWriter, r *
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Slow path: use netstorage.SearchMetricNames for applying `expr` filters.
|
// Slow path: use netstorage.SearchMetricNames for applying `expr` filters.
|
||||||
sq, err := getSearchQueryForExprs(startTime, exprs)
|
sq, err := getSearchQueryForExprs(startTime, etfs, exprs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -332,7 +345,11 @@ func TagsFindSeriesHandler(startTime time.Time, w http.ResponseWriter, r *http.R
|
||||||
if len(exprs) == 0 {
|
if len(exprs) == 0 {
|
||||||
return fmt.Errorf("expecting at least one `expr` query arg")
|
return fmt.Errorf("expecting at least one `expr` query arg")
|
||||||
}
|
}
|
||||||
sq, err := getSearchQueryForExprs(startTime, exprs)
|
etfs, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot setup tag filters: %w", err)
|
||||||
|
}
|
||||||
|
sq, err := getSearchQueryForExprs(startTime, etfs, exprs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -457,12 +474,13 @@ func getInt(r *http.Request, argName string) (int, error) {
|
||||||
return n, nil
|
return n, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getSearchQueryForExprs(startTime time.Time, exprs []string) (*storage.SearchQuery, error) {
|
func getSearchQueryForExprs(startTime time.Time, etfs []storage.TagFilter, exprs []string) (*storage.SearchQuery, error) {
|
||||||
tfs, err := exprsToTagFilters(exprs)
|
tfs, err := exprsToTagFilters(exprs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
ct := startTime.UnixNano() / 1e6
|
ct := startTime.UnixNano() / 1e6
|
||||||
|
tfs = append(tfs, etfs...)
|
||||||
sq := storage.NewSearchQuery(0, ct, [][]storage.TagFilter{tfs})
|
sq := storage.NewSearchQuery(0, ct, [][]storage.TagFilter{tfs})
|
||||||
return sq, nil
|
return sq, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -279,7 +279,7 @@ func ExportHandler(startTime time.Time, w http.ResponseWriter, r *http.Request)
|
||||||
if start >= end {
|
if start >= end {
|
||||||
end = start + defaultStep
|
end = start + defaultStep
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -472,7 +472,7 @@ func LabelValuesHandler(startTime time.Time, labelName string, w http.ResponseWr
|
||||||
if err := r.ParseForm(); err != nil {
|
if err := r.ParseForm(); err != nil {
|
||||||
return fmt.Errorf("cannot parse form values: %w", err)
|
return fmt.Errorf("cannot parse form values: %w", err)
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -687,7 +687,7 @@ func LabelsHandler(startTime time.Time, w http.ResponseWriter, r *http.Request)
|
||||||
if err := r.ParseForm(); err != nil {
|
if err := r.ParseForm(); err != nil {
|
||||||
return fmt.Errorf("cannot parse form values: %w", err)
|
return fmt.Errorf("cannot parse form values: %w", err)
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -952,7 +952,7 @@ func QueryHandler(startTime time.Time, w http.ResponseWriter, r *http.Request) e
|
||||||
if len(query) > maxQueryLen.N {
|
if len(query) > maxQueryLen.N {
|
||||||
return fmt.Errorf("too long query; got %d bytes; mustn't exceed `-search.maxQueryLen=%d` bytes", len(query), maxQueryLen.N)
|
return fmt.Errorf("too long query; got %d bytes; mustn't exceed `-search.maxQueryLen=%d` bytes", len(query), maxQueryLen.N)
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -1086,7 +1086,7 @@ func QueryRangeHandler(startTime time.Time, w http.ResponseWriter, r *http.Reque
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -1236,26 +1236,6 @@ func getMaxLookback(r *http.Request) (int64, error) {
|
||||||
return searchutils.GetDuration(r, "max_lookback", d)
|
return searchutils.GetDuration(r, "max_lookback", d)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getEnforcedTagFiltersFromRequest(r *http.Request) ([]storage.TagFilter, error) {
|
|
||||||
// fast path.
|
|
||||||
extraLabels := r.Form["extra_label"]
|
|
||||||
if len(extraLabels) == 0 {
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
tagFilters := make([]storage.TagFilter, 0, len(extraLabels))
|
|
||||||
for _, match := range extraLabels {
|
|
||||||
tmp := strings.SplitN(match, "=", 2)
|
|
||||||
if len(tmp) != 2 {
|
|
||||||
return nil, fmt.Errorf("`extra_label` query arg must have the format `name=value`; got %q", match)
|
|
||||||
}
|
|
||||||
tagFilters = append(tagFilters, storage.TagFilter{
|
|
||||||
Key: []byte(tmp[0]),
|
|
||||||
Value: []byte(tmp[1]),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return tagFilters, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func addEnforcedFiltersToTagFilterss(dstTfss [][]storage.TagFilter, enforcedFilters []storage.TagFilter) [][]storage.TagFilter {
|
func addEnforcedFiltersToTagFilterss(dstTfss [][]storage.TagFilter, enforcedFilters []storage.TagFilter) [][]storage.TagFilter {
|
||||||
if len(dstTfss) == 0 {
|
if len(dstTfss) == 0 {
|
||||||
return [][]storage.TagFilter{
|
return [][]storage.TagFilter{
|
||||||
|
@ -1289,7 +1269,7 @@ func getTagFilterssFromRequest(r *http.Request) ([][]storage.TagFilter, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
etf, err := getEnforcedTagFiltersFromRequest(r)
|
etf, err := searchutils.GetEnforcedTagFiltersFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ package prometheus
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math"
|
"math"
|
||||||
"net/http"
|
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -232,40 +231,3 @@ func Test_addEnforcedFiltersToTagFilterss(t *testing.T) {
|
||||||
{tfFromKV("l2", "v2"), tfFromKV("ext-l1", "v2")},
|
{tfFromKV("l2", "v2"), tfFromKV("ext-l1", "v2")},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_getEnforcedTagFiltersFromRequest(t *testing.T) {
|
|
||||||
httpReqWithForm := func(tfs []string) *http.Request {
|
|
||||||
return &http.Request{
|
|
||||||
Form: map[string][]string{
|
|
||||||
"extra_label": tfs,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
f := func(t *testing.T, r *http.Request, want []storage.TagFilter, wantErr bool) {
|
|
||||||
t.Helper()
|
|
||||||
got, err := getEnforcedTagFiltersFromRequest(r)
|
|
||||||
if (err != nil) != wantErr {
|
|
||||||
t.Fatalf("unexpected error: %v", err)
|
|
||||||
}
|
|
||||||
if !reflect.DeepEqual(got, want) {
|
|
||||||
t.Fatalf("unxpected result for getEnforcedTagFiltersFromRequest, \ngot: %v,\n want: %v", want, got)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
f(t, httpReqWithForm([]string{"label=value"}),
|
|
||||||
[]storage.TagFilter{
|
|
||||||
tfFromKV("label", "value"),
|
|
||||||
},
|
|
||||||
false)
|
|
||||||
|
|
||||||
f(t, httpReqWithForm([]string{"job=vmagent", "dc=gce"}),
|
|
||||||
[]storage.TagFilter{tfFromKV("job", "vmagent"), tfFromKV("dc", "gce")},
|
|
||||||
false,
|
|
||||||
)
|
|
||||||
f(t, httpReqWithForm([]string{"bad_filter"}),
|
|
||||||
nil,
|
|
||||||
true,
|
|
||||||
)
|
|
||||||
f(t, &http.Request{},
|
|
||||||
nil, false)
|
|
||||||
}
|
|
||||||
|
|
|
@ -267,6 +267,12 @@ func mergeNonOverlappingTimeseries(dst, src *timeseries) bool {
|
||||||
if overlaps > 2 {
|
if overlaps > 2 {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
// Do not merge time series with too small number of datapoints.
|
||||||
|
// This can be the case during evaluation of instant queries (alerting or recording rules).
|
||||||
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1141
|
||||||
|
if len(srcValues) <= 2 && len(dstValues) <= 2 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
// Time series can be merged. Merge them.
|
// Time series can be merged. Merge them.
|
||||||
for i, v := range srcValues {
|
for i, v := range srcValues {
|
||||||
if math.IsNaN(v) {
|
if math.IsNaN(v) {
|
||||||
|
|
|
@ -21,7 +21,7 @@ var (
|
||||||
disableCache = flag.Bool("search.disableCache", false, "Whether to disable response caching. This may be useful during data backfilling")
|
disableCache = flag.Bool("search.disableCache", false, "Whether to disable response caching. This may be useful during data backfilling")
|
||||||
maxPointsPerTimeseries = flag.Int("search.maxPointsPerTimeseries", 30e3, "The maximum points per a single timeseries returned from /api/v1/query_range. "+
|
maxPointsPerTimeseries = flag.Int("search.maxPointsPerTimeseries", 30e3, "The maximum points per a single timeseries returned from /api/v1/query_range. "+
|
||||||
"This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points "+
|
"This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points "+
|
||||||
"returned to graphing UI such as Grafana. There is no sense in setting this limit to values significantly exceeding horizontal resoultion of the graph")
|
"returned to graphing UI such as Grafana. There is no sense in setting this limit to values bigger than the horizontal resolution of the graph")
|
||||||
)
|
)
|
||||||
|
|
||||||
// The minimum number of points per timeseries for enabling time rounding.
|
// The minimum number of points per timeseries for enabling time rounding.
|
||||||
|
|
|
@ -165,7 +165,7 @@ var rollupResultCacheResets = metrics.NewCounter(`vm_cache_resets_total{type="pr
|
||||||
// ResetRollupResultCache resets rollup result cache.
|
// ResetRollupResultCache resets rollup result cache.
|
||||||
func ResetRollupResultCache() {
|
func ResetRollupResultCache() {
|
||||||
rollupResultCacheResets.Inc()
|
rollupResultCacheResets.Inc()
|
||||||
rollupResultCacheV.c.Reset()
|
atomic.AddUint64(&rollupResultCacheKeyPrefix, 1)
|
||||||
logger.Infof("rollupResult cache has been cleared")
|
logger.Infof("rollupResult cache has been cleared")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -329,10 +329,11 @@ var (
|
||||||
var tooBigRollupResults = metrics.NewCounter("vm_too_big_rollup_results_total")
|
var tooBigRollupResults = metrics.NewCounter("vm_too_big_rollup_results_total")
|
||||||
|
|
||||||
// Increment this value every time the format of the cache changes.
|
// Increment this value every time the format of the cache changes.
|
||||||
const rollupResultCacheVersion = 7
|
const rollupResultCacheVersion = 8
|
||||||
|
|
||||||
func marshalRollupResultCacheKey(dst []byte, expr metricsql.Expr, window, step int64, filters []storage.TagFilter) []byte {
|
func marshalRollupResultCacheKey(dst []byte, expr metricsql.Expr, window, step int64, filters []storage.TagFilter) []byte {
|
||||||
dst = append(dst, rollupResultCacheVersion)
|
dst = append(dst, rollupResultCacheVersion)
|
||||||
|
dst = encoding.MarshalUint64(dst, rollupResultCacheKeyPrefix)
|
||||||
dst = encoding.MarshalInt64(dst, window)
|
dst = encoding.MarshalInt64(dst, window)
|
||||||
dst = encoding.MarshalInt64(dst, step)
|
dst = encoding.MarshalInt64(dst, step)
|
||||||
dst = expr.AppendString(dst)
|
dst = expr.AppendString(dst)
|
||||||
|
|
|
@ -347,8 +347,7 @@ func transformBucketsLimit(tfa *transformFuncArg) ([]*timeseries, error) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
if limit < 3 {
|
if limit < 3 {
|
||||||
// Preserve the first and the last bucket for better accuracy,
|
// Preserve the first and the last bucket for better accuracy for min and max values.
|
||||||
// since these buckets are usually `[0...leMin]` and `(leMax ... +Inf]`
|
|
||||||
limit = 3
|
limit = 3
|
||||||
}
|
}
|
||||||
tss := vmrangeBucketsToLE(args[1])
|
tss := vmrangeBucketsToLE(args[1])
|
||||||
|
@ -412,20 +411,16 @@ func transformBucketsLimit(tfa *transformFuncArg) ([]*timeseries, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for len(leGroup) > limit {
|
for len(leGroup) > limit {
|
||||||
// Preserve the first and the last bucket for better accuracy,
|
// Preserve the first and the last bucket for better accuracy for min and max values
|
||||||
// since these buckets are usually `[0...leMin]` and `(leMax ... +Inf]`
|
xxMinIdx := 1
|
||||||
xxMinIdx := 0
|
minMergeHits := leGroup[1].hits + leGroup[2].hits
|
||||||
for i, xx := range leGroup[1 : len(leGroup)-1] {
|
for i := range leGroup[1 : len(leGroup)-2] {
|
||||||
if xx.hits < leGroup[xxMinIdx].hits {
|
mergeHits := leGroup[i+1].hits + leGroup[i+2].hits
|
||||||
xxMinIdx = i
|
if mergeHits < minMergeHits {
|
||||||
|
xxMinIdx = i + 1
|
||||||
|
minMergeHits = mergeHits
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
xxMinIdx++
|
|
||||||
// Merge the leGroup[xxMinIdx] bucket with the smallest adjacent bucket in order to preserve
|
|
||||||
// the maximum accuracy.
|
|
||||||
if xxMinIdx > 1 && leGroup[xxMinIdx-1].hits < leGroup[xxMinIdx+1].hits {
|
|
||||||
xxMinIdx--
|
|
||||||
}
|
|
||||||
leGroup[xxMinIdx+1].hits += leGroup[xxMinIdx].hits
|
leGroup[xxMinIdx+1].hits += leGroup[xxMinIdx].hits
|
||||||
leGroup = append(leGroup[:xxMinIdx], leGroup[xxMinIdx+1:]...)
|
leGroup = append(leGroup[:xxMinIdx], leGroup[xxMinIdx+1:]...)
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
||||||
|
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
||||||
"github.com/VictoriaMetrics/metricsql"
|
"github.com/VictoriaMetrics/metricsql"
|
||||||
)
|
)
|
||||||
|
@ -188,3 +190,24 @@ func (d *Deadline) String() string {
|
||||||
elapsed := time.Since(startTime)
|
elapsed := time.Since(startTime)
|
||||||
return fmt.Sprintf("%.3f seconds (elapsed %.3f seconds); the timeout can be adjusted with `%s` command-line flag", d.timeout.Seconds(), elapsed.Seconds(), d.flagHint)
|
return fmt.Sprintf("%.3f seconds (elapsed %.3f seconds); the timeout can be adjusted with `%s` command-line flag", d.timeout.Seconds(), elapsed.Seconds(), d.flagHint)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetEnforcedTagFiltersFromRequest returns additional filters from request.
|
||||||
|
func GetEnforcedTagFiltersFromRequest(r *http.Request) ([]storage.TagFilter, error) {
|
||||||
|
// fast path.
|
||||||
|
extraLabels := r.Form["extra_label"]
|
||||||
|
if len(extraLabels) == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
tagFilters := make([]storage.TagFilter, 0, len(extraLabels))
|
||||||
|
for _, match := range extraLabels {
|
||||||
|
tmp := strings.SplitN(match, "=", 2)
|
||||||
|
if len(tmp) != 2 {
|
||||||
|
return nil, fmt.Errorf("`extra_label` query arg must have the format `name=value`; got %q", match)
|
||||||
|
}
|
||||||
|
tagFilters = append(tagFilters, storage.TagFilter{
|
||||||
|
Key: []byte(tmp[0]),
|
||||||
|
Value: []byte(tmp[1]),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return tagFilters, nil
|
||||||
|
}
|
||||||
|
|
|
@ -4,7 +4,10 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetTimeSuccess(t *testing.T) {
|
func TestGetTimeSuccess(t *testing.T) {
|
||||||
|
@ -76,3 +79,48 @@ func TestGetTimeError(t *testing.T) {
|
||||||
f("-292273086-05-16T16:47:07Z")
|
f("-292273086-05-16T16:47:07Z")
|
||||||
f("292277025-08-18T07:12:54.999999998Z")
|
f("292277025-08-18T07:12:54.999999998Z")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// helper for tests
|
||||||
|
func tfFromKV(k, v string) storage.TagFilter {
|
||||||
|
return storage.TagFilter{
|
||||||
|
Key: []byte(k),
|
||||||
|
Value: []byte(v),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetEnforcedTagFiltersFromRequest(t *testing.T) {
|
||||||
|
httpReqWithForm := func(tfs []string) *http.Request {
|
||||||
|
return &http.Request{
|
||||||
|
Form: map[string][]string{
|
||||||
|
"extra_label": tfs,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
f := func(t *testing.T, r *http.Request, want []storage.TagFilter, wantErr bool) {
|
||||||
|
t.Helper()
|
||||||
|
got, err := GetEnforcedTagFiltersFromRequest(r)
|
||||||
|
if (err != nil) != wantErr {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(got, want) {
|
||||||
|
t.Fatalf("unxpected result for getEnforcedTagFiltersFromRequest, \ngot: %v,\n want: %v", want, got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
f(t, httpReqWithForm([]string{"label=value"}),
|
||||||
|
[]storage.TagFilter{
|
||||||
|
tfFromKV("label", "value"),
|
||||||
|
},
|
||||||
|
false)
|
||||||
|
|
||||||
|
f(t, httpReqWithForm([]string{"job=vmagent", "dc=gce"}),
|
||||||
|
[]storage.TagFilter{tfFromKV("job", "vmagent"), tfFromKV("dc", "gce")},
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
f(t, httpReqWithForm([]string{"bad_filter"}),
|
||||||
|
nil,
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
f(t, &http.Request{},
|
||||||
|
nil, false)
|
||||||
|
}
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
* [Prometheus Victoria Metrics On AWS ECS](https://dalefro.medium.com/prometheus-victoria-metrics-on-aws-ecs-62448e266090)
|
* [Prometheus Victoria Metrics On AWS ECS](https://dalefro.medium.com/prometheus-victoria-metrics-on-aws-ecs-62448e266090)
|
||||||
* [Monitoring with Prometheus, Grafana, AlertManager and VictoriaMetrics](https://www.sensedia.com/post/monitoring-with-prometheus-alertmanager)
|
* [Monitoring with Prometheus, Grafana, AlertManager and VictoriaMetrics](https://www.sensedia.com/post/monitoring-with-prometheus-alertmanager)
|
||||||
* [Solving Metrics at scale with VictoriaMetrics](https://www.youtube.com/watch?v=QgLMztnj7-8)
|
* [Solving Metrics at scale with VictoriaMetrics](https://www.youtube.com/watch?v=QgLMztnj7-8)
|
||||||
|
* [Monitoring Kubernetes clusters with VictoriaMetrics and Grafana](https://blog.cybozu.io/entry/2021/03/18/115743)
|
||||||
|
|
||||||
|
|
||||||
## Our articles
|
## Our articles
|
||||||
|
|
|
@ -2,6 +2,20 @@
|
||||||
|
|
||||||
# tip
|
# tip
|
||||||
|
|
||||||
|
* FEATURE: add the following metrics at `/metrics` page for every VictoraMetrics app:
|
||||||
|
* `process_resident_memory_anon_bytes` - RSS share for memory allocated by the process itself. This share cannot be freed by the OS, so it must be taken into account by OOM killer.
|
||||||
|
* `process_resident_memory_file_bytes` - RSS share for page cache memory (aka memory-mapped files). This share can be freed by the OS at any time, so it must be ignored by OOM killer.
|
||||||
|
* `process_resident_memory_shared_bytes` - RSS share for memory shared with other processes (aka shared memory). This share can be freed by the OS at any time, so it must be ignored by OOM killer.
|
||||||
|
* `process_resident_memory_peak_bytes` - peak RSS usage for the process.
|
||||||
|
* `process_virtual_memory_peak_bytes` - peak virtual memory usage for the process.
|
||||||
|
* FEATURE: accept and enforce `extra_label=<label_name>=<label_value>` query arg at [Graphite APIs](https://victoriametrics.github.io/#graphite-api-usage).
|
||||||
|
* FEATURE: use Influx field as metric name if measurement is empty and `-influxSkipSingleField` command-line is set. See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1139
|
||||||
|
* FEATURE: vmagent: add `-promscrape.consul.waitTime` command-line flag for tuning the maximum wait time for Consul service discovery. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1144).
|
||||||
|
|
||||||
|
* BUGFIX: prevent from infinite loop on `{__graphite__="..."}` filters when a metric name contains `*`, `{` or `[` chars.
|
||||||
|
* BUGFIX: prevent from infinite loop in `/metrics/find` and `/metrics/expand` [Graphite Metrics API handlers](https://victoriametrics.github.io/#graphite-metrics-api-usage) when they match metric names or labels with `*`, `{` or `[` chars.
|
||||||
|
* BUGFIX: do not merge duplicate time series during requests to `/api/v1/query`. See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1141
|
||||||
|
|
||||||
|
|
||||||
# [v1.56.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.56.0)
|
# [v1.56.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.56.0)
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,7 @@ vmstorage-prod
|
||||||
### Development Builds
|
### Development Builds
|
||||||
|
|
||||||
1. [Install go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make` from the repository root. It should build `vmstorage`, `vmselect`
|
2. Run `make` from [the repository root](https://github.com/VictoriaMetrics/VictoriaMetrics). It should build `vmstorage`, `vmselect`
|
||||||
and `vminsert` binaries and put them into the `bin` folder.
|
and `vminsert` binaries and put them into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ Run `make package`. It will build the following docker images locally:
|
||||||
* `victoriametrics/vmselect:<PKG_TAG>`
|
* `victoriametrics/vmselect:<PKG_TAG>`
|
||||||
* `victoriametrics/vmstorage:<PKG_TAG>`
|
* `victoriametrics/vmstorage:<PKG_TAG>`
|
||||||
|
|
||||||
`<PKG_TAG>` is auto-generated image tag, which depends on source code in the repository.
|
`<PKG_TAG>` is auto-generated image tag, which depends on source code in [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package`.
|
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package`.
|
||||||
|
|
||||||
By default images are built on top of [alpine](https://hub.docker.com/_/scratch) image in order to improve debuggability.
|
By default images are built on top of [alpine](https://hub.docker.com/_/scratch) image in order to improve debuggability.
|
||||||
|
|
|
@ -605,6 +605,10 @@ VictoriaMetrics supports the following Graphite APIs, which are needed for [Grap
|
||||||
|
|
||||||
All the Graphite handlers can be pre-pended with `/graphite` prefix. For example, both `/graphite/metrics/find` and `/metrics/find` should work.
|
All the Graphite handlers can be pre-pended with `/graphite` prefix. For example, both `/graphite/metrics/find` and `/metrics/find` should work.
|
||||||
|
|
||||||
|
VictoriaMetrics accepts optional `extra_label=<label_name>=<label_value>` query arg for all the Graphite APIs. This arg can be used for limiting the scope of time series
|
||||||
|
visible to the given tenant. It is expected that the `extra_label` query arg is automatically set by auth proxy sitting in front of VictoriaMetrics.
|
||||||
|
[Contact us](mailto:sales@victoriametrics.com) if you need assistance with such a proxy.
|
||||||
|
|
||||||
VictoriaMetrics supports `__graphite__` pseudo-label for filtering time series with Graphite-compatible filters in [MetricsQL](https://victoriametrics.github.io/MetricsQL.html).
|
VictoriaMetrics supports `__graphite__` pseudo-label for filtering time series with Graphite-compatible filters in [MetricsQL](https://victoriametrics.github.io/MetricsQL.html).
|
||||||
For example, `{__graphite__="foo.*.bar"}` is equivalent to `{__name__=~"foo[.][^.]*[.]bar"}`, but it works faster
|
For example, `{__graphite__="foo.*.bar"}` is equivalent to `{__name__=~"foo[.][^.]*[.]bar"}`, but it works faster
|
||||||
and it is easier to use when migrating from Graphite to VictoriaMetrics.
|
and it is easier to use when migrating from Graphite to VictoriaMetrics.
|
||||||
|
@ -655,13 +659,13 @@ to your needs or when testing bugfixes.
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics` from the root folder of the repository.
|
2. Run `make victoria-metrics` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make victoria-metrics-prod` from the root folder of the repository.
|
2. Run `make victoria-metrics-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-prod` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### ARM build
|
### ARM build
|
||||||
|
@ -671,23 +675,21 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
### Development ARM build
|
### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics-arm` or `make victoria-metrics-arm64` from the root folder of the repository.
|
2. Run `make victoria-metrics-arm` or `make victoria-metrics-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-arm` or `victoria-metrics-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `victoria-metrics-arm` or `victoria-metrics-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production ARM build
|
### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make victoria-metrics-arm-prod` or `make victoria-metrics-arm64-prod` from the root folder of the repository.
|
2. Run `make victoria-metrics-arm-prod` or `make victoria-metrics-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-arm-prod` or `victoria-metrics-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `victoria-metrics-arm-prod` or `victoria-metrics-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Pure Go build (CGO_ENABLED=0)
|
### Pure Go build (CGO_ENABLED=0)
|
||||||
|
|
||||||
`Pure Go` mode builds only Go code without [cgo](https://golang.org/cmd/cgo/) dependencies.
|
`Pure Go` mode builds only Go code without [cgo](https://golang.org/cmd/cgo/) dependencies.
|
||||||
This is an experimental mode, which may result in a lower compression ratio and slower decompression performance.
|
|
||||||
Use it with caution!
|
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make victoria-metrics-pure` from the root folder of the repository.
|
2. Run `make victoria-metrics-pure` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `victoria-metrics-pure` binary and puts it into the `bin` folder.
|
It builds `victoria-metrics-pure` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
@ -1683,6 +1685,8 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
|
||||||
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
||||||
-promscrape.configCheckInterval duration
|
-promscrape.configCheckInterval duration
|
||||||
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
||||||
|
-promscrape.consul.waitTime duration
|
||||||
|
Wait time used by Consul service discovery. Default value is used if not set
|
||||||
-promscrape.consulSDCheckInterval duration
|
-promscrape.consulSDCheckInterval duration
|
||||||
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
||||||
-promscrape.disableCompression
|
-promscrape.disableCompression
|
||||||
|
@ -1744,7 +1748,7 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li
|
||||||
-search.maxLookback duration
|
-search.maxLookback duration
|
||||||
Synonim to -search.lookback-delta from Prometheus. The value is dynamically detected from interval between time series datapoints if not set. It can be overridden on per-query basis via max_lookback arg. See also '-search.maxStalenessInterval' flag, which has the same meaining due to historical reasons
|
Synonim to -search.lookback-delta from Prometheus. The value is dynamically detected from interval between time series datapoints if not set. It can be overridden on per-query basis via max_lookback arg. See also '-search.maxStalenessInterval' flag, which has the same meaining due to historical reasons
|
||||||
-search.maxPointsPerTimeseries int
|
-search.maxPointsPerTimeseries int
|
||||||
The maximum points per a single timeseries returned from /api/v1/query_range. This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points returned to graphing UI such as Grafana. There is no sense in setting this limit to values significantly exceeding horizontal resoultion of the graph (default 30000)
|
The maximum points per a single timeseries returned from /api/v1/query_range. This option doesn't limit the number of scanned raw samples in the database. The main purpose of this option is to limit the number of per-series points returned to graphing UI such as Grafana. There is no sense in setting this limit to values bigger than the horizontal resolution of the graph (default 30000)
|
||||||
-search.maxQueryDuration duration
|
-search.maxQueryDuration duration
|
||||||
The maximum duration for query execution (default 30s)
|
The maximum duration for query execution (default 30s)
|
||||||
-search.maxQueryLen size
|
-search.maxQueryLen size
|
||||||
|
|
|
@ -61,7 +61,7 @@ Then send Influx data to `http://vmagent-host:8429`. See [these docs](https://vi
|
||||||
|
|
||||||
`vmagent` is also available in [docker images](https://hub.docker.com/r/victoriametrics/vmagent/tags).
|
`vmagent` is also available in [docker images](https://hub.docker.com/r/victoriametrics/vmagent/tags).
|
||||||
|
|
||||||
Pass `-help` to `vmagent` in order to see the full list of supported command-line flags with their descriptions.
|
Pass `-help` to `vmagent` in order to see [the full list of supported command-line flags with their descriptions](#advanced-usage).
|
||||||
|
|
||||||
|
|
||||||
## Configuration update
|
## Configuration update
|
||||||
|
@ -97,7 +97,7 @@ See [the corresponding Makefile rules](https://github.com/VictoriaMetrics/Victor
|
||||||
### Drop-in replacement for Prometheus
|
### Drop-in replacement for Prometheus
|
||||||
|
|
||||||
If you use Prometheus only for scraping metrics from various targets and forwarding those metrics to remote storage
|
If you use Prometheus only for scraping metrics from various targets and forwarding those metrics to remote storage
|
||||||
then `vmagent` can replace Prometheus. tupically, `vmagent` requires lower amounts of RAM, CPU and network bandwidth compared with Prometheus.
|
then `vmagent` can replace Prometheus. Typically, `vmagent` requires lower amounts of RAM, CPU and network bandwidth compared with Prometheus.
|
||||||
See [these docs](#how-to-collect-metrics-in-prometheus-format) for details.
|
See [these docs](#how-to-collect-metrics-in-prometheus-format) for details.
|
||||||
|
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ Also, Basic Auth can be enabled for the incoming `remote_write` requests with `-
|
||||||
|
|
||||||
### remote_write for clustered version
|
### remote_write for clustered version
|
||||||
|
|
||||||
While `vmagent` can accept data in several supported protocols (OpenTSDB, Influx, Prometheus, Graphite) and scrape data from various targets, writes are always peformed in Promethes remote_write protocol. Therefore for the clustered version, `-remoteWrite.url` the command-line flag should be configured as `<schema>://<vminsert-host>:8480/insert/<customer-id>/prometheus/api/v1/write`
|
While `vmagent` can accept data in several supported protocols (OpenTSDB, Influx, Prometheus, Graphite) and scrape data from various targets, writes are always peformed in Promethes remote_write protocol. Therefore for the [clustered version](https://victoriametrics.github.io/Cluster-VictoriaMetrics.html), `-remoteWrite.url` the command-line flag should be configured as `<schema>://<vminsert-host>:8480/insert/<customer-id>/prometheus/api/v1/write`
|
||||||
|
|
||||||
|
|
||||||
## How to collect metrics in Prometheus format
|
## How to collect metrics in Prometheus format
|
||||||
|
@ -152,11 +152,11 @@ The following scrape types in [scrape_config](https://prometheus.io/docs/prometh
|
||||||
* `static_configs` - is for scraping statically defined targets. See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config) for details.
|
* `static_configs` - is for scraping statically defined targets. See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config) for details.
|
||||||
* `file_sd_configs` - is for scraping targets defined in external files (aka file-based service discover).
|
* `file_sd_configs` - is for scraping targets defined in external files (aka file-based service discover).
|
||||||
See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#file_sd_config) for details
|
See [these docs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#file_sd_config) for details
|
||||||
* and `kubernetes_sd_configs` - for scraping targets in Kubernetes (k8s).
|
* `kubernetes_sd_configs` - for scraping targets in Kubernetes (k8s).
|
||||||
See [kubernetes_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config) for details.
|
See [kubernetes_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config) for details.
|
||||||
* `ec2_sd_configs` - is for scraping targets in Amazon EC2.
|
* `ec2_sd_configs` - is for scraping targets in Amazon EC2.
|
||||||
See [ec2_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#ec2_sd_config) for details.
|
See [ec2_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#ec2_sd_config) for details.
|
||||||
`vmagent` doesn't support the `profile` config param and aws credentials file yet.
|
`vmagent` doesn't support the `profile` config param yet.
|
||||||
* `gce_sd_configs` - is for scraping targets in Google Compute Engine (GCE).
|
* `gce_sd_configs` - is for scraping targets in Google Compute Engine (GCE).
|
||||||
See [gce_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#gce_sd_config) for details.
|
See [gce_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#gce_sd_config) for details.
|
||||||
`vmagent` provides the following additional functionality for `gce_sd_config`:
|
`vmagent` provides the following additional functionality for `gce_sd_config`:
|
||||||
|
@ -164,7 +164,7 @@ The following scrape types in [scrape_config](https://prometheus.io/docs/prometh
|
||||||
* if `zone` arg is missing then `vmagent` uses the zone for the instance where it runs;
|
* if `zone` arg is missing then `vmagent` uses the zone for the instance where it runs;
|
||||||
* if `zone` arg is equal to `"*"`, then `vmagent` discovers all the zones for the given project;
|
* if `zone` arg is equal to `"*"`, then `vmagent` discovers all the zones for the given project;
|
||||||
* `zone` may contain an arbitrary number of zones, i.e. `zone: [us-east1-a, us-east1-b]`.
|
* `zone` may contain an arbitrary number of zones, i.e. `zone: [us-east1-a, us-east1-b]`.
|
||||||
* `consul_sd_configs` - for scraping the targets registered in Consul.
|
* `consul_sd_configs` - is for scraping the targets registered in Consul.
|
||||||
See [consul_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config) for details.
|
See [consul_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config) for details.
|
||||||
* `dns_sd_configs` - is for scraping targets discovered from DNS records (SRV, A and AAAA).
|
* `dns_sd_configs` - is for scraping targets discovered from DNS records (SRV, A and AAAA).
|
||||||
See [dns_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#dns_sd_config) for details.
|
See [dns_sd_config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#dns_sd_config) for details.
|
||||||
|
@ -184,6 +184,7 @@ Please file feature requests to [our issue tracker](https://github.com/VictoriaM
|
||||||
to save network bandwidth.
|
to save network bandwidth.
|
||||||
* `disable_keepalive: true` - to disable [HTTP keep-alive connections](https://en.wikipedia.org/wiki/HTTP_persistent_connection) on a per-job basis.
|
* `disable_keepalive: true` - to disable [HTTP keep-alive connections](https://en.wikipedia.org/wiki/HTTP_persistent_connection) on a per-job basis.
|
||||||
By default, `vmagent` uses keep-alive connections to scrape targets to reduce overhead on connection re-establishing.
|
By default, `vmagent` uses keep-alive connections to scrape targets to reduce overhead on connection re-establishing.
|
||||||
|
* `stream_parse: true` - for scraping targets in a streaming manner. This may be useful for targets exporting big number of metrics.
|
||||||
|
|
||||||
Note that `vmagent` doesn't support `refresh_interval` option for these scrape configs. Use the corresponding `-promscrape.*CheckInterval`
|
Note that `vmagent` doesn't support `refresh_interval` option for these scrape configs. Use the corresponding `-promscrape.*CheckInterval`
|
||||||
command-line flag instead. For example, `-promscrape.consulSDCheckInterval=60s` sets `refresh_interval` for all the `consul_sd_configs`
|
command-line flag instead. For example, `-promscrape.consulSDCheckInterval=60s` sets `refresh_interval` for all the `consul_sd_configs`
|
||||||
|
@ -196,8 +197,12 @@ The file pointed by `-promscrape.config` may contain `%{ENV_VAR}` placeholders w
|
||||||
|
|
||||||
Labels can be added to metrics by the following mechanisms:
|
Labels can be added to metrics by the following mechanisms:
|
||||||
|
|
||||||
* The `global -> external_labels` section in `-promscrape.config` file. These labels are added only to metrics scraped from targets configured in the `-promscrape.config` file.
|
* The `global -> external_labels` section in `-promscrape.config` file. These labels are added only to metrics scraped from targets configured in the `-promscrape.config` file. They aren't added to metrics collected via other [data ingestion protocols](https://victoriametrics.github.io/#how-to-import-time-series-data).
|
||||||
* The `-remoteWrite.label` command-line flag. These labels are added to all the collected metrics before sending them to `-remoteWrite.url`.
|
* The `-remoteWrite.label` command-line flag. These labels are added to all the collected metrics before sending them to `-remoteWrite.url`. For example, the following command will start `vmagent`, which will add `{datacenter="foobar"}` label to all the metrics pushed to all the configured remote storage systems (all the `-remoteWrite.url` flag values):
|
||||||
|
|
||||||
|
```
|
||||||
|
/path/to/vmagent -remoteWrite.label=datacenter=foobar ...
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Relabeling
|
## Relabeling
|
||||||
|
@ -295,11 +300,11 @@ scrape_configs:
|
||||||
`vmagent` exports various metrics in Prometheus exposition format at `http://vmagent-host:8429/metrics` page. We recommend setting up regular scraping of this page
|
`vmagent` exports various metrics in Prometheus exposition format at `http://vmagent-host:8429/metrics` page. We recommend setting up regular scraping of this page
|
||||||
either through `vmagent` itself or by Prometheus so that the exported metrics may be analyzed later.
|
either through `vmagent` itself or by Prometheus so that the exported metrics may be analyzed later.
|
||||||
Use official [Grafana dashboard](https://grafana.com/grafana/dashboards/12683) for `vmagent` state overview.
|
Use official [Grafana dashboard](https://grafana.com/grafana/dashboards/12683) for `vmagent` state overview.
|
||||||
If you have suggestions for improvements or have found a bug -please open an issue on github or add a review to the dashboard.
|
If you have suggestions for improvements or have found a bug - please open an issue on github or add a review to the dashboard.
|
||||||
|
|
||||||
`vmagent` also exports the status for various targets at the following handlers:
|
`vmagent` also exports the status for various targets at the following handlers:
|
||||||
|
|
||||||
* `http://vmagent-host:8429/targets`. This handler returns human-readable plaintext status for every active target.
|
* `http://vmagent-host:8429/targets`. This handler returns human-readable status for every active target.
|
||||||
This page is easy to query from the command line with `wget`, `curl` or similar tools.
|
This page is easy to query from the command line with `wget`, `curl` or similar tools.
|
||||||
It accepts optional `show_original_labels=1` query arg which shows the original labels per each target before applying the relabeling.
|
It accepts optional `show_original_labels=1` query arg which shows the original labels per each target before applying the relabeling.
|
||||||
This information may be useful for debugging target relabeling.
|
This information may be useful for debugging target relabeling.
|
||||||
|
@ -407,19 +412,19 @@ We recommend using [binary releases](https://github.com/VictoriaMetrics/Victoria
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmagent` from the root folder of the repository.
|
2. Run `make vmagent` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds the `vmagent` binary and puts it into the `bin` folder.
|
It builds the `vmagent` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmagent-prod` from the root folder of the repository.
|
2. Run `make vmagent-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmagent-prod` binary and puts it into the `bin` folder.
|
It builds `vmagent-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
||||||
Run `make package-vmagent`. It builds `victoriametrics/vmagent:<PKG_TAG>` docker image locally.
|
Run `make package-vmagent`. It builds `victoriametrics/vmagent:<PKG_TAG>` docker image locally.
|
||||||
`<PKG_TAG>` is an auto-generated image tag, which depends on source code in the repository.
|
`<PKG_TAG>` is an auto-generated image tag, which depends on source code in [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package-vmagent`.
|
The `<PKG_TAG>` may be manually set via `PKG_TAG=foobar make package-vmagent`.
|
||||||
|
|
||||||
The base docker image is [alpine](https://hub.docker.com/_/alpine) but it is possible to use any other base image
|
The base docker image is [alpine](https://hub.docker.com/_/alpine) but it is possible to use any other base image
|
||||||
|
@ -436,13 +441,13 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
### Development ARM build
|
### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmagent-arm` or `make vmagent-arm64` from the root folder of the repository.
|
2. Run `make vmagent-arm` or `make vmagent-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics)
|
||||||
It builds `vmagent-arm` or `vmagent-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmagent-arm` or `vmagent-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production ARM build
|
### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmagent-arm-prod` or `make vmagent-arm64-prod` from the root folder of the repository.
|
2. Run `make vmagent-arm-prod` or `make vmagent-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmagent-arm-prod` or `vmagent-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmagent-arm-prod` or `vmagent-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
@ -483,7 +488,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-dryRun
|
-dryRun
|
||||||
Whether to check only config files without running vmagent. The following files are checked: -promscrape.config, -remoteWrite.relabelConfig, -remoteWrite.urlRelabelConfig . Unknown config entries are allowed in -promscrape.config by default. This can be changed with -promscrape.config.strictParse
|
Whether to check only config files without running vmagent. The following files are checked: -promscrape.config, -remoteWrite.relabelConfig, -remoteWrite.urlRelabelConfig . Unknown config entries are allowed in -promscrape.config by default. This can be changed with -promscrape.config.strictParse
|
||||||
-enableTCP6
|
-enableTCP6
|
||||||
Whether to enable IPv6 for listening and dialing. By default only IPv4 TCP is used
|
Whether to enable IPv6 for listening and dialing. By default only IPv4 TCP and UDP is used
|
||||||
-envflag.enable
|
-envflag.enable
|
||||||
Whether to enable reading flags from environment variables additionally to command line. Command line flag values have priority over values from environment vars. Flags are read only from command line if this flag isn't set
|
Whether to enable reading flags from environment variables additionally to command line. Command line flag values have priority over values from environment vars. Flags are read only from command line if this flag isn't set
|
||||||
-envflag.prefix string
|
-envflag.prefix string
|
||||||
|
@ -586,6 +591,8 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
Whether to allow only supported fields in -promscrape.config . By default unsupported fields are silently skipped
|
||||||
-promscrape.configCheckInterval duration
|
-promscrape.configCheckInterval duration
|
||||||
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
Interval for checking for changes in '-promscrape.config' file. By default the checking is disabled. Send SIGHUP signal in order to force config check for changes
|
||||||
|
-promscrape.consul.waitTime duration
|
||||||
|
Wait time used by Consul service discovery. Default value is used if not set
|
||||||
-promscrape.consulSDCheckInterval duration
|
-promscrape.consulSDCheckInterval duration
|
||||||
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
Interval for checking for changes in Consul. This works only if consul_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#consul_sd_config for details (default 30s)
|
||||||
-promscrape.disableCompression
|
-promscrape.disableCompression
|
||||||
|
@ -615,7 +622,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-promscrape.kubernetesSDCheckInterval duration
|
-promscrape.kubernetesSDCheckInterval duration
|
||||||
Interval for checking for changes in Kubernetes API server. This works only if kubernetes_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config for details (default 30s)
|
Interval for checking for changes in Kubernetes API server. This works only if kubernetes_sd_configs is configured in '-promscrape.config' file. See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#kubernetes_sd_config for details (default 30s)
|
||||||
-promscrape.maxDroppedTargets int
|
-promscrape.maxDroppedTargets int
|
||||||
The maximum number of droppedTargets shown at /api/v1/targets page. Increase this value if your setup drops more scrape targets during relabeling and you need investigating labels for all the dropped targets. Note that the increased number of tracked dropped targets may result in increased memory usage (default 1000)
|
The maximum number of droppedTargets to show at /api/v1/targets page. Increase this value if your setup drops more scrape targets during relabeling and you need investigating labels for all the dropped targets. Note that the increased number of tracked dropped targets may result in increased memory usage (default 1000)
|
||||||
-promscrape.maxScrapeSize size
|
-promscrape.maxScrapeSize size
|
||||||
The maximum size of scrape response in bytes to process from Prometheus targets. Bigger responses are rejected
|
The maximum size of scrape response in bytes to process from Prometheus targets. Bigger responses are rejected
|
||||||
Supports the following optional suffixes for size values: KB, MB, GB, KiB, MiB, GiB (default 16777216)
|
Supports the following optional suffixes for size values: KB, MB, GB, KiB, MiB, GiB (default 16777216)
|
||||||
|
@ -639,7 +646,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
-remoteWrite.flushInterval duration
|
-remoteWrite.flushInterval duration
|
||||||
Interval for flushing the data to remote storage. This option takes effect only when less than 10K data points per second are pushed to -remoteWrite.url (default 1s)
|
Interval for flushing the data to remote storage. This option takes effect only when less than 10K data points per second are pushed to -remoteWrite.url (default 1s)
|
||||||
-remoteWrite.label array
|
-remoteWrite.label array
|
||||||
Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. Pass multiple -remoteWrite.label flags in order to add multiple flags to metrics before sending them to remote storage
|
Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. Pass multiple -remoteWrite.label flags in order to add multiple labels to metrics before sending them to remote storage
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
-remoteWrite.maxBlockSize size
|
-remoteWrite.maxBlockSize size
|
||||||
The maximum size in bytes of unpacked request to send to remote storage. It shouldn't exceed -maxInsertRequestSize from VictoriaMetrics
|
The maximum size in bytes of unpacked request to send to remote storage. It shouldn't exceed -maxInsertRequestSize from VictoriaMetrics
|
||||||
|
@ -684,7 +691,7 @@ See the docs at https://victoriametrics.github.io/vmagent.html .
|
||||||
Optional TLS server name to use for connections to -remoteWrite.url. By default the server name from -remoteWrite.url is used. If multiple args are set, then they are applied independently for the corresponding -remoteWrite.url
|
Optional TLS server name to use for connections to -remoteWrite.url. By default the server name from -remoteWrite.url is used. If multiple args are set, then they are applied independently for the corresponding -remoteWrite.url
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
-remoteWrite.tmpDataPath string
|
-remoteWrite.tmpDataPath string
|
||||||
Path to directory where temporary data for remote write component is stored (default "vmagent-remotewrite-data")
|
Path to directory where temporary data for remote write component is stored. See also -remoteWrite.maxDiskUsagePerURL (default "vmagent-remotewrite-data")
|
||||||
-remoteWrite.url array
|
-remoteWrite.url array
|
||||||
Remote storage URL to write data to. It must support Prometheus remote_write API. It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems
|
Remote storage URL to write data to. It must support Prometheus remote_write API. It is recommended using VictoriaMetrics as remote storage. Example url: http://<victoriametrics-host>:8428/api/v1/write . Pass multiple -remoteWrite.url flags in order to write data concurrently to multiple remote storage systems
|
||||||
Supports array of values separated by comma or specified via multiple flags.
|
Supports array of values separated by comma or specified via multiple flags.
|
||||||
|
|
|
@ -51,8 +51,7 @@ Then configure `vmalert` accordingly:
|
||||||
-remoteWrite.url=http://localhost:8428 \ # remote write compatible storage to persist rules
|
-remoteWrite.url=http://localhost:8428 \ # remote write compatible storage to persist rules
|
||||||
-remoteRead.url=http://localhost:8428 \ # PromQL compatible datasource to restore alerts state from
|
-remoteRead.url=http://localhost:8428 \ # PromQL compatible datasource to restore alerts state from
|
||||||
-external.label=cluster=east-1 \ # External label to be applied for each rule
|
-external.label=cluster=east-1 \ # External label to be applied for each rule
|
||||||
-external.label=replica=a \ # Multiple external labels may be set
|
-external.label=replica=a # Multiple external labels may be set
|
||||||
-evaluationInterval=3s # Default evaluation interval if not specified in rules group
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you run multiple `vmalert` services for the same datastore or AlertManager - do not forget
|
If you run multiple `vmalert` services for the same datastore or AlertManager - do not forget
|
||||||
|
@ -392,13 +391,13 @@ It is recommended using
|
||||||
#### Development build
|
#### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmalert` from the root folder of the repository.
|
2. Run `make vmalert` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert` binary and puts it into the `bin` folder.
|
It builds `vmalert` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production build
|
#### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmalert-prod` from the root folder of the repository.
|
2. Run `make vmalert-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-prod` binary and puts it into the `bin` folder.
|
It builds `vmalert-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
@ -409,11 +408,11 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
#### Development ARM build
|
#### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmalert-arm` or `make vmalert-arm64` from the root folder of the repository.
|
2. Run `make vmalert-arm` or `make vmalert-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-arm` or `vmalert-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmalert-arm` or `vmalert-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production ARM build
|
#### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmalert-arm-prod` or `make vmalert-arm64-prod` from the root folder of the repository.
|
2. Run `make vmalert-arm-prod` or `make vmalert-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmalert-arm-prod` or `vmalert-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmalert-arm-prod` or `vmalert-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
|
@ -111,13 +111,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmauth` from the root folder of the repository.
|
2. Run `make vmauth` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmauth` binary and puts it into the `bin` folder.
|
It builds `vmauth` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmauth-prod` from the root folder of the repository.
|
2. Run `make vmauth-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmauth-prod` binary and puts it into the `bin` folder.
|
It builds `vmauth-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
|
@ -236,13 +236,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmbackup` from the root folder of the repository.
|
2. Run `make vmbackup` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmbackup` binary and puts it into the `bin` folder.
|
It builds `vmbackup` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmbackup-prod` from the root folder of the repository.
|
2. Run `make vmbackup-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmbackup-prod` binary and puts it into the `bin` folder.
|
It builds `vmbackup-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
|
@ -49,13 +49,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmctl` from the root folder of the repository.
|
2. Run `make vmctl` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl` binary and puts it into the `bin` folder.
|
It builds `vmctl` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmctl-prod` from the root folder of the repository.
|
2. Run `make vmctl-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-prod` binary and puts it into the `bin` folder.
|
It builds `vmctl-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
@ -78,13 +78,13 @@ ARM build may run on Raspberry Pi or on [energy-efficient ARM servers](https://b
|
||||||
#### Development ARM build
|
#### Development ARM build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmctl-arm` or `make vmctl-arm64` from the root folder of the repository.
|
2. Run `make vmctl-arm` or `make vmctl-arm64` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-arm` or `vmctl-arm64` binary respectively and puts it into the `bin` folder.
|
It builds `vmctl-arm` or `vmctl-arm64` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
#### Production ARM build
|
#### Production ARM build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmctl-arm-prod` or `make vmctl-arm64-prod` from the root folder of the repository.
|
2. Run `make vmctl-arm-prod` or `make vmctl-arm64-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmctl-arm-prod` or `vmctl-arm64-prod` binary respectively and puts it into the `bin` folder.
|
It builds `vmctl-arm-prod` or `vmctl-arm64-prod` binary respectively and puts it into the `bin` folder.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -132,13 +132,13 @@ It is recommended using [binary releases](https://github.com/VictoriaMetrics/Vic
|
||||||
### Development build
|
### Development build
|
||||||
|
|
||||||
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
1. [Install Go](https://golang.org/doc/install). The minimum supported version is Go 1.14.
|
||||||
2. Run `make vmrestore` from the root folder of the repository.
|
2. Run `make vmrestore` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmrestore` binary and puts it into the `bin` folder.
|
It builds `vmrestore` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Production build
|
### Production build
|
||||||
|
|
||||||
1. [Install docker](https://docs.docker.com/install/).
|
1. [Install docker](https://docs.docker.com/install/).
|
||||||
2. Run `make vmrestore-prod` from the root folder of the repository.
|
2. Run `make vmrestore-prod` from the root folder of [the repository](https://github.com/VictoriaMetrics/VictoriaMetrics).
|
||||||
It builds `vmrestore-prod` binary and puts it into the `bin` folder.
|
It builds `vmrestore-prod` binary and puts it into the `bin` folder.
|
||||||
|
|
||||||
### Building docker images
|
### Building docker images
|
||||||
|
|
21
go.mod
21
go.mod
|
@ -1,17 +1,18 @@
|
||||||
module github.com/VictoriaMetrics/VictoriaMetrics
|
module github.com/VictoriaMetrics/VictoriaMetrics
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
cloud.google.com/go v0.80.0 // indirect
|
||||||
cloud.google.com/go/storage v1.14.0
|
cloud.google.com/go/storage v1.14.0
|
||||||
github.com/VictoriaMetrics/fastcache v1.5.8
|
github.com/VictoriaMetrics/fastcache v1.5.8
|
||||||
|
|
||||||
// Do not use the original github.com/valyala/fasthttp because of issues
|
// Do not use the original github.com/valyala/fasthttp because of issues
|
||||||
// like https://github.com/valyala/fasthttp/commit/996610f021ff45fdc98c2ce7884d5fa4e7f9199b
|
// like https://github.com/valyala/fasthttp/commit/996610f021ff45fdc98c2ce7884d5fa4e7f9199b
|
||||||
github.com/VictoriaMetrics/fasthttp v1.0.14
|
github.com/VictoriaMetrics/fasthttp v1.0.14
|
||||||
github.com/VictoriaMetrics/metrics v1.15.3
|
github.com/VictoriaMetrics/metrics v1.17.2
|
||||||
github.com/VictoriaMetrics/metricsql v0.14.0
|
github.com/VictoriaMetrics/metricsql v0.14.0
|
||||||
github.com/aws/aws-sdk-go v1.37.31
|
github.com/aws/aws-sdk-go v1.38.4
|
||||||
github.com/cespare/xxhash/v2 v2.1.1
|
github.com/cespare/xxhash/v2 v2.1.1
|
||||||
github.com/cheggaaa/pb/v3 v3.0.6
|
github.com/cheggaaa/pb/v3 v3.0.7
|
||||||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
|
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
|
||||||
github.com/fatih/color v1.10.0 // indirect
|
github.com/fatih/color v1.10.0 // indirect
|
||||||
github.com/go-kit/kit v0.10.0
|
github.com/go-kit/kit v0.10.0
|
||||||
|
@ -20,8 +21,8 @@ require (
|
||||||
github.com/klauspost/compress v1.11.12
|
github.com/klauspost/compress v1.11.12
|
||||||
github.com/mattn/go-runewidth v0.0.10 // indirect
|
github.com/mattn/go-runewidth v0.0.10 // indirect
|
||||||
github.com/oklog/ulid v1.3.1
|
github.com/oklog/ulid v1.3.1
|
||||||
github.com/prometheus/client_golang v1.9.0 // indirect
|
github.com/prometheus/client_golang v1.10.0 // indirect
|
||||||
github.com/prometheus/common v0.19.0 // indirect
|
github.com/prometheus/common v0.20.0 // indirect
|
||||||
github.com/prometheus/procfs v0.6.0 // indirect
|
github.com/prometheus/procfs v0.6.0 // indirect
|
||||||
github.com/prometheus/prometheus v1.8.2-0.20201119142752-3ad25a6dc3d9
|
github.com/prometheus/prometheus v1.8.2-0.20201119142752-3ad25a6dc3d9
|
||||||
github.com/rivo/uniseg v0.2.0 // indirect
|
github.com/rivo/uniseg v0.2.0 // indirect
|
||||||
|
@ -34,11 +35,11 @@ require (
|
||||||
github.com/valyala/histogram v1.1.2
|
github.com/valyala/histogram v1.1.2
|
||||||
github.com/valyala/quicktemplate v1.6.3
|
github.com/valyala/quicktemplate v1.6.3
|
||||||
golang.org/x/mod v0.4.2 // indirect
|
golang.org/x/mod v0.4.2 // indirect
|
||||||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 // indirect
|
golang.org/x/net v0.0.0-20210324205630-d1beb07c2056 // indirect
|
||||||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84
|
golang.org/x/oauth2 v0.0.0-20210323180902-22b0adad7558
|
||||||
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa
|
golang.org/x/sys v0.0.0-20210324051608-47abb6519492
|
||||||
google.golang.org/api v0.42.0
|
google.golang.org/api v0.43.0
|
||||||
google.golang.org/genproto v0.0.0-20210315173758-2651cd453018 // indirect
|
google.golang.org/genproto v0.0.0-20210325141258-5636347f2b14 // indirect
|
||||||
gopkg.in/yaml.v2 v2.4.0
|
gopkg.in/yaml.v2 v2.4.0
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
54
go.sum
54
go.sum
|
@ -19,8 +19,9 @@ cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKP
|
||||||
cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
|
cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
|
||||||
cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY=
|
cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY=
|
||||||
cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
|
cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
|
||||||
cloud.google.com/go v0.79.0 h1:oqqswrt4x6b9OGBnNqdssxBl1xf0rSUNjU2BR4BZar0=
|
|
||||||
cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8=
|
cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8=
|
||||||
|
cloud.google.com/go v0.80.0 h1:kAdyAMrj9CjqOSGiluseVjIgAyQ3uxADYtUYR6MwYeY=
|
||||||
|
cloud.google.com/go v0.80.0/go.mod h1:fqpb6QRi1CFGAMXDoE72G+b+Ybv7dMB/T1tbExDHktI=
|
||||||
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
|
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
|
||||||
cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
|
cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
|
||||||
cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
|
cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
|
||||||
|
@ -86,8 +87,8 @@ github.com/VictoriaMetrics/fastcache v1.5.8/go.mod h1:SiMZNgwEPJ9qWLshu9tyuE6bKc
|
||||||
github.com/VictoriaMetrics/fasthttp v1.0.14 h1:iWCdHg7JQ1SO0xvPAgw3QFpFT3he+Ugdshg+1clN6CQ=
|
github.com/VictoriaMetrics/fasthttp v1.0.14 h1:iWCdHg7JQ1SO0xvPAgw3QFpFT3he+Ugdshg+1clN6CQ=
|
||||||
github.com/VictoriaMetrics/fasthttp v1.0.14/go.mod h1:eDVgYyGts3xXpYpVGDxQ3ZlQKW5TSvOqfc9FryjH1JA=
|
github.com/VictoriaMetrics/fasthttp v1.0.14/go.mod h1:eDVgYyGts3xXpYpVGDxQ3ZlQKW5TSvOqfc9FryjH1JA=
|
||||||
github.com/VictoriaMetrics/metrics v1.12.2/go.mod h1:Z1tSfPfngDn12bTfZSCqArT3OPY3u88J12hSoOhuiRE=
|
github.com/VictoriaMetrics/metrics v1.12.2/go.mod h1:Z1tSfPfngDn12bTfZSCqArT3OPY3u88J12hSoOhuiRE=
|
||||||
github.com/VictoriaMetrics/metrics v1.15.3 h1:Ry74VPJiLWOOvpnwnjr4LL7JIMy2wb01ssvfUiSBq34=
|
github.com/VictoriaMetrics/metrics v1.17.2 h1:9zPJ7DPfxdJWshOGLPLpAtPL0ZZ9AeUyQC3fIqG6Lvo=
|
||||||
github.com/VictoriaMetrics/metrics v1.15.3/go.mod h1:Z1tSfPfngDn12bTfZSCqArT3OPY3u88J12hSoOhuiRE=
|
github.com/VictoriaMetrics/metrics v1.17.2/go.mod h1:Z1tSfPfngDn12bTfZSCqArT3OPY3u88J12hSoOhuiRE=
|
||||||
github.com/VictoriaMetrics/metricsql v0.14.0 h1:XGbpZJVskUPJFo2C7vG6ATxXBwkBFPe7EWZXB2HZt2U=
|
github.com/VictoriaMetrics/metricsql v0.14.0 h1:XGbpZJVskUPJFo2C7vG6ATxXBwkBFPe7EWZXB2HZt2U=
|
||||||
github.com/VictoriaMetrics/metricsql v0.14.0/go.mod h1:ylO7YITho/Iw6P71oEaGyHbO94bGoGtzWfLGqFhMIg8=
|
github.com/VictoriaMetrics/metricsql v0.14.0/go.mod h1:ylO7YITho/Iw6P71oEaGyHbO94bGoGtzWfLGqFhMIg8=
|
||||||
github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=
|
github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=
|
||||||
|
@ -124,8 +125,8 @@ github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQ
|
||||||
github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo=
|
github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo=
|
||||||
github.com/aws/aws-sdk-go v1.34.28/go.mod h1:H7NKnBqNVzoTJpGfLrQkkD+ytBA93eiDYi/+8rV9s48=
|
github.com/aws/aws-sdk-go v1.34.28/go.mod h1:H7NKnBqNVzoTJpGfLrQkkD+ytBA93eiDYi/+8rV9s48=
|
||||||
github.com/aws/aws-sdk-go v1.35.31/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
|
github.com/aws/aws-sdk-go v1.35.31/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
|
||||||
github.com/aws/aws-sdk-go v1.37.31 h1:eK7hgg1H4xivwopAbnzfQ7ZBbDb9cEkGDivd9rUMnJs=
|
github.com/aws/aws-sdk-go v1.38.4 h1:ifewiUUfuB6LrOR6PDqjlld3IIoWskrTVEGrzF2Q/v4=
|
||||||
github.com/aws/aws-sdk-go v1.37.31/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
|
github.com/aws/aws-sdk-go v1.38.4/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
|
||||||
github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g=
|
github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g=
|
||||||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
|
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
|
||||||
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
|
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
|
||||||
|
@ -143,8 +144,8 @@ github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=
|
||||||
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
|
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
|
||||||
github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=
|
github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=
|
||||||
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||||
github.com/cheggaaa/pb/v3 v3.0.6 h1:ULPm1wpzvj60FvmCrX7bIaB80UgbhI+zSaQJKRfCbAs=
|
github.com/cheggaaa/pb/v3 v3.0.7 h1:58wduqwoqpsklsCZ7NZ5dsrCqPWv2t0+p85FcBds6XY=
|
||||||
github.com/cheggaaa/pb/v3 v3.0.6/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw=
|
github.com/cheggaaa/pb/v3 v3.0.7/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw=
|
||||||
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
||||||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
|
||||||
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
||||||
|
@ -364,8 +365,10 @@ github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:W
|
||||||
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
||||||
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
||||||
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
||||||
github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM=
|
|
||||||
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
||||||
|
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||||
|
github.com/golang/protobuf v1.5.1 h1:jAbXjIeW2ZSW2AwFxlGTDoc2CjI2XujLkV3ArsZFCvc=
|
||||||
|
github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM=
|
||||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
github.com/golang/snappy v0.0.2/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
github.com/golang/snappy v0.0.2/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
|
@ -659,8 +662,8 @@ github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3O
|
||||||
github.com/prometheus/client_golang v1.6.0/go.mod h1:ZLOG9ck3JLRdB5MgO8f+lLTe83AXG6ro35rLTxvnIl4=
|
github.com/prometheus/client_golang v1.6.0/go.mod h1:ZLOG9ck3JLRdB5MgO8f+lLTe83AXG6ro35rLTxvnIl4=
|
||||||
github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=
|
github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=
|
||||||
github.com/prometheus/client_golang v1.8.0/go.mod h1:O9VU6huf47PktckDQfMTX0Y8tY0/7TSWwj+ITvv0TnM=
|
github.com/prometheus/client_golang v1.8.0/go.mod h1:O9VU6huf47PktckDQfMTX0Y8tY0/7TSWwj+ITvv0TnM=
|
||||||
github.com/prometheus/client_golang v1.9.0 h1:Rrch9mh17XcxvEu9D9DEpb4isxjGBtcevQjKvxPRQIU=
|
github.com/prometheus/client_golang v1.10.0 h1:/o0BDeWzLWXNZ+4q5gXltUvaMpJqckTa+jTNoB+z4cg=
|
||||||
github.com/prometheus/client_golang v1.9.0/go.mod h1:FqZLKOZnGdFAhOK4nqGHa7D66IdsO+O441Eve7ptJDU=
|
github.com/prometheus/client_golang v1.10.0/go.mod h1:WJM3cc3yu7XKBKa/I8WeZm+V3eltZnBwfENSU7mdogU=
|
||||||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
|
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
|
||||||
github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
|
github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
|
||||||
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
|
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
|
||||||
|
@ -676,8 +679,9 @@ github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8b
|
||||||
github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
|
github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
|
||||||
github.com/prometheus/common v0.14.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
github.com/prometheus/common v0.14.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
||||||
github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
||||||
github.com/prometheus/common v0.19.0 h1:Itb4+NjG9wRdkAWgVucbM/adyIXxEhbw0866e0uZE6A=
|
github.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
||||||
github.com/prometheus/common v0.19.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
github.com/prometheus/common v0.20.0 h1:pfeDeUdQcIxOMutNjCejsEFp7qeP+/iltHSSmLpE+hU=
|
||||||
|
github.com/prometheus/common v0.20.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
|
||||||
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
|
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
|
||||||
github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
|
github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
|
||||||
github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
|
github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
|
||||||
|
@ -917,8 +921,9 @@ golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v
|
||||||
golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 h1:b0LrWgu8+q7z4J+0Y3Umo5q1dL7NXBkKBWkaVkAq17E=
|
|
||||||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
|
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
|
||||||
|
golang.org/x/net v0.0.0-20210324205630-d1beb07c2056 h1:sANdAef76Ioam9aQUUdcAqricwY/WUaMc4+7LY4eGg8=
|
||||||
|
golang.org/x/net v0.0.0-20210324205630-d1beb07c2056/go.mod h1:uSPa2vr4CLtc/ILN5odXGNXS6mhrKVzTaCXzk9m6W3k=
|
||||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
||||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
|
@ -929,8 +934,9 @@ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ
|
||||||
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 h1:duBc5zuJsmJXYOVVE/6PxejI+N3AaCqKjtsoLn1Je5Q=
|
|
||||||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
|
golang.org/x/oauth2 v0.0.0-20210323180902-22b0adad7558 h1:D7nTwh4J0i+5mW4Zjzn5omvlr6YBcWywE6KOcatyNxY=
|
||||||
|
golang.org/x/oauth2 v0.0.0-20210323180902-22b0adad7558/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
@ -1005,17 +1011,18 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w
|
||||||
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210314195730-07df6a141424/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210314195730-07df6a141424/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa h1:ZYxPR6aca/uhfRJyaOAtflSHjJYiktO7QnJC5ut7iY4=
|
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210324051608-47abb6519492 h1:Paq34FxTluEPvVyayQqMPgHm+vTOrIifmcYxFBx9TLg=
|
||||||
|
golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
@ -1133,8 +1140,9 @@ google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ
|
||||||
google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE=
|
google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE=
|
||||||
google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8=
|
google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8=
|
||||||
google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU=
|
google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU=
|
||||||
google.golang.org/api v0.42.0 h1:uqATLkpxiBrhrvFoebXUjvyzE9nQf+pVyy0Z0IHE+fc=
|
|
||||||
google.golang.org/api v0.42.0/go.mod h1:+Oj4s6ch2SEGtPjGqfUfZonBH0GjQH89gTeKKAEGZKI=
|
google.golang.org/api v0.42.0/go.mod h1:+Oj4s6ch2SEGtPjGqfUfZonBH0GjQH89gTeKKAEGZKI=
|
||||||
|
google.golang.org/api v0.43.0 h1:4sAyIHT6ZohtAQDoxws+ez7bROYmUlOVvsUscYCDTqA=
|
||||||
|
google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94=
|
||||||
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
|
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
|
||||||
google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
||||||
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
||||||
|
@ -1188,8 +1196,10 @@ google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6D
|
||||||
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210312152112-fc591d9ea70f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210312152112-fc591d9ea70f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210315173758-2651cd453018 h1:ZH67MZWSz0sEGHWoYAO1ysjL0yWEXTQ7gOxytol4KAk=
|
google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210315173758-2651cd453018/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210323160006-e668133fea6a/go.mod h1:f2Bd7+2PlaVKmvKQ52aspJZXIDaRQBVdOOBfJ5i8OEs=
|
||||||
|
google.golang.org/genproto v0.0.0-20210325141258-5636347f2b14 h1:0VNRpy5TroA/6mYt3pPEq+E3oomxLJ+FUit3+oIsUy4=
|
||||||
|
google.golang.org/genproto v0.0.0-20210325141258-5636347f2b14/go.mod h1:f2Bd7+2PlaVKmvKQ52aspJZXIDaRQBVdOOBfJ5i8OEs=
|
||||||
google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs=
|
google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs=
|
||||||
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
||||||
google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM=
|
google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM=
|
||||||
|
@ -1223,8 +1233,10 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2
|
||||||
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
|
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
|
||||||
google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c=
|
|
||||||
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
||||||
|
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||||
|
google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=
|
||||||
|
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
|
|
@ -81,7 +81,7 @@ func dirRemover() {
|
||||||
time.Sleep(sleepTime)
|
time.Sleep(sleepTime)
|
||||||
if sleepTime < maxSleepTime {
|
if sleepTime < maxSleepTime {
|
||||||
sleepTime *= 2
|
sleepTime *= 2
|
||||||
} else {
|
} else if sleepTime > time.Second {
|
||||||
logger.Warnf("failed to remove directory %q due to NFS lock; retrying later in %.3f seconds", w.path, sleepTime.Seconds())
|
logger.Warnf("failed to remove directory %q due to NFS lock; retrying later in %.3f seconds", w.path, sleepTime.Seconds())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package consul
|
package consul
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
@ -14,6 +15,8 @@ import (
|
||||||
"github.com/VictoriaMetrics/fasthttp"
|
"github.com/VictoriaMetrics/fasthttp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var waitTime = flag.Duration("promscrape.consul.waitTime", 0, "Wait time used by Consul service discovery. Default value is used if not set")
|
||||||
|
|
||||||
// apiConfig contains config for API server.
|
// apiConfig contains config for API server.
|
||||||
type apiConfig struct {
|
type apiConfig struct {
|
||||||
tagSeparator string
|
tagSeparator string
|
||||||
|
@ -116,7 +119,7 @@ func getDatacenter(client *discoveryutils.Client, dc string) (string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// maxWaitTime is duration for consul blocking request.
|
// maxWaitTime is duration for consul blocking request.
|
||||||
var maxWaitTime = func() time.Duration {
|
func maxWaitTime() time.Duration {
|
||||||
d := discoveryutils.BlockingClientReadTimeout
|
d := discoveryutils.BlockingClientReadTimeout
|
||||||
// Consul adds random delay up to wait/16, so reduce the timeout in order to keep it below BlockingClientReadTimeout.
|
// Consul adds random delay up to wait/16, so reduce the timeout in order to keep it below BlockingClientReadTimeout.
|
||||||
// See https://www.consul.io/api-docs/features/blocking
|
// See https://www.consul.io/api-docs/features/blocking
|
||||||
|
@ -125,17 +128,18 @@ var maxWaitTime = func() time.Duration {
|
||||||
if d > 10*time.Minute {
|
if d > 10*time.Minute {
|
||||||
d = 10 * time.Minute
|
d = 10 * time.Minute
|
||||||
}
|
}
|
||||||
|
if *waitTime > time.Second && *waitTime < d {
|
||||||
|
d = *waitTime
|
||||||
|
}
|
||||||
return d
|
return d
|
||||||
}()
|
}
|
||||||
|
|
||||||
var maxWaitTimeStr = fmt.Sprintf("%ds", int(maxWaitTime.Seconds()))
|
|
||||||
|
|
||||||
// getBlockingAPIResponse perfoms blocking request to Consul via client and returns response.
|
// getBlockingAPIResponse perfoms blocking request to Consul via client and returns response.
|
||||||
//
|
//
|
||||||
// See https://www.consul.io/api-docs/features/blocking .
|
// See https://www.consul.io/api-docs/features/blocking .
|
||||||
func getBlockingAPIResponse(client *discoveryutils.Client, path string, index int64) ([]byte, int64, error) {
|
func getBlockingAPIResponse(client *discoveryutils.Client, path string, index int64) ([]byte, int64, error) {
|
||||||
path += "&index=" + strconv.FormatInt(index, 10)
|
path += "&index=" + strconv.FormatInt(index, 10)
|
||||||
path += "&wait=" + maxWaitTimeStr
|
path += "&wait=" + fmt.Sprintf("%ds", int(maxWaitTime().Seconds()))
|
||||||
getMeta := func(resp *fasthttp.Response) {
|
getMeta := func(resp *fasthttp.Response) {
|
||||||
ind := resp.Header.Peek("X-Consul-Index")
|
ind := resp.Header.Peek("X-Consul-Index")
|
||||||
if len(ind) == 0 {
|
if len(ind) == 0 {
|
||||||
|
|
|
@ -13,8 +13,10 @@ import (
|
||||||
func getServiceNodesLabels(cfg *apiConfig) []map[string]string {
|
func getServiceNodesLabels(cfg *apiConfig) []map[string]string {
|
||||||
sns := cfg.consulWatcher.getServiceNodesSnapshot()
|
sns := cfg.consulWatcher.getServiceNodesSnapshot()
|
||||||
var ms []map[string]string
|
var ms []map[string]string
|
||||||
for _, sn := range sns {
|
for svc, sn := range sns {
|
||||||
ms = sn.appendTargetLabels(ms, cfg.tagSeparator)
|
for i := range sn {
|
||||||
|
ms = sn[i].appendTargetLabels(ms, svc, cfg.tagSeparator)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return ms
|
return ms
|
||||||
}
|
}
|
||||||
|
@ -67,7 +69,7 @@ func parseServiceNodes(data []byte) ([]ServiceNode, error) {
|
||||||
return sns, nil
|
return sns, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sn *ServiceNode) appendTargetLabels(ms []map[string]string, tagSeparator string) []map[string]string {
|
func (sn *ServiceNode) appendTargetLabels(ms []map[string]string, serviceName, tagSeparator string) []map[string]string {
|
||||||
var addr string
|
var addr string
|
||||||
if sn.Service.Address != "" {
|
if sn.Service.Address != "" {
|
||||||
addr = discoveryutils.JoinHostPort(sn.Service.Address, sn.Service.Port)
|
addr = discoveryutils.JoinHostPort(sn.Service.Address, sn.Service.Port)
|
||||||
|
@ -80,7 +82,7 @@ func (sn *ServiceNode) appendTargetLabels(ms []map[string]string, tagSeparator s
|
||||||
"__meta_consul_dc": sn.Node.Datacenter,
|
"__meta_consul_dc": sn.Node.Datacenter,
|
||||||
"__meta_consul_health": aggregatedStatus(sn.Checks),
|
"__meta_consul_health": aggregatedStatus(sn.Checks),
|
||||||
"__meta_consul_node": sn.Node.Node,
|
"__meta_consul_node": sn.Node.Node,
|
||||||
"__meta_consul_service": sn.Service.Service,
|
"__meta_consul_service": serviceName,
|
||||||
"__meta_consul_service_address": sn.Service.Address,
|
"__meta_consul_service_address": sn.Service.Address,
|
||||||
"__meta_consul_service_id": sn.Service.ID,
|
"__meta_consul_service_id": sn.Service.ID,
|
||||||
"__meta_consul_service_port": strconv.Itoa(sn.Service.Port),
|
"__meta_consul_service_port": strconv.Itoa(sn.Service.Port),
|
||||||
|
|
|
@ -106,7 +106,7 @@ func TestParseServiceNodesSuccess(t *testing.T) {
|
||||||
|
|
||||||
// Check sn.appendTargetLabels()
|
// Check sn.appendTargetLabels()
|
||||||
tagSeparator := ","
|
tagSeparator := ","
|
||||||
labelss := sn.appendTargetLabels(nil, tagSeparator)
|
labelss := sn.appendTargetLabels(nil, "redis", tagSeparator)
|
||||||
var sortedLabelss [][]prompbmarshal.Label
|
var sortedLabelss [][]prompbmarshal.Label
|
||||||
for _, labels := range labelss {
|
for _, labels := range labelss {
|
||||||
sortedLabelss = append(sortedLabelss, discoveryutils.GetSortedLabels(labels))
|
sortedLabelss = append(sortedLabelss, discoveryutils.GetSortedLabels(labels))
|
||||||
|
|
|
@ -234,11 +234,11 @@ func (sw *serviceWatcher) watchForServiceNodesUpdates(cw *consulWatcher) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// getServiceNodesSnapshot returns a snapshot of discovered ServiceNodes.
|
// getServiceNodesSnapshot returns a snapshot of discovered ServiceNodes.
|
||||||
func (cw *consulWatcher) getServiceNodesSnapshot() []ServiceNode {
|
func (cw *consulWatcher) getServiceNodesSnapshot() map[string][]ServiceNode {
|
||||||
var sns []ServiceNode
|
|
||||||
cw.servicesLock.Lock()
|
cw.servicesLock.Lock()
|
||||||
for _, sw := range cw.services {
|
sns := make(map[string][]ServiceNode, len(cw.services))
|
||||||
sns = append(sns, sw.serviceNodes...)
|
for svc, sw := range cw.services {
|
||||||
|
sns[svc] = sw.serviceNodes
|
||||||
}
|
}
|
||||||
cw.servicesLock.Unlock()
|
cw.servicesLock.Unlock()
|
||||||
return sns
|
return sns
|
||||||
|
|
|
@ -1501,9 +1501,14 @@ func (th *topHeap) Pop() interface{} {
|
||||||
panic(fmt.Errorf("BUG: Pop shouldn't be called"))
|
panic(fmt.Errorf("BUG: Pop shouldn't be called"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// searchMetricName appends metric name for the given metricID to dst
|
// searchMetricNameWithCache appends metric name for the given metricID to dst
|
||||||
// and returns the result.
|
// and returns the result.
|
||||||
func (db *indexDB) searchMetricName(dst []byte, metricID uint64) ([]byte, error) {
|
func (db *indexDB) searchMetricNameWithCache(dst []byte, metricID uint64) ([]byte, error) {
|
||||||
|
metricName := db.getMetricNameFromCache(dst, metricID)
|
||||||
|
if len(metricName) > len(dst) {
|
||||||
|
return metricName, nil
|
||||||
|
}
|
||||||
|
|
||||||
is := db.getIndexSearch(noDeadline)
|
is := db.getIndexSearch(noDeadline)
|
||||||
dst, err := is.searchMetricName(dst, metricID)
|
dst, err := is.searchMetricName(dst, metricID)
|
||||||
db.putIndexSearch(is)
|
db.putIndexSearch(is)
|
||||||
|
@ -1753,12 +1758,15 @@ func (is *indexSearch) getTSIDByMetricName(dst *TSID, metricName []byte) error {
|
||||||
return io.EOF
|
return io.EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
func (is *indexSearch) searchMetricName(dst []byte, metricID uint64) ([]byte, error) {
|
func (is *indexSearch) searchMetricNameWithCache(dst []byte, metricID uint64) ([]byte, error) {
|
||||||
metricName := is.db.getMetricNameFromCache(dst, metricID)
|
metricName := is.db.getMetricNameFromCache(dst, metricID)
|
||||||
if len(metricName) > len(dst) {
|
if len(metricName) > len(dst) {
|
||||||
return metricName, nil
|
return metricName, nil
|
||||||
}
|
}
|
||||||
|
return is.searchMetricName(dst, metricID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (is *indexSearch) searchMetricName(dst []byte, metricID uint64) ([]byte, error) {
|
||||||
ts := &is.ts
|
ts := &is.ts
|
||||||
kb := &is.kb
|
kb := &is.kb
|
||||||
kb.B = is.marshalCommonPrefix(kb.B[:0], nsPrefixMetricIDToMetricName)
|
kb.B = is.marshalCommonPrefix(kb.B[:0], nsPrefixMetricIDToMetricName)
|
||||||
|
@ -1929,7 +1937,7 @@ func (is *indexSearch) updateMetricIDsByMetricNameMatch(metricIDs, srcMetricIDs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var err error
|
var err error
|
||||||
metricName.B, err = is.searchMetricName(metricName.B[:0], metricID)
|
metricName.B, err = is.searchMetricNameWithCache(metricName.B[:0], metricID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
// It is likely the metricID->metricName entry didn't propagate to inverted index yet.
|
// It is likely the metricID->metricName entry didn't propagate to inverted index yet.
|
||||||
|
@ -2864,7 +2872,7 @@ func (is *indexSearch) getMetricIDsForDateAndFilters(date uint64, tfs *TagFilter
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, errTooManyLoops) {
|
if errors.Is(err, errTooManyLoops) {
|
||||||
// The tf took too many loops compared to the next filter. Postpone applying this filter.
|
// The tf took too many loops compared to the next filter. Postpone applying this filter.
|
||||||
storeLoopsCount(&tfw, loopsCount+1)
|
storeLoopsCount(&tfw, 2*loopsCount)
|
||||||
tfwsRemaining = append(tfwsRemaining, tfw)
|
tfwsRemaining = append(tfwsRemaining, tfw)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -2961,7 +2969,7 @@ func (is *indexSearch) getMetricIDsForDateAndFilters(date uint64, tfs *TagFilter
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, errTooManyLoops) {
|
if errors.Is(err, errTooManyLoops) {
|
||||||
// Postpone tf, since it took more loops than the next filter may need.
|
// Postpone tf, since it took more loops than the next filter may need.
|
||||||
storeFilterLoopsCount(&tfw, filterLoopsCount+1)
|
storeFilterLoopsCount(&tfw, 2*filterLoopsCount)
|
||||||
tfsPostponed = append(tfsPostponed, tf)
|
tfsPostponed = append(tfsPostponed, tf)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -3015,7 +3023,7 @@ func (is *indexSearch) storeDateMetricID(date, metricID uint64) error {
|
||||||
// There is no need in searching for metric name in is.db.extDB,
|
// There is no need in searching for metric name in is.db.extDB,
|
||||||
// Since the storeDateMetricID function is called only after the metricID->metricName
|
// Since the storeDateMetricID function is called only after the metricID->metricName
|
||||||
// is added into the current is.db.
|
// is added into the current is.db.
|
||||||
kb.B, err = is.searchMetricName(kb.B[:0], metricID)
|
kb.B, err = is.searchMetricNameWithCache(kb.B[:0], metricID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
logger.Errorf("missing metricName by metricID %d; this could be the case after unclean shutdown; "+
|
logger.Errorf("missing metricName by metricID %d; this could be the case after unclean shutdown; "+
|
||||||
|
@ -3252,7 +3260,7 @@ func (is *indexSearch) updateMetricIDsForPrefix(prefix []byte, metricIDs *uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
// The estimated number of index scan loops a single loop in updateMetricIDsByMetricNameMatch takes.
|
// The estimated number of index scan loops a single loop in updateMetricIDsByMetricNameMatch takes.
|
||||||
const loopsCountPerMetricNameMatch = 500
|
const loopsCountPerMetricNameMatch = 150
|
||||||
|
|
||||||
func (is *indexSearch) intersectMetricIDsWithTagFilter(tf *tagFilter, filter *uint64set.Set) (*uint64set.Set, error) {
|
func (is *indexSearch) intersectMetricIDsWithTagFilter(tf *tagFilter, filter *uint64set.Set) (*uint64set.Set, error) {
|
||||||
if filter.Len() == 0 {
|
if filter.Len() == 0 {
|
||||||
|
|
|
@ -746,16 +746,16 @@ func testIndexDBCheckTSIDByName(db *indexDB, mns []MetricName, tsids []TSID, isC
|
||||||
|
|
||||||
// Search for metric name for the given metricID.
|
// Search for metric name for the given metricID.
|
||||||
var err error
|
var err error
|
||||||
metricNameCopy, err = db.searchMetricName(metricNameCopy[:0], tsidCopy.MetricID)
|
metricNameCopy, err = db.searchMetricNameWithCache(metricNameCopy[:0], tsidCopy.MetricID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error in searchMetricName for metricID=%d; i=%d: %w", tsidCopy.MetricID, i, err)
|
return fmt.Errorf("error in searchMetricNameWithCache for metricID=%d; i=%d: %w", tsidCopy.MetricID, i, err)
|
||||||
}
|
}
|
||||||
if !bytes.Equal(metricName, metricNameCopy) {
|
if !bytes.Equal(metricName, metricNameCopy) {
|
||||||
return fmt.Errorf("unexpected mn for metricID=%d;\ngot\n%q\nwant\n%q", tsidCopy.MetricID, metricNameCopy, metricName)
|
return fmt.Errorf("unexpected mn for metricID=%d;\ngot\n%q\nwant\n%q", tsidCopy.MetricID, metricNameCopy, metricName)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try searching metric name for non-existent MetricID.
|
// Try searching metric name for non-existent MetricID.
|
||||||
buf, err := db.searchMetricName(nil, 1)
|
buf, err := db.searchMetricNameWithCache(nil, 1)
|
||||||
if err != io.EOF {
|
if err != io.EOF {
|
||||||
return fmt.Errorf("expecting io.EOF error when searching for non-existing metricID; got %v", err)
|
return fmt.Errorf("expecting io.EOF error when searching for non-existing metricID; got %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -91,7 +91,7 @@ type Search struct {
|
||||||
// MetricBlockRef is updated with each Search.NextMetricBlock call.
|
// MetricBlockRef is updated with each Search.NextMetricBlock call.
|
||||||
MetricBlockRef MetricBlockRef
|
MetricBlockRef MetricBlockRef
|
||||||
|
|
||||||
storage *Storage
|
idb *indexDB
|
||||||
|
|
||||||
ts tableSearch
|
ts tableSearch
|
||||||
|
|
||||||
|
@ -109,13 +109,15 @@ type Search struct {
|
||||||
needClosing bool
|
needClosing bool
|
||||||
|
|
||||||
loops int
|
loops int
|
||||||
|
|
||||||
|
prevMetricID uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Search) reset() {
|
func (s *Search) reset() {
|
||||||
s.MetricBlockRef.MetricName = s.MetricBlockRef.MetricName[:0]
|
s.MetricBlockRef.MetricName = s.MetricBlockRef.MetricName[:0]
|
||||||
s.MetricBlockRef.BlockRef = nil
|
s.MetricBlockRef.BlockRef = nil
|
||||||
|
|
||||||
s.storage = nil
|
s.idb = nil
|
||||||
s.ts.reset()
|
s.ts.reset()
|
||||||
s.tr = TimeRange{}
|
s.tr = TimeRange{}
|
||||||
s.tfss = nil
|
s.tfss = nil
|
||||||
|
@ -123,6 +125,7 @@ func (s *Search) reset() {
|
||||||
s.err = nil
|
s.err = nil
|
||||||
s.needClosing = false
|
s.needClosing = false
|
||||||
s.loops = 0
|
s.loops = 0
|
||||||
|
s.prevMetricID = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// Init initializes s from the given storage, tfss and tr.
|
// Init initializes s from the given storage, tfss and tr.
|
||||||
|
@ -155,7 +158,7 @@ func (s *Search) Init(storage *Storage, tfss []*TagFilters, tr TimeRange, maxMet
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
s.storage = storage
|
s.idb = storage.idb()
|
||||||
return len(tsids)
|
return len(tsids)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,16 +193,19 @@ func (s *Search) NextMetricBlock() bool {
|
||||||
}
|
}
|
||||||
s.loops++
|
s.loops++
|
||||||
tsid := &s.ts.BlockRef.bh.TSID
|
tsid := &s.ts.BlockRef.bh.TSID
|
||||||
var err error
|
if tsid.MetricID != s.prevMetricID {
|
||||||
s.MetricBlockRef.MetricName, err = s.storage.searchMetricName(s.MetricBlockRef.MetricName[:0], tsid.MetricID)
|
var err error
|
||||||
if err != nil {
|
s.MetricBlockRef.MetricName, err = s.idb.searchMetricNameWithCache(s.MetricBlockRef.MetricName[:0], tsid.MetricID)
|
||||||
if err == io.EOF {
|
if err != nil {
|
||||||
// Skip missing metricName for tsid.MetricID.
|
if err == io.EOF {
|
||||||
// It should be automatically fixed. See indexDB.searchMetricName for details.
|
// Skip missing metricName for tsid.MetricID.
|
||||||
continue
|
// It should be automatically fixed. See indexDB.searchMetricName for details.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
s.err = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
s.err = err
|
s.prevMetricID = tsid.MetricID
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
s.MetricBlockRef.BlockRef = s.ts.BlockRef
|
s.MetricBlockRef.BlockRef = s.ts.BlockRef
|
||||||
return true
|
return true
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package storage
|
package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
@ -866,14 +867,17 @@ func (s *Storage) SearchMetricNames(tfss []*TagFilters, tr TimeRange, maxMetrics
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
idb := s.idb()
|
idb := s.idb()
|
||||||
is := idb.getIndexSearch(deadline)
|
|
||||||
defer idb.putIndexSearch(is)
|
|
||||||
mns := make([]MetricName, 0, len(tsids))
|
mns := make([]MetricName, 0, len(tsids))
|
||||||
var metricName []byte
|
var metricName []byte
|
||||||
for i := range tsids {
|
for i := range tsids {
|
||||||
|
if i&paceLimiterSlowIterationsMask == 0 {
|
||||||
|
if err := checkSearchDeadlineAndPace(deadline); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
metricID := tsids[i].MetricID
|
metricID := tsids[i].MetricID
|
||||||
var err error
|
var err error
|
||||||
metricName, err = is.searchMetricName(metricName[:0], metricID)
|
metricName, err = idb.searchMetricNameWithCache(metricName[:0], metricID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
// Skip missing metricName for metricID.
|
// Skip missing metricName for metricID.
|
||||||
|
@ -938,7 +942,7 @@ var (
|
||||||
|
|
||||||
// prefetchMetricNames pre-fetches metric names for the given tsids into metricID->metricName cache.
|
// prefetchMetricNames pre-fetches metric names for the given tsids into metricID->metricName cache.
|
||||||
//
|
//
|
||||||
// This should speed-up further searchMetricName calls for metricIDs from tsids.
|
// This should speed-up further searchMetricNameWithCache calls for metricIDs from tsids.
|
||||||
func (s *Storage) prefetchMetricNames(tsids []TSID, deadline uint64) error {
|
func (s *Storage) prefetchMetricNames(tsids []TSID, deadline uint64) error {
|
||||||
if len(tsids) == 0 {
|
if len(tsids) == 0 {
|
||||||
return nil
|
return nil
|
||||||
|
@ -961,6 +965,7 @@ func (s *Storage) prefetchMetricNames(tsids []TSID, deadline uint64) error {
|
||||||
|
|
||||||
// Pre-fetch metricIDs.
|
// Pre-fetch metricIDs.
|
||||||
sort.Sort(metricIDs)
|
sort.Sort(metricIDs)
|
||||||
|
var missingMetricIDs []uint64
|
||||||
var metricName []byte
|
var metricName []byte
|
||||||
var err error
|
var err error
|
||||||
idb := s.idb()
|
idb := s.idb()
|
||||||
|
@ -972,11 +977,34 @@ func (s *Storage) prefetchMetricNames(tsids []TSID, deadline uint64) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
metricName, err = is.searchMetricName(metricName[:0], metricID)
|
metricName, err = is.searchMetricNameWithCache(metricName[:0], metricID)
|
||||||
if err != nil && err != io.EOF {
|
if err != nil {
|
||||||
|
if err == io.EOF {
|
||||||
|
missingMetricIDs = append(missingMetricIDs, metricID)
|
||||||
|
continue
|
||||||
|
}
|
||||||
return fmt.Errorf("error in pre-fetching metricName for metricID=%d: %w", metricID, err)
|
return fmt.Errorf("error in pre-fetching metricName for metricID=%d: %w", metricID, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
idb.doExtDB(func(extDB *indexDB) {
|
||||||
|
is := extDB.getIndexSearch(deadline)
|
||||||
|
defer extDB.putIndexSearch(is)
|
||||||
|
for loops, metricID := range missingMetricIDs {
|
||||||
|
if loops&paceLimiterSlowIterationsMask == 0 {
|
||||||
|
if err = checkSearchDeadlineAndPace(is.deadline); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
metricName, err = is.searchMetricNameWithCache(metricName[:0], metricID)
|
||||||
|
if err != nil && err != io.EOF {
|
||||||
|
err = fmt.Errorf("error in pre-fetching metricName for metricID=%d in extDB: %w", metricID, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// Store the pre-fetched metricIDs, so they aren't pre-fetched next time.
|
// Store the pre-fetched metricIDs, so they aren't pre-fetched next time.
|
||||||
|
|
||||||
|
@ -1010,12 +1038,6 @@ func (s *Storage) DeleteMetrics(tfss []*TagFilters) (int, error) {
|
||||||
return deletedCount, nil
|
return deletedCount, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// searchMetricName appends metric name for the given metricID to dst
|
|
||||||
// and returns the result.
|
|
||||||
func (s *Storage) searchMetricName(dst []byte, metricID uint64) ([]byte, error) {
|
|
||||||
return s.idb().searchMetricName(dst, metricID)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SearchTagKeysOnTimeRange searches for tag keys on tr.
|
// SearchTagKeysOnTimeRange searches for tag keys on tr.
|
||||||
func (s *Storage) SearchTagKeysOnTimeRange(tr TimeRange, maxTagKeys int, deadline uint64) ([]string, error) {
|
func (s *Storage) SearchTagKeysOnTimeRange(tr TimeRange, maxTagKeys int, deadline uint64) ([]string, error) {
|
||||||
return s.idb().SearchTagKeysOnTimeRange(tr, maxTagKeys, deadline)
|
return s.idb().SearchTagKeysOnTimeRange(tr, maxTagKeys, deadline)
|
||||||
|
@ -1046,14 +1068,16 @@ func (s *Storage) SearchTagValueSuffixes(tr TimeRange, tagKey, tagValuePrefix []
|
||||||
}
|
}
|
||||||
|
|
||||||
// SearchGraphitePaths returns all the matching paths for the given graphite query on the given tr.
|
// SearchGraphitePaths returns all the matching paths for the given graphite query on the given tr.
|
||||||
//
|
|
||||||
// If more than maxPaths paths is found, then only the first maxPaths paths is returned.
|
|
||||||
func (s *Storage) SearchGraphitePaths(tr TimeRange, query []byte, maxPaths int, deadline uint64) ([]string, error) {
|
func (s *Storage) SearchGraphitePaths(tr TimeRange, query []byte, maxPaths int, deadline uint64) ([]string, error) {
|
||||||
queryStr := string(query)
|
return s.searchGraphitePaths(tr, nil, query, maxPaths, deadline)
|
||||||
n := strings.IndexAny(queryStr, "*[{")
|
}
|
||||||
|
|
||||||
|
func (s *Storage) searchGraphitePaths(tr TimeRange, qHead, qTail []byte, maxPaths int, deadline uint64) ([]string, error) {
|
||||||
|
n := bytes.IndexAny(qTail, "*[{")
|
||||||
if n < 0 {
|
if n < 0 {
|
||||||
// Verify that the query matches a metric name.
|
// Verify that qHead matches a metric name.
|
||||||
suffixes, err := s.SearchTagValueSuffixes(tr, nil, query, '.', 1, deadline)
|
qHead = append(qHead, qTail...)
|
||||||
|
suffixes, err := s.SearchTagValueSuffixes(tr, nil, qHead, '.', 1, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -1065,9 +1089,10 @@ func (s *Storage) SearchGraphitePaths(tr TimeRange, query []byte, maxPaths int,
|
||||||
// The query matches a metric name with additional suffix.
|
// The query matches a metric name with additional suffix.
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
return []string{queryStr}, nil
|
return []string{string(qHead)}, nil
|
||||||
}
|
}
|
||||||
suffixes, err := s.SearchTagValueSuffixes(tr, nil, query[:n], '.', maxPaths, deadline)
|
qHead = append(qHead, qTail[:n]...)
|
||||||
|
suffixes, err := s.SearchTagValueSuffixes(tr, nil, qHead, '.', maxPaths, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -1077,34 +1102,34 @@ func (s *Storage) SearchGraphitePaths(tr TimeRange, query []byte, maxPaths int,
|
||||||
if len(suffixes) >= maxPaths {
|
if len(suffixes) >= maxPaths {
|
||||||
return nil, fmt.Errorf("more than maxPaths=%d suffixes found", maxPaths)
|
return nil, fmt.Errorf("more than maxPaths=%d suffixes found", maxPaths)
|
||||||
}
|
}
|
||||||
qPrefixStr := queryStr[:n]
|
qNode := qTail[n:]
|
||||||
qTail := ""
|
qTail = nil
|
||||||
qNode := queryStr[n:]
|
|
||||||
mustMatchLeafs := true
|
mustMatchLeafs := true
|
||||||
if m := strings.IndexByte(qNode, '.'); m >= 0 {
|
if m := bytes.IndexByte(qNode, '.'); m >= 0 {
|
||||||
qTail = qNode[m+1:]
|
qTail = qNode[m+1:]
|
||||||
qNode = qNode[:m+1]
|
qNode = qNode[:m+1]
|
||||||
mustMatchLeafs = false
|
mustMatchLeafs = false
|
||||||
}
|
}
|
||||||
re, err := getRegexpForGraphiteQuery(qNode)
|
re, err := getRegexpForGraphiteQuery(string(qNode))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
qHeadLen := len(qHead)
|
||||||
var paths []string
|
var paths []string
|
||||||
for _, suffix := range suffixes {
|
for _, suffix := range suffixes {
|
||||||
if len(paths) > maxPaths {
|
if len(paths) > maxPaths {
|
||||||
paths = paths[:maxPaths]
|
return nil, fmt.Errorf("more than maxPath=%d paths found", maxPaths)
|
||||||
break
|
|
||||||
}
|
}
|
||||||
if !re.MatchString(suffix) {
|
if !re.MatchString(suffix) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if mustMatchLeafs {
|
if mustMatchLeafs {
|
||||||
paths = append(paths, qPrefixStr+suffix)
|
qHead = append(qHead[:qHeadLen], suffix...)
|
||||||
|
paths = append(paths, string(qHead))
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
q := qPrefixStr + suffix + qTail
|
qHead = append(qHead[:qHeadLen], suffix...)
|
||||||
ps, err := s.SearchGraphitePaths(tr, []byte(q), maxPaths, deadline)
|
ps, err := s.searchGraphitePaths(tr, qHead, qTail, maxPaths, deadline)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
29
vendor/cloud.google.com/go/CHANGES.md
generated
vendored
29
vendor/cloud.google.com/go/CHANGES.md
generated
vendored
|
@ -1,6 +1,35 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
|
||||||
|
## [0.80.0](https://www.github.com/googleapis/google-cloud-go/compare/v0.79.0...v0.80.0) (2021-03-23)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **all:** This is a breaking change in dialogflow
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **appengine:** added vm_liveness, search_api_available, network_settings, service_account, build_env_variables, kms_key_reference to v1 API ([fd04a55](https://www.github.com/googleapis/google-cloud-go/commit/fd04a552213f99619c714b5858548f61f4948493))
|
||||||
|
* **assuredworkloads:** Add 'resource_settings' field to provide custom properties (ids) for the provisioned projects. ([ab4824a](https://www.github.com/googleapis/google-cloud-go/commit/ab4824a7914864228e59b244d6382de862139524))
|
||||||
|
* **assuredworkloads:** add HIPAA and HITRUST compliance regimes ([ab4824a](https://www.github.com/googleapis/google-cloud-go/commit/ab4824a7914864228e59b244d6382de862139524))
|
||||||
|
* **dialogflow/cx:** added fallback option when restoring an agent docs: clarified experiment length ([cd70aa9](https://www.github.com/googleapis/google-cloud-go/commit/cd70aa9cc1a5dccfe4e49d2d6ca6db2119553c86))
|
||||||
|
* **dialogflow/cx:** start generating apiv3 ([#3850](https://www.github.com/googleapis/google-cloud-go/issues/3850)) ([febbdcf](https://www.github.com/googleapis/google-cloud-go/commit/febbdcf13fcea3f5d8186c3d3dface1c0d27ef9e)), refs [#3634](https://www.github.com/googleapis/google-cloud-go/issues/3634)
|
||||||
|
* **documentai:** add EVAL_SKIPPED value to the Provenance.OperationType enum in document.proto. ([cb43066](https://www.github.com/googleapis/google-cloud-go/commit/cb4306683926843f6e977f207fa6070bb9242a61))
|
||||||
|
* **documentai:** start generating apiv1 ([#3853](https://www.github.com/googleapis/google-cloud-go/issues/3853)) ([d68e604](https://www.github.com/googleapis/google-cloud-go/commit/d68e604c953eea90489f6134e71849b24dd0fcbf))
|
||||||
|
* **internal/godocfx:** add prettyprint class to code blocks ([#3819](https://www.github.com/googleapis/google-cloud-go/issues/3819)) ([6e49f21](https://www.github.com/googleapis/google-cloud-go/commit/6e49f2148b116ee439c8a882dcfeefb6e7647c57))
|
||||||
|
* **internal/godocfx:** handle Markdown content ([#3816](https://www.github.com/googleapis/google-cloud-go/issues/3816)) ([56d5d0a](https://www.github.com/googleapis/google-cloud-go/commit/56d5d0a900197fb2de46120a0eda649f2c17448f))
|
||||||
|
* **kms:** Add maxAttempts to retry policy for KMS gRPC service config feat: Add Bazel exports_files entry for KMS gRPC service config ([fd04a55](https://www.github.com/googleapis/google-cloud-go/commit/fd04a552213f99619c714b5858548f61f4948493))
|
||||||
|
* **resourcesettings:** start generating apiv1 ([#3854](https://www.github.com/googleapis/google-cloud-go/issues/3854)) ([3b288b4](https://www.github.com/googleapis/google-cloud-go/commit/3b288b4fa593c6cb418f696b5b26768967c20b9e))
|
||||||
|
* **speech:** Support output transcript to GCS for LongRunningRecognize. ([fd04a55](https://www.github.com/googleapis/google-cloud-go/commit/fd04a552213f99619c714b5858548f61f4948493))
|
||||||
|
* **speech:** Support output transcript to GCS for LongRunningRecognize. ([cd70aa9](https://www.github.com/googleapis/google-cloud-go/commit/cd70aa9cc1a5dccfe4e49d2d6ca6db2119553c86))
|
||||||
|
* **speech:** Support output transcript to GCS for LongRunningRecognize. ([35a8706](https://www.github.com/googleapis/google-cloud-go/commit/35a870662df8bf63c4ec10a0233d1d7a708007ee))
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* **all:** auto-regenerate gapics ([#3837](https://www.github.com/googleapis/google-cloud-go/issues/3837)) ([ab4824a](https://www.github.com/googleapis/google-cloud-go/commit/ab4824a7914864228e59b244d6382de862139524))
|
||||||
|
|
||||||
## [0.79.0](https://www.github.com/googleapis/google-cloud-go/compare/v0.78.0...v0.79.0) (2021-03-10)
|
## [0.79.0](https://www.github.com/googleapis/google-cloud-go/compare/v0.78.0...v0.79.0) (2021-03-10)
|
||||||
|
|
||||||
|
|
||||||
|
|
10
vendor/cloud.google.com/go/go.mod
generated
vendored
10
vendor/cloud.google.com/go/go.mod
generated
vendored
|
@ -5,7 +5,7 @@ go 1.11
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go/storage v1.10.0
|
cloud.google.com/go/storage v1.10.0
|
||||||
github.com/golang/mock v1.5.0
|
github.com/golang/mock v1.5.0
|
||||||
github.com/golang/protobuf v1.4.3
|
github.com/golang/protobuf v1.5.1
|
||||||
github.com/google/go-cmp v0.5.5
|
github.com/google/go-cmp v0.5.5
|
||||||
github.com/google/martian/v3 v3.1.0
|
github.com/google/martian/v3 v3.1.0
|
||||||
github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5
|
github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5
|
||||||
|
@ -13,11 +13,11 @@ require (
|
||||||
github.com/jstemmer/go-junit-report v0.9.1
|
github.com/jstemmer/go-junit-report v0.9.1
|
||||||
go.opencensus.io v0.23.0
|
go.opencensus.io v0.23.0
|
||||||
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5
|
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
|
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4
|
||||||
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93
|
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84
|
||||||
golang.org/x/text v0.3.5
|
golang.org/x/text v0.3.5
|
||||||
golang.org/x/tools v0.1.0
|
golang.org/x/tools v0.1.0
|
||||||
google.golang.org/api v0.41.0
|
google.golang.org/api v0.42.0
|
||||||
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e
|
google.golang.org/genproto v0.0.0-20210323160006-e668133fea6a
|
||||||
google.golang.org/grpc v1.36.0
|
google.golang.org/grpc v1.36.0
|
||||||
)
|
)
|
||||||
|
|
27
vendor/cloud.google.com/go/go.sum
generated
vendored
27
vendor/cloud.google.com/go/go.sum
generated
vendored
|
@ -16,6 +16,7 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb
|
||||||
cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI=
|
cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI=
|
||||||
cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
|
cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
|
||||||
cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
|
cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
|
||||||
|
cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8=
|
||||||
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
|
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
|
||||||
cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
|
cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
|
||||||
cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
|
cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
|
||||||
|
@ -82,8 +83,10 @@ github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:W
|
||||||
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
||||||
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
||||||
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
||||||
github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM=
|
|
||||||
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
||||||
|
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||||
|
github.com/golang/protobuf v1.5.1 h1:jAbXjIeW2ZSW2AwFxlGTDoc2CjI2XujLkV3ArsZFCvc=
|
||||||
|
github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM=
|
||||||
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
||||||
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
||||||
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
|
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
|
||||||
|
@ -221,8 +224,9 @@ golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwY
|
||||||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
||||||
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
|
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
|
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 h1:b0LrWgu8+q7z4J+0Y3Umo5q1dL7NXBkKBWkaVkAq17E=
|
||||||
|
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
|
||||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
||||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
|
@ -232,8 +236,9 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ
|
||||||
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93 h1:alLDrZkL34Y2bnGHfvC1CYBRBXCXgx8AC2vY4MRtYX4=
|
|
||||||
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
|
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 h1:duBc5zuJsmJXYOVVE/6PxejI+N3AaCqKjtsoLn1Je5Q=
|
||||||
|
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
|
||||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
@ -278,8 +283,11 @@ golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7w
|
||||||
golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b h1:ggRgirZABFolTmi3sn6Ivd9SipZwLedQ5wR0aAKnFxU=
|
|
||||||
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210314195730-07df6a141424/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 h1:EZ2mChiOa8udjfp6rRmswTbtZN/QzUQp4ptM4rnjHvc=
|
||||||
|
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
@ -363,8 +371,9 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513
|
||||||
google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg=
|
google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg=
|
||||||
google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE=
|
google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE=
|
||||||
google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8=
|
google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8=
|
||||||
google.golang.org/api v0.41.0 h1:12aHIhhQCpWtd3Rcp2WwbboB5W72tJHcjzyA9MCoHAw=
|
|
||||||
google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU=
|
google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU=
|
||||||
|
google.golang.org/api v0.42.0 h1:uqATLkpxiBrhrvFoebXUjvyzE9nQf+pVyy0Z0IHE+fc=
|
||||||
|
google.golang.org/api v0.42.0/go.mod h1:+Oj4s6ch2SEGtPjGqfUfZonBH0GjQH89gTeKKAEGZKI=
|
||||||
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
|
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
|
||||||
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
||||||
google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
||||||
|
@ -409,8 +418,10 @@ google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6D
|
||||||
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e h1:ajd1UAja5y1pRx7xOU6R6faEHLKigztzPRvZ+mpE1Fo=
|
|
||||||
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
|
google.golang.org/genproto v0.0.0-20210312152112-fc591d9ea70f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
|
||||||
|
google.golang.org/genproto v0.0.0-20210323160006-e668133fea6a h1:XVaQ1+BDKvrRcgppHhtAaniHCKyV5xJAvymwsPHHFaE=
|
||||||
|
google.golang.org/genproto v0.0.0-20210323160006-e668133fea6a/go.mod h1:f2Bd7+2PlaVKmvKQ52aspJZXIDaRQBVdOOBfJ5i8OEs=
|
||||||
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
||||||
google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
|
google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
|
||||||
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
|
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
|
||||||
|
@ -438,8 +449,10 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2
|
||||||
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
|
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
|
||||||
google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c=
|
|
||||||
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
||||||
|
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||||
|
google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=
|
||||||
|
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
||||||
|
|
36
vendor/cloud.google.com/go/internal/.repo-metadata-full.json
generated
vendored
36
vendor/cloud.google.com/go/internal/.repo-metadata-full.json
generated
vendored
|
@ -29,11 +29,11 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/apigateway/apiv1",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/apigateway/apiv1",
|
||||||
"release_level": "beta"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/appengine/apiv1": {
|
"cloud.google.com/go/appengine/apiv1": {
|
||||||
"distribution_name": "cloud.google.com/go/appengine/apiv1",
|
"distribution_name": "cloud.google.com/go/appengine/apiv1",
|
||||||
"description": "App Engine Audit Data",
|
"description": "App Engine Admin API",
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/appengine/apiv1",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/appengine/apiv1",
|
||||||
|
@ -359,6 +359,14 @@
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/dialogflow/apiv2",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/dialogflow/apiv2",
|
||||||
"release_level": "ga"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
|
"cloud.google.com/go/dialogflow/cx/apiv3": {
|
||||||
|
"distribution_name": "cloud.google.com/go/dialogflow/cx/apiv3",
|
||||||
|
"description": "Dialogflow API",
|
||||||
|
"language": "Go",
|
||||||
|
"client_library_type": "generated",
|
||||||
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/dialogflow/cx/apiv3",
|
||||||
|
"release_level": "beta"
|
||||||
|
},
|
||||||
"cloud.google.com/go/dialogflow/cx/apiv3beta1": {
|
"cloud.google.com/go/dialogflow/cx/apiv3beta1": {
|
||||||
"distribution_name": "cloud.google.com/go/dialogflow/cx/apiv3beta1",
|
"distribution_name": "cloud.google.com/go/dialogflow/cx/apiv3beta1",
|
||||||
"description": "Dialogflow API",
|
"description": "Dialogflow API",
|
||||||
|
@ -375,6 +383,14 @@
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/dlp/apiv2",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/dlp/apiv2",
|
||||||
"release_level": "ga"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
|
"cloud.google.com/go/documentai/apiv1": {
|
||||||
|
"distribution_name": "cloud.google.com/go/documentai/apiv1",
|
||||||
|
"description": "Cloud Document AI API",
|
||||||
|
"language": "Go",
|
||||||
|
"client_library_type": "generated",
|
||||||
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/documentai/apiv1",
|
||||||
|
"release_level": "beta"
|
||||||
|
},
|
||||||
"cloud.google.com/go/documentai/apiv1beta3": {
|
"cloud.google.com/go/documentai/apiv1beta3": {
|
||||||
"distribution_name": "cloud.google.com/go/documentai/apiv1beta3",
|
"distribution_name": "cloud.google.com/go/documentai/apiv1beta3",
|
||||||
"description": "Cloud Document AI API",
|
"description": "Cloud Document AI API",
|
||||||
|
@ -557,7 +573,7 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/memcache/apiv1",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/memcache/apiv1",
|
||||||
"release_level": "beta"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/memcache/apiv1beta2": {
|
"cloud.google.com/go/memcache/apiv1beta2": {
|
||||||
"distribution_name": "cloud.google.com/go/memcache/apiv1beta2",
|
"distribution_name": "cloud.google.com/go/memcache/apiv1beta2",
|
||||||
|
@ -621,7 +637,7 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/orgpolicy/apiv2",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/orgpolicy/apiv2",
|
||||||
"release_level": "beta"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/osconfig/agentendpoint/apiv1": {
|
"cloud.google.com/go/osconfig/agentendpoint/apiv1": {
|
||||||
"distribution_name": "cloud.google.com/go/osconfig/agentendpoint/apiv1",
|
"distribution_name": "cloud.google.com/go/osconfig/agentendpoint/apiv1",
|
||||||
|
@ -781,6 +797,14 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/resourcemanager/apiv2",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/resourcemanager/apiv2",
|
||||||
|
"release_level": "ga"
|
||||||
|
},
|
||||||
|
"cloud.google.com/go/resourcesettings/apiv1": {
|
||||||
|
"distribution_name": "cloud.google.com/go/resourcesettings/apiv1",
|
||||||
|
"description": "Resource Settings API",
|
||||||
|
"language": "Go",
|
||||||
|
"client_library_type": "generated",
|
||||||
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/resourcesettings/apiv1",
|
||||||
"release_level": "beta"
|
"release_level": "beta"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/retail/apiv2": {
|
"cloud.google.com/go/retail/apiv2": {
|
||||||
|
@ -877,7 +901,7 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicecontrol/apiv1",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicecontrol/apiv1",
|
||||||
"release_level": "beta"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/servicedirectory/apiv1": {
|
"cloud.google.com/go/servicedirectory/apiv1": {
|
||||||
"distribution_name": "cloud.google.com/go/servicedirectory/apiv1",
|
"distribution_name": "cloud.google.com/go/servicedirectory/apiv1",
|
||||||
|
@ -901,7 +925,7 @@
|
||||||
"language": "Go",
|
"language": "Go",
|
||||||
"client_library_type": "generated",
|
"client_library_type": "generated",
|
||||||
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicemanagement/apiv1",
|
"docs_url": "https://pkg.go.dev/cloud.google.com/go/servicemanagement/apiv1",
|
||||||
"release_level": "beta"
|
"release_level": "ga"
|
||||||
},
|
},
|
||||||
"cloud.google.com/go/spanner": {
|
"cloud.google.com/go/spanner": {
|
||||||
"distribution_name": "cloud.google.com/go/spanner",
|
"distribution_name": "cloud.google.com/go/spanner",
|
||||||
|
|
6
vendor/github.com/VictoriaMetrics/metrics/README.md
generated
vendored
6
vendor/github.com/VictoriaMetrics/metrics/README.md
generated
vendored
|
@ -86,8 +86,8 @@ Because the `github.com/prometheus/client_golang` is too complex and is hard to
|
||||||
#### Why the `metrics.WritePrometheus` doesn't expose documentation for each metric?
|
#### Why the `metrics.WritePrometheus` doesn't expose documentation for each metric?
|
||||||
|
|
||||||
Because this documentation is ignored by Prometheus. The documentation is for users.
|
Because this documentation is ignored by Prometheus. The documentation is for users.
|
||||||
Just add comments in the source code or in other suitable place explaining each metric
|
Just give meaningful names to the exported metrics or add comments in the source code
|
||||||
exposed from your application.
|
or in other suitable place explaining each metric exposed from your application.
|
||||||
|
|
||||||
|
|
||||||
#### How to implement [CounterVec](https://godoc.org/github.com/prometheus/client_golang/prometheus#CounterVec) in `metrics`?
|
#### How to implement [CounterVec](https://godoc.org/github.com/prometheus/client_golang/prometheus#CounterVec) in `metrics`?
|
||||||
|
@ -98,7 +98,7 @@ instead of `CounterVec.With`. See [this example](https://pkg.go.dev/github.com/V
|
||||||
|
|
||||||
#### Why [Histogram](http://godoc.org/github.com/VictoriaMetrics/metrics#Histogram) buckets contain `vmrange` labels instead of `le` labels like in Prometheus histograms?
|
#### Why [Histogram](http://godoc.org/github.com/VictoriaMetrics/metrics#Histogram) buckets contain `vmrange` labels instead of `le` labels like in Prometheus histograms?
|
||||||
|
|
||||||
Buckets with `vmrange` labels occupy less disk space comparing to Promethes-style buckets with `le` labels,
|
Buckets with `vmrange` labels occupy less disk space compared to Promethes-style buckets with `le` labels,
|
||||||
because `vmrange` buckets don't include counters for the previous ranges. [VictoriaMetrics](https://github.com/VictoriaMetrics/VictoriaMetrics) provides `prometheus_buckets`
|
because `vmrange` buckets don't include counters for the previous ranges. [VictoriaMetrics](https://github.com/VictoriaMetrics/VictoriaMetrics) provides `prometheus_buckets`
|
||||||
function, which converts `vmrange` buckets to Prometheus-style buckets with `le` labels. This is useful for building heatmaps in Grafana.
|
function, which converts `vmrange` buckets to Prometheus-style buckets with `le` labels. This is useful for building heatmaps in Grafana.
|
||||||
Additionally, its' `histogram_quantile` function transparently handles histogram buckets with `vmrange` labels.
|
Additionally, its' `histogram_quantile` function transparently handles histogram buckets with `vmrange` labels.
|
||||||
|
|
41
vendor/github.com/VictoriaMetrics/metrics/metrics.go
generated
vendored
41
vendor/github.com/VictoriaMetrics/metrics/metrics.go
generated
vendored
|
@ -47,8 +47,45 @@ func WritePrometheus(w io.Writer, exposeProcessMetrics bool) {
|
||||||
|
|
||||||
// WriteProcessMetrics writes additional process metrics in Prometheus format to w.
|
// WriteProcessMetrics writes additional process metrics in Prometheus format to w.
|
||||||
//
|
//
|
||||||
// Various `go_*` and `process_*` metrics are exposed for the currently
|
// The following `go_*` and `process_*` metrics are exposed for the currently
|
||||||
// running process.
|
// running process. Below is a short description for the exposed `process_*` metrics:
|
||||||
|
//
|
||||||
|
// - process_cpu_seconds_system_total - CPU time spent in syscalls
|
||||||
|
// - process_cpu_seconds_user_total - CPU time spent in userspace
|
||||||
|
// - process_cpu_seconds_total - CPU time spent by the process
|
||||||
|
// - process_major_pagefaults_total - page faults resulted in disk IO
|
||||||
|
// - process_minor_pagefaults_total - page faults resolved without disk IO
|
||||||
|
// - process_resident_memory_bytes - recently accessed memory (aka RSS or resident memory)
|
||||||
|
// - process_resident_memory_peak_bytes - the maximum RSS memory usage
|
||||||
|
// - process_resident_memory_anon_bytes - RSS for memory-mapped files
|
||||||
|
// - process_resident_memory_file_bytes - RSS for memory allocated by the process
|
||||||
|
// - process_resident_memory_shared_bytes - RSS for memory shared between multiple processes
|
||||||
|
// - process_virtual_memory_bytes - virtual memory usage
|
||||||
|
// - process_virtual_memory_peak_bytes - the maximum virtual memory usage
|
||||||
|
// - process_num_threads - the number of threads
|
||||||
|
// - process_start_time_seconds - process start time as unix timestamp
|
||||||
|
//
|
||||||
|
// - process_io_read_bytes_total - the number of bytes read via syscalls
|
||||||
|
// - process_io_written_bytes_total - the number of bytes written via syscalls
|
||||||
|
// - process_io_read_syscalls_total - the number of read syscalls
|
||||||
|
// - process_io_write_syscalls_total - the number of write syscalls
|
||||||
|
// - process_io_storage_read_bytes_total - the number of bytes actually read from disk
|
||||||
|
// - process_io_storage_written_bytes_total - the number of bytes actually written to disk
|
||||||
|
//
|
||||||
|
// - go_memstats_alloc_bytes - memory usage for Go objects in the heap
|
||||||
|
// - go_memstats_alloc_bytes_total - the cumulative counter for total size of allocated Go objects
|
||||||
|
// - go_memstats_frees_total - the cumulative counter for number of freed Go objects
|
||||||
|
// - go_memstats_gc_cpu_fraction - the fraction of CPU spent in Go garbage collector
|
||||||
|
// - go_memstats_gc_sys_bytes - the size of Go garbage collector metadata
|
||||||
|
// - go_memstats_heap_alloc_bytes - the same as go_memstats_alloc_bytes
|
||||||
|
// - go_memstats_heap_idle_bytes - idle memory ready for new Go object allocations
|
||||||
|
// - go_memstats_heap_objects - the number of Go objects in the heap
|
||||||
|
// - go_memstats_heap_sys_bytes - memory requested for Go objects from the OS
|
||||||
|
// - go_memstats_mallocs_total - the number of allocations for Go objects
|
||||||
|
// - go_memstats_next_gc_bytes - the target heap size when the next garbage collection should start
|
||||||
|
// - go_memstats_stack_inuse_bytes - memory used for goroutine stacks
|
||||||
|
// - go_memstats_stack_sys_bytes - memory requested fromthe OS for goroutine stacks
|
||||||
|
// - go_memstats_sys_bytes - memory requested by Go runtime from the OS
|
||||||
//
|
//
|
||||||
// The WriteProcessMetrics func is usually called in combination with writing Set metrics
|
// The WriteProcessMetrics func is usually called in combination with writing Set metrics
|
||||||
// inside "/metrics" handler:
|
// inside "/metrics" handler:
|
||||||
|
|
69
vendor/github.com/VictoriaMetrics/metrics/process_metrics_linux.go
generated
vendored
69
vendor/github.com/VictoriaMetrics/metrics/process_metrics_linux.go
generated
vendored
|
@ -81,7 +81,7 @@ func writeProcessMetrics(w io.Writer) {
|
||||||
fmt.Fprintf(w, "process_resident_memory_bytes %d\n", p.Rss*4096)
|
fmt.Fprintf(w, "process_resident_memory_bytes %d\n", p.Rss*4096)
|
||||||
fmt.Fprintf(w, "process_start_time_seconds %d\n", startTimeSeconds)
|
fmt.Fprintf(w, "process_start_time_seconds %d\n", startTimeSeconds)
|
||||||
fmt.Fprintf(w, "process_virtual_memory_bytes %d\n", p.Vsize)
|
fmt.Fprintf(w, "process_virtual_memory_bytes %d\n", p.Vsize)
|
||||||
|
writeProcessMemMetrics(w)
|
||||||
writeIOMetrics(w)
|
writeIOMetrics(w)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ func writeIOMetrics(w io.Writer) {
|
||||||
|
|
||||||
var startTimeSeconds = time.Now().Unix()
|
var startTimeSeconds = time.Now().Unix()
|
||||||
|
|
||||||
// WriteFDMetrics writes process_max_fds and process_open_fds metrics to w.
|
// writeFDMetrics writes process_max_fds and process_open_fds metrics to w.
|
||||||
func writeFDMetrics(w io.Writer) {
|
func writeFDMetrics(w io.Writer) {
|
||||||
totalOpenFDs, err := getOpenFDsCount("/proc/self/fd")
|
totalOpenFDs, err := getOpenFDsCount("/proc/self/fd")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -198,3 +198,68 @@ func getMaxFilesLimit(path string) (uint64, error) {
|
||||||
}
|
}
|
||||||
return 0, fmt.Errorf("cannot find max open files limit")
|
return 0, fmt.Errorf("cannot find max open files limit")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://man7.org/linux/man-pages/man5/procfs.5.html
|
||||||
|
type memStats struct {
|
||||||
|
vmPeak uint64
|
||||||
|
rssPeak uint64
|
||||||
|
rssAnon uint64
|
||||||
|
rssFile uint64
|
||||||
|
rssShmem uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeProcessMemMetrics(w io.Writer) {
|
||||||
|
ms, err := getMemStats("/proc/self/status")
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("ERROR: cannot determine memory status: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Fprintf(w, "process_virtual_memory_peak_bytes %d\n", ms.vmPeak)
|
||||||
|
fmt.Fprintf(w, "process_resident_memory_peak_bytes %d\n", ms.rssPeak)
|
||||||
|
fmt.Fprintf(w, "process_resident_memory_anon_bytes %d\n", ms.rssAnon)
|
||||||
|
fmt.Fprintf(w, "process_resident_memory_file_bytes %d\n", ms.rssFile)
|
||||||
|
fmt.Fprintf(w, "process_resident_memory_shared_bytes %d\n", ms.rssShmem)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func getMemStats(path string) (*memStats, error) {
|
||||||
|
data, err := ioutil.ReadFile(path)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var ms memStats
|
||||||
|
lines := strings.Split(string(data), "\n")
|
||||||
|
for _, s := range lines {
|
||||||
|
if !strings.HasPrefix(s, "Vm") && !strings.HasPrefix(s, "Rss") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// Extract key value.
|
||||||
|
line := strings.Fields(s)
|
||||||
|
if len(line) != 3 {
|
||||||
|
return nil, fmt.Errorf("unexpected number of fields found in %q; got %d; want %d", s, len(line), 3)
|
||||||
|
}
|
||||||
|
memStatName := line[0]
|
||||||
|
memStatValue := line[1]
|
||||||
|
value, err := strconv.ParseUint(memStatValue, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("cannot parse number from %q: %w", s, err)
|
||||||
|
}
|
||||||
|
if line[2] != "kB" {
|
||||||
|
return nil, fmt.Errorf("expecting kB value in %q; got %q", s, line[2])
|
||||||
|
}
|
||||||
|
value *= 1024
|
||||||
|
switch memStatName {
|
||||||
|
case "VmPeak:":
|
||||||
|
ms.vmPeak = value
|
||||||
|
case "VmHWM:":
|
||||||
|
ms.rssPeak = value
|
||||||
|
case "RssAnon:":
|
||||||
|
ms.rssAnon = value
|
||||||
|
case "RssFile:":
|
||||||
|
ms.rssFile = value
|
||||||
|
case "RssShmem:":
|
||||||
|
ms.rssShmem = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &ms, nil
|
||||||
|
}
|
||||||
|
|
58
vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go
generated
vendored
58
vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go
generated
vendored
|
@ -1004,9 +1004,11 @@ var awsPartition = partition{
|
||||||
"batch": service{
|
"batch": service{
|
||||||
|
|
||||||
Endpoints: endpoints{
|
Endpoints: endpoints{
|
||||||
|
"af-south-1": endpoint{},
|
||||||
"ap-east-1": endpoint{},
|
"ap-east-1": endpoint{},
|
||||||
"ap-northeast-1": endpoint{},
|
"ap-northeast-1": endpoint{},
|
||||||
"ap-northeast-2": endpoint{},
|
"ap-northeast-2": endpoint{},
|
||||||
|
"ap-northeast-3": endpoint{},
|
||||||
"ap-south-1": endpoint{},
|
"ap-south-1": endpoint{},
|
||||||
"ap-southeast-1": endpoint{},
|
"ap-southeast-1": endpoint{},
|
||||||
"ap-southeast-2": endpoint{},
|
"ap-southeast-2": endpoint{},
|
||||||
|
@ -5019,12 +5021,42 @@ var awsPartition = partition{
|
||||||
"eu-west-1": endpoint{},
|
"eu-west-1": endpoint{},
|
||||||
"eu-west-2": endpoint{},
|
"eu-west-2": endpoint{},
|
||||||
"eu-west-3": endpoint{},
|
"eu-west-3": endpoint{},
|
||||||
"me-south-1": endpoint{},
|
"fips-ca-central-1": endpoint{
|
||||||
"sa-east-1": endpoint{},
|
Hostname: "ram-fips.ca-central-1.amazonaws.com",
|
||||||
"us-east-1": endpoint{},
|
CredentialScope: credentialScope{
|
||||||
"us-east-2": endpoint{},
|
Region: "ca-central-1",
|
||||||
"us-west-1": endpoint{},
|
},
|
||||||
"us-west-2": endpoint{},
|
},
|
||||||
|
"fips-us-east-1": endpoint{
|
||||||
|
Hostname: "ram-fips.us-east-1.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-east-1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"fips-us-east-2": endpoint{
|
||||||
|
Hostname: "ram-fips.us-east-2.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-east-2",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"fips-us-west-1": endpoint{
|
||||||
|
Hostname: "ram-fips.us-west-1.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-west-1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"fips-us-west-2": endpoint{
|
||||||
|
Hostname: "ram-fips.us-west-2.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-west-2",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"me-south-1": endpoint{},
|
||||||
|
"sa-east-1": endpoint{},
|
||||||
|
"us-east-1": endpoint{},
|
||||||
|
"us-east-2": endpoint{},
|
||||||
|
"us-west-1": endpoint{},
|
||||||
|
"us-west-2": endpoint{},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"rds": service{
|
"rds": service{
|
||||||
|
@ -9214,8 +9246,18 @@ var awsusgovPartition = partition{
|
||||||
"ram": service{
|
"ram": service{
|
||||||
|
|
||||||
Endpoints: endpoints{
|
Endpoints: endpoints{
|
||||||
"us-gov-east-1": endpoint{},
|
"us-gov-east-1": endpoint{
|
||||||
"us-gov-west-1": endpoint{},
|
Hostname: "ram.us-gov-east-1.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-gov-east-1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"us-gov-west-1": endpoint{
|
||||||
|
Hostname: "ram.us-gov-west-1.amazonaws.com",
|
||||||
|
CredentialScope: credentialScope{
|
||||||
|
Region: "us-gov-west-1",
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"rds": service{
|
"rds": service{
|
||||||
|
|
5
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go
generated
vendored
5
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go
generated
vendored
|
@ -689,9 +689,12 @@ func (ctx *signingCtx) buildBodyDigest() error {
|
||||||
if hash == "" {
|
if hash == "" {
|
||||||
includeSHA256Header := ctx.unsignedPayload ||
|
includeSHA256Header := ctx.unsignedPayload ||
|
||||||
ctx.ServiceName == "s3" ||
|
ctx.ServiceName == "s3" ||
|
||||||
|
ctx.ServiceName == "s3-object-lambda" ||
|
||||||
ctx.ServiceName == "glacier"
|
ctx.ServiceName == "glacier"
|
||||||
|
|
||||||
s3Presign := ctx.isPresign && ctx.ServiceName == "s3"
|
s3Presign := ctx.isPresign &&
|
||||||
|
(ctx.ServiceName == "s3" ||
|
||||||
|
ctx.ServiceName == "s3-object-lambda")
|
||||||
|
|
||||||
if ctx.unsignedPayload || s3Presign {
|
if ctx.unsignedPayload || s3Presign {
|
||||||
hash = "UNSIGNED-PAYLOAD"
|
hash = "UNSIGNED-PAYLOAD"
|
||||||
|
|
2
vendor/github.com/aws/aws-sdk-go/aws/version.go
generated
vendored
2
vendor/github.com/aws/aws-sdk-go/aws/version.go
generated
vendored
|
@ -5,4 +5,4 @@ package aws
|
||||||
const SDKName = "aws-sdk-go"
|
const SDKName = "aws-sdk-go"
|
||||||
|
|
||||||
// SDKVersion is the version of this SDK
|
// SDKVersion is the version of this SDK
|
||||||
const SDKVersion = "1.37.31"
|
const SDKVersion = "1.38.4"
|
||||||
|
|
18
vendor/github.com/aws/aws-sdk-go/internal/s3shared/arn/arn.go
generated
vendored
18
vendor/github.com/aws/aws-sdk-go/internal/s3shared/arn/arn.go
generated
vendored
|
@ -7,6 +7,21 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/aws/arn"
|
"github.com/aws/aws-sdk-go/aws/arn"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var supportedServiceARN = []string{
|
||||||
|
"s3",
|
||||||
|
"s3-outposts",
|
||||||
|
"s3-object-lambda",
|
||||||
|
}
|
||||||
|
|
||||||
|
func isSupportedServiceARN(service string) bool {
|
||||||
|
for _, name := range supportedServiceARN {
|
||||||
|
if name == service {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// Resource provides the interfaces abstracting ARNs of specific resource
|
// Resource provides the interfaces abstracting ARNs of specific resource
|
||||||
// types.
|
// types.
|
||||||
type Resource interface {
|
type Resource interface {
|
||||||
|
@ -29,9 +44,10 @@ func ParseResource(s string, resParser ResourceParser) (resARN Resource, err err
|
||||||
return nil, InvalidARNError{ARN: a, Reason: "partition not set"}
|
return nil, InvalidARNError{ARN: a, Reason: "partition not set"}
|
||||||
}
|
}
|
||||||
|
|
||||||
if a.Service != "s3" && a.Service != "s3-outposts" {
|
if !isSupportedServiceARN(a.Service) {
|
||||||
return nil, InvalidARNError{ARN: a, Reason: "service is not supported"}
|
return nil, InvalidARNError{ARN: a, Reason: "service is not supported"}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(a.Resource) == 0 {
|
if len(a.Resource) == 0 {
|
||||||
return nil, InvalidARNError{ARN: a, Reason: "resource not set"}
|
return nil, InvalidARNError{ARN: a, Reason: "resource not set"}
|
||||||
}
|
}
|
||||||
|
|
15
vendor/github.com/aws/aws-sdk-go/internal/s3shared/arn/s3_object_lambda_arn.go
generated
vendored
Normal file
15
vendor/github.com/aws/aws-sdk-go/internal/s3shared/arn/s3_object_lambda_arn.go
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
package arn
|
||||||
|
|
||||||
|
// S3ObjectLambdaARN represents an ARN for the s3-object-lambda service
|
||||||
|
type S3ObjectLambdaARN interface {
|
||||||
|
Resource
|
||||||
|
|
||||||
|
isS3ObjectLambdasARN()
|
||||||
|
}
|
||||||
|
|
||||||
|
// S3ObjectLambdaAccessPointARN is an S3ObjectLambdaARN for the Access Point resource type
|
||||||
|
type S3ObjectLambdaAccessPointARN struct {
|
||||||
|
AccessPointARN
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s S3ObjectLambdaAccessPointARN) isS3ObjectLambdasARN() {}
|
1299
vendor/github.com/aws/aws-sdk-go/service/s3/api.go
generated
vendored
1299
vendor/github.com/aws/aws-sdk-go/service/s3/api.go
generated
vendored
File diff suppressed because it is too large
Load diff
2
vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go
generated
vendored
2
vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go
generated
vendored
|
@ -48,6 +48,8 @@ func defaultInitRequestFn(r *request.Request) {
|
||||||
// case opGetObject:
|
// case opGetObject:
|
||||||
// r.Handlers.Build.PushBack(askForTxEncodingAppendMD5)
|
// r.Handlers.Build.PushBack(askForTxEncodingAppendMD5)
|
||||||
// r.Handlers.Unmarshal.PushBack(useMD5ValidationReader)
|
// r.Handlers.Unmarshal.PushBack(useMD5ValidationReader)
|
||||||
|
case opWriteGetObjectResponse:
|
||||||
|
r.Handlers.Build.PushFront(buildWriteGetObjectResponseEndpoint)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
102
vendor/github.com/aws/aws-sdk-go/service/s3/endpoint.go
generated
vendored
102
vendor/github.com/aws/aws-sdk-go/service/s3/endpoint.go
generated
vendored
|
@ -1,6 +1,8 @@
|
||||||
package s3
|
package s3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -11,6 +13,13 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/internal/s3shared/arn"
|
"github.com/aws/aws-sdk-go/internal/s3shared/arn"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
s3Namespace = "s3"
|
||||||
|
s3AccessPointNamespace = "s3-accesspoint"
|
||||||
|
s3ObjectsLambdaNamespace = "s3-object-lambda"
|
||||||
|
s3OutpostsNamespace = "s3-outposts"
|
||||||
|
)
|
||||||
|
|
||||||
// Used by shapes with members decorated as endpoint ARN.
|
// Used by shapes with members decorated as endpoint ARN.
|
||||||
func parseEndpointARN(v string) (arn.Resource, error) {
|
func parseEndpointARN(v string) (arn.Resource, error) {
|
||||||
return arn.ParseResource(v, accessPointResourceParser)
|
return arn.ParseResource(v, accessPointResourceParser)
|
||||||
|
@ -20,10 +29,14 @@ func accessPointResourceParser(a awsarn.ARN) (arn.Resource, error) {
|
||||||
resParts := arn.SplitResource(a.Resource)
|
resParts := arn.SplitResource(a.Resource)
|
||||||
switch resParts[0] {
|
switch resParts[0] {
|
||||||
case "accesspoint":
|
case "accesspoint":
|
||||||
if a.Service != "s3" {
|
switch a.Service {
|
||||||
return arn.AccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: "service is not s3"}
|
case s3Namespace:
|
||||||
|
return arn.ParseAccessPointResource(a, resParts[1:])
|
||||||
|
case s3ObjectsLambdaNamespace:
|
||||||
|
return parseS3ObjectLambdaAccessPointResource(a, resParts)
|
||||||
|
default:
|
||||||
|
return arn.AccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: fmt.Sprintf("service is not %s or %s", s3Namespace, s3ObjectsLambdaNamespace)}
|
||||||
}
|
}
|
||||||
return arn.ParseAccessPointResource(a, resParts[1:])
|
|
||||||
case "outpost":
|
case "outpost":
|
||||||
if a.Service != "s3-outposts" {
|
if a.Service != "s3-outposts" {
|
||||||
return arn.OutpostAccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: "service is not s3-outposts"}
|
return arn.OutpostAccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: "service is not s3-outposts"}
|
||||||
|
@ -80,6 +93,25 @@ func parseOutpostAccessPointResource(a awsarn.ARN, resParts []string) (arn.Outpo
|
||||||
return outpostAccessPointARN, nil
|
return outpostAccessPointARN, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseS3ObjectLambdaAccessPointResource(a awsarn.ARN, resParts []string) (arn.S3ObjectLambdaAccessPointARN, error) {
|
||||||
|
if a.Service != s3ObjectsLambdaNamespace {
|
||||||
|
return arn.S3ObjectLambdaAccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: fmt.Sprintf("service is not %s", s3ObjectsLambdaNamespace)}
|
||||||
|
}
|
||||||
|
|
||||||
|
accessPointARN, err := arn.ParseAccessPointResource(a, resParts[1:])
|
||||||
|
if err != nil {
|
||||||
|
return arn.S3ObjectLambdaAccessPointARN{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(accessPointARN.Region) == 0 {
|
||||||
|
return arn.S3ObjectLambdaAccessPointARN{}, arn.InvalidARNError{ARN: a, Reason: fmt.Sprintf("%s region not set", s3ObjectsLambdaNamespace)}
|
||||||
|
}
|
||||||
|
|
||||||
|
return arn.S3ObjectLambdaAccessPointARN{
|
||||||
|
AccessPointARN: accessPointARN,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func endpointHandler(req *request.Request) {
|
func endpointHandler(req *request.Request) {
|
||||||
endpoint, ok := req.Params.(endpointARNGetter)
|
endpoint, ok := req.Params.(endpointARNGetter)
|
||||||
if !ok || !endpoint.hasEndpointARN() {
|
if !ok || !endpoint.hasEndpointARN() {
|
||||||
|
@ -116,6 +148,11 @@ func endpointHandler(req *request.Request) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
req.Error = err
|
req.Error = err
|
||||||
}
|
}
|
||||||
|
case arn.S3ObjectLambdaAccessPointARN:
|
||||||
|
err = updateRequestS3ObjectLambdaAccessPointEndpoint(req, tv)
|
||||||
|
if err != nil {
|
||||||
|
req.Error = err
|
||||||
|
}
|
||||||
case arn.OutpostAccessPointARN:
|
case arn.OutpostAccessPointARN:
|
||||||
// outposts does not support FIPS regions
|
// outposts does not support FIPS regions
|
||||||
if resReq.ResourceConfiguredForFIPS() {
|
if resReq.ResourceConfiguredForFIPS() {
|
||||||
|
@ -162,6 +199,31 @@ func updateRequestAccessPointEndpoint(req *request.Request, accessPoint arn.Acce
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func updateRequestS3ObjectLambdaAccessPointEndpoint(req *request.Request, accessPoint arn.S3ObjectLambdaAccessPointARN) error {
|
||||||
|
// DualStack not supported
|
||||||
|
if aws.BoolValue(req.Config.UseDualStack) {
|
||||||
|
return s3shared.NewClientConfiguredForDualStackError(accessPoint,
|
||||||
|
req.ClientInfo.PartitionID, aws.StringValue(req.Config.Region), nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Accelerate not supported
|
||||||
|
if aws.BoolValue(req.Config.S3UseAccelerate) {
|
||||||
|
return s3shared.NewClientConfiguredForAccelerateError(accessPoint,
|
||||||
|
req.ClientInfo.PartitionID, aws.StringValue(req.Config.Region), nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ignore the disable host prefix for access points
|
||||||
|
req.Config.DisableEndpointHostPrefix = aws.Bool(false)
|
||||||
|
|
||||||
|
if err := s3ObjectLambdaAccessPointEndpointBuilder(accessPoint).build(req); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
removeBucketFromPath(req.HTTPRequest.URL)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func updateRequestOutpostAccessPointEndpoint(req *request.Request, accessPoint arn.OutpostAccessPointARN) error {
|
func updateRequestOutpostAccessPointEndpoint(req *request.Request, accessPoint arn.OutpostAccessPointARN) error {
|
||||||
// Accelerate not supported
|
// Accelerate not supported
|
||||||
if aws.BoolValue(req.Config.S3UseAccelerate) {
|
if aws.BoolValue(req.Config.S3UseAccelerate) {
|
||||||
|
@ -192,3 +254,37 @@ func removeBucketFromPath(u *url.URL) {
|
||||||
u.Path = "/"
|
u.Path = "/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func buildWriteGetObjectResponseEndpoint(req *request.Request) {
|
||||||
|
// DualStack not supported
|
||||||
|
if aws.BoolValue(req.Config.UseDualStack) {
|
||||||
|
req.Error = awserr.New("ConfigurationError", "client configured for dualstack but not supported for operation", nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Accelerate not supported
|
||||||
|
if aws.BoolValue(req.Config.S3UseAccelerate) {
|
||||||
|
req.Error = awserr.New("ConfigurationError", "client configured for accelerate but not supported for operation", nil)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
signingName := s3ObjectsLambdaNamespace
|
||||||
|
signingRegion := req.ClientInfo.SigningRegion
|
||||||
|
|
||||||
|
if !hasCustomEndpoint(req) {
|
||||||
|
endpoint, err := resolveRegionalEndpoint(req, aws.StringValue(req.Config.Region), EndpointsID)
|
||||||
|
if err != nil {
|
||||||
|
req.Error = awserr.New(request.ErrCodeSerialization, "failed to resolve endpoint", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
signingRegion = endpoint.SigningRegion
|
||||||
|
|
||||||
|
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
||||||
|
req.Error = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
updateS3HostPrefixForS3ObjectLambda(req)
|
||||||
|
}
|
||||||
|
|
||||||
|
redirectSigner(req, signingName, signingRegion)
|
||||||
|
}
|
||||||
|
|
98
vendor/github.com/aws/aws-sdk-go/service/s3/endpoint_builder.go
generated
vendored
98
vendor/github.com/aws/aws-sdk-go/service/s3/endpoint_builder.go
generated
vendored
|
@ -66,13 +66,9 @@ func (a accessPointEndpointBuilder) build(req *request.Request) error {
|
||||||
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
const serviceEndpointLabel = "s3-accesspoint"
|
|
||||||
|
|
||||||
// dual stack provided by endpoint resolver
|
// dual stack provided by endpoint resolver
|
||||||
cfgHost := req.HTTPRequest.URL.Host
|
updateS3HostForS3AccessPoint(req)
|
||||||
if strings.HasPrefix(cfgHost, "s3") {
|
|
||||||
req.HTTPRequest.URL.Host = serviceEndpointLabel + cfgHost[2:]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protocol.HostPrefixBuilder{
|
protocol.HostPrefixBuilder{
|
||||||
|
@ -98,6 +94,73 @@ func (a accessPointEndpointBuilder) hostPrefixLabelValues() map[string]string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// s3ObjectLambdaAccessPointEndpointBuilder represents the endpoint builder for an s3 object lambda access point arn
|
||||||
|
type s3ObjectLambdaAccessPointEndpointBuilder arn.S3ObjectLambdaAccessPointARN
|
||||||
|
|
||||||
|
// build builds the endpoint for corresponding access point arn
|
||||||
|
//
|
||||||
|
// For building an endpoint from access point arn, format used is:
|
||||||
|
// - Access point endpoint format : {accesspointName}-{accountId}.s3-object-lambda.{region}.{dnsSuffix}
|
||||||
|
// - example : myaccesspoint-012345678901.s3-object-lambda.us-west-2.amazonaws.com
|
||||||
|
//
|
||||||
|
// Access Point Endpoint requests are signed using "s3-object-lambda" as signing name.
|
||||||
|
//
|
||||||
|
func (a s3ObjectLambdaAccessPointEndpointBuilder) build(req *request.Request) error {
|
||||||
|
resolveRegion := arn.S3ObjectLambdaAccessPointARN(a).Region
|
||||||
|
cfgRegion := aws.StringValue(req.Config.Region)
|
||||||
|
|
||||||
|
if s3shared.IsFIPS(cfgRegion) {
|
||||||
|
if aws.BoolValue(req.Config.S3UseARNRegion) && s3shared.IsCrossRegion(req, resolveRegion) {
|
||||||
|
// FIPS with cross region is not supported, the SDK must fail
|
||||||
|
// because there is no well defined method for SDK to construct a
|
||||||
|
// correct FIPS endpoint.
|
||||||
|
return s3shared.NewClientConfiguredForCrossRegionFIPSError(arn.S3ObjectLambdaAccessPointARN(a),
|
||||||
|
req.ClientInfo.PartitionID, cfgRegion, nil)
|
||||||
|
}
|
||||||
|
resolveRegion = cfgRegion
|
||||||
|
}
|
||||||
|
|
||||||
|
endpoint, err := resolveRegionalEndpoint(req, resolveRegion, EndpointsID)
|
||||||
|
if err != nil {
|
||||||
|
return s3shared.NewFailedToResolveEndpointError(arn.S3ObjectLambdaAccessPointARN(a),
|
||||||
|
req.ClientInfo.PartitionID, cfgRegion, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
endpoint.URL = endpoints.AddScheme(endpoint.URL, aws.BoolValue(req.Config.DisableSSL))
|
||||||
|
|
||||||
|
endpoint.SigningName = s3ObjectsLambdaNamespace
|
||||||
|
|
||||||
|
if !hasCustomEndpoint(req) {
|
||||||
|
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
updateS3HostPrefixForS3ObjectLambda(req)
|
||||||
|
}
|
||||||
|
|
||||||
|
protocol.HostPrefixBuilder{
|
||||||
|
Prefix: accessPointPrefixTemplate,
|
||||||
|
LabelsFn: a.hostPrefixLabelValues,
|
||||||
|
}.Build(req)
|
||||||
|
|
||||||
|
// signer redirection
|
||||||
|
redirectSigner(req, endpoint.SigningName, endpoint.SigningRegion)
|
||||||
|
|
||||||
|
err = protocol.ValidateEndpointHost(req.Operation.Name, req.HTTPRequest.URL.Host)
|
||||||
|
if err != nil {
|
||||||
|
return s3shared.NewInvalidARNError(arn.S3ObjectLambdaAccessPointARN(a), err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a s3ObjectLambdaAccessPointEndpointBuilder) hostPrefixLabelValues() map[string]string {
|
||||||
|
return map[string]string{
|
||||||
|
accessPointPrefixLabel: arn.S3ObjectLambdaAccessPointARN(a).AccessPointName,
|
||||||
|
accountIDPrefixLabel: arn.S3ObjectLambdaAccessPointARN(a).AccountID,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// outpostAccessPointEndpointBuilder represents the Endpoint builder for outpost access point arn.
|
// outpostAccessPointEndpointBuilder represents the Endpoint builder for outpost access point arn.
|
||||||
type outpostAccessPointEndpointBuilder arn.OutpostAccessPointARN
|
type outpostAccessPointEndpointBuilder arn.OutpostAccessPointARN
|
||||||
|
|
||||||
|
@ -114,7 +177,7 @@ func (o outpostAccessPointEndpointBuilder) build(req *request.Request) error {
|
||||||
resolveService := o.Service
|
resolveService := o.Service
|
||||||
|
|
||||||
endpointsID := resolveService
|
endpointsID := resolveService
|
||||||
if resolveService == "s3-outposts" {
|
if resolveService == s3OutpostsNamespace {
|
||||||
endpointsID = "s3"
|
endpointsID = "s3"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,11 +193,7 @@ func (o outpostAccessPointEndpointBuilder) build(req *request.Request) error {
|
||||||
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
if err = updateRequestEndpoint(req, endpoint.URL); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// add url host as s3-outposts
|
updateHostPrefix(req, endpointsID, resolveService)
|
||||||
cfgHost := req.HTTPRequest.URL.Host
|
|
||||||
if strings.HasPrefix(cfgHost, endpointsID) {
|
|
||||||
req.HTTPRequest.URL.Host = resolveService + cfgHost[len(endpointsID):]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protocol.HostPrefixBuilder{
|
protocol.HostPrefixBuilder{
|
||||||
|
@ -170,7 +229,6 @@ func resolveRegionalEndpoint(r *request.Request, region string, endpointsID stri
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateRequestEndpoint(r *request.Request, endpoint string) (err error) {
|
func updateRequestEndpoint(r *request.Request, endpoint string) (err error) {
|
||||||
|
|
||||||
r.HTTPRequest.URL, err = url.Parse(endpoint + r.Operation.HTTPPath)
|
r.HTTPRequest.URL, err = url.Parse(endpoint + r.Operation.HTTPPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return awserr.New(request.ErrCodeSerialization,
|
return awserr.New(request.ErrCodeSerialization,
|
||||||
|
@ -185,3 +243,19 @@ func redirectSigner(req *request.Request, signingName string, signingRegion stri
|
||||||
req.ClientInfo.SigningName = signingName
|
req.ClientInfo.SigningName = signingName
|
||||||
req.ClientInfo.SigningRegion = signingRegion
|
req.ClientInfo.SigningRegion = signingRegion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func updateS3HostForS3AccessPoint(req *request.Request) {
|
||||||
|
updateHostPrefix(req, "s3", s3AccessPointNamespace)
|
||||||
|
}
|
||||||
|
|
||||||
|
func updateS3HostPrefixForS3ObjectLambda(req *request.Request) {
|
||||||
|
updateHostPrefix(req, "s3", s3ObjectsLambdaNamespace)
|
||||||
|
}
|
||||||
|
|
||||||
|
func updateHostPrefix(req *request.Request, oldEndpointPrefix, newEndpointPrefix string) {
|
||||||
|
host := req.HTTPRequest.URL.Host
|
||||||
|
if strings.HasPrefix(host, oldEndpointPrefix) {
|
||||||
|
// replace service hostlabel oldEndpointPrefix to newEndpointPrefix
|
||||||
|
req.HTTPRequest.URL.Host = newEndpointPrefix + host[len(oldEndpointPrefix):]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go
generated
vendored
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go
generated
vendored
|
@ -455,6 +455,10 @@ type S3API interface {
|
||||||
UploadPartCopyWithContext(aws.Context, *s3.UploadPartCopyInput, ...request.Option) (*s3.UploadPartCopyOutput, error)
|
UploadPartCopyWithContext(aws.Context, *s3.UploadPartCopyInput, ...request.Option) (*s3.UploadPartCopyOutput, error)
|
||||||
UploadPartCopyRequest(*s3.UploadPartCopyInput) (*request.Request, *s3.UploadPartCopyOutput)
|
UploadPartCopyRequest(*s3.UploadPartCopyInput) (*request.Request, *s3.UploadPartCopyOutput)
|
||||||
|
|
||||||
|
WriteGetObjectResponse(*s3.WriteGetObjectResponseInput) (*s3.WriteGetObjectResponseOutput, error)
|
||||||
|
WriteGetObjectResponseWithContext(aws.Context, *s3.WriteGetObjectResponseInput, ...request.Option) (*s3.WriteGetObjectResponseOutput, error)
|
||||||
|
WriteGetObjectResponseRequest(*s3.WriteGetObjectResponseInput) (*request.Request, *s3.WriteGetObjectResponseOutput)
|
||||||
|
|
||||||
WaitUntilBucketExists(*s3.HeadBucketInput) error
|
WaitUntilBucketExists(*s3.HeadBucketInput) error
|
||||||
WaitUntilBucketExistsWithContext(aws.Context, *s3.HeadBucketInput, ...request.WaiterOption) error
|
WaitUntilBucketExistsWithContext(aws.Context, *s3.HeadBucketInput, ...request.WaiterOption) error
|
||||||
|
|
||||||
|
|
23
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/arn.go
generated
vendored
Normal file
23
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/arn.go
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
package s3manager
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/aws/aws-sdk-go/aws/arn"
|
||||||
|
)
|
||||||
|
|
||||||
|
func validateSupportedARNType(bucket string) error {
|
||||||
|
if !arn.IsARN(bucket) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
parsedARN, err := arn.Parse(bucket)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if parsedARN.Service == "s3-object-lambda" {
|
||||||
|
return fmt.Errorf("manager does not support s3-object-lambda service ARNs")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go
generated
vendored
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go
generated
vendored
|
@ -192,6 +192,10 @@ func (d Downloader) Download(w io.WriterAt, input *s3.GetObjectInput, options ..
|
||||||
// to perform a single GetObjectInput request for that object's range. This will
|
// to perform a single GetObjectInput request for that object's range. This will
|
||||||
// caused the part size, and concurrency configurations to be ignored.
|
// caused the part size, and concurrency configurations to be ignored.
|
||||||
func (d Downloader) DownloadWithContext(ctx aws.Context, w io.WriterAt, input *s3.GetObjectInput, options ...func(*Downloader)) (n int64, err error) {
|
func (d Downloader) DownloadWithContext(ctx aws.Context, w io.WriterAt, input *s3.GetObjectInput, options ...func(*Downloader)) (n int64, err error) {
|
||||||
|
if err := validateSupportedARNType(aws.StringValue(input.Bucket)); err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
|
||||||
impl := downloader{w: w, in: input, cfg: d, ctx: ctx}
|
impl := downloader{w: w, in: input, cfg: d, ctx: ctx}
|
||||||
|
|
||||||
for _, option := range options {
|
for _, option := range options {
|
||||||
|
|
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go
generated
vendored
4
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go
generated
vendored
|
@ -391,6 +391,10 @@ func (u *uploader) upload() (*UploadOutput, error) {
|
||||||
|
|
||||||
// init will initialize all default options.
|
// init will initialize all default options.
|
||||||
func (u *uploader) init() error {
|
func (u *uploader) init() error {
|
||||||
|
if err := validateSupportedARNType(aws.StringValue(u.in.Bucket)); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
if u.cfg.Concurrency == 0 {
|
if u.cfg.Concurrency == 0 {
|
||||||
u.cfg.Concurrency = DefaultUploadConcurrency
|
u.cfg.Concurrency = DefaultUploadConcurrency
|
||||||
}
|
}
|
||||||
|
|
10
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_input.go
generated
vendored
10
vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_input.go
generated
vendored
|
@ -29,16 +29,16 @@ type UploadInput struct {
|
||||||
// the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com.
|
// the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com.
|
||||||
// When using this action with an access point through the AWS SDKs, you provide
|
// When using this action with an access point through the AWS SDKs, you provide
|
||||||
// the access point ARN in place of the bucket name. For more information about
|
// the access point ARN in place of the bucket name. For more information about
|
||||||
// access point ARNs, see Using Access Points (https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html)
|
// access point ARNs, see Using Access Points (https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html)
|
||||||
// in the Amazon Simple Storage Service Developer Guide.
|
// in the Amazon S3 User Guide.
|
||||||
//
|
//
|
||||||
// When using this action with Amazon S3 on Outposts, you must direct requests
|
// When using this action with Amazon S3 on Outposts, you must direct requests
|
||||||
// to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
|
// to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
|
||||||
// AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When
|
// AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When
|
||||||
// using this action using S3 on Outposts through the AWS SDKs, you provide
|
// using this action using S3 on Outposts through the AWS SDKs, you provide
|
||||||
// the Outposts bucket ARN in place of the bucket name. For more information
|
// the Outposts bucket ARN in place of the bucket name. For more information
|
||||||
// about S3 on Outposts ARNs, see Using S3 on Outposts (https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html)
|
// about S3 on Outposts ARNs, see Using S3 on Outposts (https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html)
|
||||||
// in the Amazon Simple Storage Service Developer Guide.
|
// in the Amazon S3 User Guide.
|
||||||
//
|
//
|
||||||
// Bucket is a required field
|
// Bucket is a required field
|
||||||
Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"`
|
Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"`
|
||||||
|
@ -82,7 +82,7 @@ type UploadInput struct {
|
||||||
// see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17 (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17).
|
// see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17 (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17).
|
||||||
ContentType *string `location:"header" locationName:"Content-Type" type:"string"`
|
ContentType *string `location:"header" locationName:"Content-Type" type:"string"`
|
||||||
|
|
||||||
// The account id of the expected bucket owner. If the bucket is owned by a
|
// The account ID of the expected bucket owner. If the bucket is owned by a
|
||||||
// different account, the request will fail with an HTTP 403 (Access Denied)
|
// different account, the request will fail with an HTTP 403 (Access Denied)
|
||||||
// error.
|
// error.
|
||||||
ExpectedBucketOwner *string `location:"header" locationName:"x-amz-expected-bucket-owner" type:"string"`
|
ExpectedBucketOwner *string `location:"header" locationName:"x-amz-expected-bucket-owner" type:"string"`
|
||||||
|
|
30
vendor/github.com/cheggaaa/pb/v3/element.go
generated
vendored
30
vendor/github.com/cheggaaa/pb/v3/element.go
generated
vendored
|
@ -231,6 +231,10 @@ var ElementBar ElementFunc = func(state *State, args ...string) string {
|
||||||
return p.buf.String()
|
return p.buf.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func elapsedTime(state *State) time.Duration {
|
||||||
|
return state.Time().Sub(state.StartTime()).Truncate(time.Millisecond)
|
||||||
|
}
|
||||||
|
|
||||||
// ElementRemainingTime calculates remaining time based on speed (EWMA)
|
// ElementRemainingTime calculates remaining time based on speed (EWMA)
|
||||||
// Optionally can take one or two string arguments.
|
// Optionally can take one or two string arguments.
|
||||||
// First string will be used as value for format time duration string, default is "%s".
|
// First string will be used as value for format time duration string, default is "%s".
|
||||||
|
@ -238,29 +242,23 @@ var ElementBar ElementFunc = func(state *State, args ...string) string {
|
||||||
// Third string will be used when value not available, default is "?"
|
// Third string will be used when value not available, default is "?"
|
||||||
// In template use as follows: {{rtime .}} or {{rtime . "%s remain"}} or {{rtime . "%s remain" "%s total" "???"}}
|
// In template use as follows: {{rtime .}} or {{rtime . "%s remain"}} or {{rtime . "%s remain" "%s total" "???"}}
|
||||||
var ElementRemainingTime ElementFunc = func(state *State, args ...string) string {
|
var ElementRemainingTime ElementFunc = func(state *State, args ...string) string {
|
||||||
var rts string
|
if state.IsFinished() {
|
||||||
sp := getSpeedObj(state).value(state)
|
return fmt.Sprintf(argsHelper(args).getOr(1, "%s"), elapsedTime(state))
|
||||||
if !state.IsFinished() {
|
|
||||||
if sp > 0 {
|
|
||||||
remain := float64(state.Total() - state.Value())
|
|
||||||
remainDur := time.Duration(remain/sp) * time.Second
|
|
||||||
rts = remainDur.String()
|
|
||||||
} else {
|
|
||||||
return argsHelper(args).getOr(2, "?")
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
rts = state.Time().Truncate(time.Second).Sub(state.StartTime().Truncate(time.Second)).String()
|
|
||||||
return fmt.Sprintf(argsHelper(args).getOr(1, "%s"), rts)
|
|
||||||
}
|
}
|
||||||
return fmt.Sprintf(argsHelper(args).getOr(0, "%s"), rts)
|
sp := getSpeedObj(state).value(state)
|
||||||
|
if sp > 0 {
|
||||||
|
remain := float64(state.Total() - state.Value())
|
||||||
|
remainDur := time.Duration(remain/sp) * time.Second
|
||||||
|
return fmt.Sprintf(argsHelper(args).getOr(0, "%s"), remainDur)
|
||||||
|
}
|
||||||
|
return argsHelper(args).getOr(2, "?")
|
||||||
}
|
}
|
||||||
|
|
||||||
// ElementElapsedTime shows elapsed time
|
// ElementElapsedTime shows elapsed time
|
||||||
// Optionally cat take one argument - it's format for time string.
|
// Optionally cat take one argument - it's format for time string.
|
||||||
// In template use as follows: {{etime .}} or {{etime . "%s elapsed"}}
|
// In template use as follows: {{etime .}} or {{etime . "%s elapsed"}}
|
||||||
var ElementElapsedTime ElementFunc = func(state *State, args ...string) string {
|
var ElementElapsedTime ElementFunc = func(state *State, args ...string) string {
|
||||||
etm := state.Time().Truncate(time.Second).Sub(state.StartTime().Truncate(time.Second))
|
return fmt.Sprintf(argsHelper(args).getOr(0, "%s"), elapsedTime(state))
|
||||||
return fmt.Sprintf(argsHelper(args).getOr(0, "%s"), etm.String())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ElementString get value from bar by given key and print them
|
// ElementString get value from bar by given key and print them
|
||||||
|
|
8
vendor/github.com/cheggaaa/pb/v3/pb.go
generated
vendored
8
vendor/github.com/cheggaaa/pb/v3/pb.go
generated
vendored
|
@ -21,7 +21,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Version of ProgressBar library
|
// Version of ProgressBar library
|
||||||
const Version = "3.0.6"
|
const Version = "3.0.7"
|
||||||
|
|
||||||
type key int
|
type key int
|
||||||
|
|
||||||
|
@ -238,6 +238,12 @@ func (pb *ProgressBar) SetTotal(value int64) *ProgressBar {
|
||||||
return pb
|
return pb
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddTotal adds to the total bar value
|
||||||
|
func (pb *ProgressBar) AddTotal(value int64) *ProgressBar {
|
||||||
|
atomic.AddInt64(&pb.total, value)
|
||||||
|
return pb
|
||||||
|
}
|
||||||
|
|
||||||
// SetCurrent sets the current bar value
|
// SetCurrent sets the current bar value
|
||||||
func (pb *ProgressBar) SetCurrent(value int64) *ProgressBar {
|
func (pb *ProgressBar) SetCurrent(value int64) *ProgressBar {
|
||||||
atomic.StoreInt64(&pb.current, value)
|
atomic.StoreInt64(&pb.current, value)
|
||||||
|
|
10
vendor/github.com/golang/protobuf/proto/registry.go
generated
vendored
10
vendor/github.com/golang/protobuf/proto/registry.go
generated
vendored
|
@ -13,6 +13,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"google.golang.org/protobuf/reflect/protodesc"
|
||||||
"google.golang.org/protobuf/reflect/protoreflect"
|
"google.golang.org/protobuf/reflect/protoreflect"
|
||||||
"google.golang.org/protobuf/reflect/protoregistry"
|
"google.golang.org/protobuf/reflect/protoregistry"
|
||||||
"google.golang.org/protobuf/runtime/protoimpl"
|
"google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
@ -62,14 +63,7 @@ func FileDescriptor(s filePath) fileDescGZIP {
|
||||||
// Find the descriptor in the v2 registry.
|
// Find the descriptor in the v2 registry.
|
||||||
var b []byte
|
var b []byte
|
||||||
if fd, _ := protoregistry.GlobalFiles.FindFileByPath(s); fd != nil {
|
if fd, _ := protoregistry.GlobalFiles.FindFileByPath(s); fd != nil {
|
||||||
if fd, ok := fd.(interface{ ProtoLegacyRawDesc() []byte }); ok {
|
b, _ = Marshal(protodesc.ToFileDescriptorProto(fd))
|
||||||
b = fd.ProtoLegacyRawDesc()
|
|
||||||
} else {
|
|
||||||
// TODO: Use protodesc.ToFileDescriptorProto to construct
|
|
||||||
// a descriptorpb.FileDescriptorProto and marshal it.
|
|
||||||
// However, doing so causes the proto package to have a dependency
|
|
||||||
// on descriptorpb, leading to cyclic dependency issues.
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Locally cache the raw descriptor form for the file.
|
// Locally cache the raw descriptor form for the file.
|
||||||
|
|
14
vendor/github.com/golang/protobuf/ptypes/any.go
generated
vendored
14
vendor/github.com/golang/protobuf/ptypes/any.go
generated
vendored
|
@ -19,6 +19,8 @@ const urlPrefix = "type.googleapis.com/"
|
||||||
|
|
||||||
// AnyMessageName returns the message name contained in an anypb.Any message.
|
// AnyMessageName returns the message name contained in an anypb.Any message.
|
||||||
// Most type assertions should use the Is function instead.
|
// Most type assertions should use the Is function instead.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the any.MessageName method instead.
|
||||||
func AnyMessageName(any *anypb.Any) (string, error) {
|
func AnyMessageName(any *anypb.Any) (string, error) {
|
||||||
name, err := anyMessageName(any)
|
name, err := anyMessageName(any)
|
||||||
return string(name), err
|
return string(name), err
|
||||||
|
@ -38,6 +40,8 @@ func anyMessageName(any *anypb.Any) (protoreflect.FullName, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// MarshalAny marshals the given message m into an anypb.Any message.
|
// MarshalAny marshals the given message m into an anypb.Any message.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the anypb.New function instead.
|
||||||
func MarshalAny(m proto.Message) (*anypb.Any, error) {
|
func MarshalAny(m proto.Message) (*anypb.Any, error) {
|
||||||
switch dm := m.(type) {
|
switch dm := m.(type) {
|
||||||
case DynamicAny:
|
case DynamicAny:
|
||||||
|
@ -58,6 +62,9 @@ func MarshalAny(m proto.Message) (*anypb.Any, error) {
|
||||||
// Empty returns a new message of the type specified in an anypb.Any message.
|
// Empty returns a new message of the type specified in an anypb.Any message.
|
||||||
// It returns protoregistry.NotFound if the corresponding message type could not
|
// It returns protoregistry.NotFound if the corresponding message type could not
|
||||||
// be resolved in the global registry.
|
// be resolved in the global registry.
|
||||||
|
//
|
||||||
|
// Deprecated: Use protoregistry.GlobalTypes.FindMessageByName instead
|
||||||
|
// to resolve the message name and create a new instance of it.
|
||||||
func Empty(any *anypb.Any) (proto.Message, error) {
|
func Empty(any *anypb.Any) (proto.Message, error) {
|
||||||
name, err := anyMessageName(any)
|
name, err := anyMessageName(any)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -76,6 +83,8 @@ func Empty(any *anypb.Any) (proto.Message, error) {
|
||||||
//
|
//
|
||||||
// The target message m may be a *DynamicAny message. If the underlying message
|
// The target message m may be a *DynamicAny message. If the underlying message
|
||||||
// type could not be resolved, then this returns protoregistry.NotFound.
|
// type could not be resolved, then this returns protoregistry.NotFound.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the any.UnmarshalTo method instead.
|
||||||
func UnmarshalAny(any *anypb.Any, m proto.Message) error {
|
func UnmarshalAny(any *anypb.Any, m proto.Message) error {
|
||||||
if dm, ok := m.(*DynamicAny); ok {
|
if dm, ok := m.(*DynamicAny); ok {
|
||||||
if dm.Message == nil {
|
if dm.Message == nil {
|
||||||
|
@ -100,6 +109,8 @@ func UnmarshalAny(any *anypb.Any, m proto.Message) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Is reports whether the Any message contains a message of the specified type.
|
// Is reports whether the Any message contains a message of the specified type.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the any.MessageIs method instead.
|
||||||
func Is(any *anypb.Any, m proto.Message) bool {
|
func Is(any *anypb.Any, m proto.Message) bool {
|
||||||
if any == nil || m == nil {
|
if any == nil || m == nil {
|
||||||
return false
|
return false
|
||||||
|
@ -119,6 +130,9 @@ func Is(any *anypb.Any, m proto.Message) bool {
|
||||||
// var x ptypes.DynamicAny
|
// var x ptypes.DynamicAny
|
||||||
// if err := ptypes.UnmarshalAny(a, &x); err != nil { ... }
|
// if err := ptypes.UnmarshalAny(a, &x); err != nil { ... }
|
||||||
// fmt.Printf("unmarshaled message: %v", x.Message)
|
// fmt.Printf("unmarshaled message: %v", x.Message)
|
||||||
|
//
|
||||||
|
// Deprecated: Use the any.UnmarshalNew method instead to unmarshal
|
||||||
|
// the any message contents into a new instance of the underlying message.
|
||||||
type DynamicAny struct{ proto.Message }
|
type DynamicAny struct{ proto.Message }
|
||||||
|
|
||||||
func (m DynamicAny) String() string {
|
func (m DynamicAny) String() string {
|
||||||
|
|
4
vendor/github.com/golang/protobuf/ptypes/doc.go
generated
vendored
4
vendor/github.com/golang/protobuf/ptypes/doc.go
generated
vendored
|
@ -3,4 +3,8 @@
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// Package ptypes provides functionality for interacting with well-known types.
|
// Package ptypes provides functionality for interacting with well-known types.
|
||||||
|
//
|
||||||
|
// Deprecated: Well-known types have specialized functionality directly
|
||||||
|
// injected into the generated packages for each message type.
|
||||||
|
// See the deprecation notice for each function for the suggested alternative.
|
||||||
package ptypes
|
package ptypes
|
||||||
|
|
4
vendor/github.com/golang/protobuf/ptypes/duration.go
generated
vendored
4
vendor/github.com/golang/protobuf/ptypes/duration.go
generated
vendored
|
@ -21,6 +21,8 @@ const (
|
||||||
|
|
||||||
// Duration converts a durationpb.Duration to a time.Duration.
|
// Duration converts a durationpb.Duration to a time.Duration.
|
||||||
// Duration returns an error if dur is invalid or overflows a time.Duration.
|
// Duration returns an error if dur is invalid or overflows a time.Duration.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the dur.AsDuration and dur.CheckValid methods instead.
|
||||||
func Duration(dur *durationpb.Duration) (time.Duration, error) {
|
func Duration(dur *durationpb.Duration) (time.Duration, error) {
|
||||||
if err := validateDuration(dur); err != nil {
|
if err := validateDuration(dur); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
|
@ -39,6 +41,8 @@ func Duration(dur *durationpb.Duration) (time.Duration, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// DurationProto converts a time.Duration to a durationpb.Duration.
|
// DurationProto converts a time.Duration to a durationpb.Duration.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the durationpb.New function instead.
|
||||||
func DurationProto(d time.Duration) *durationpb.Duration {
|
func DurationProto(d time.Duration) *durationpb.Duration {
|
||||||
nanos := d.Nanoseconds()
|
nanos := d.Nanoseconds()
|
||||||
secs := nanos / 1e9
|
secs := nanos / 1e9
|
||||||
|
|
9
vendor/github.com/golang/protobuf/ptypes/timestamp.go
generated
vendored
9
vendor/github.com/golang/protobuf/ptypes/timestamp.go
generated
vendored
|
@ -33,6 +33,8 @@ const (
|
||||||
//
|
//
|
||||||
// A nil Timestamp returns an error. The first return value in that case is
|
// A nil Timestamp returns an error. The first return value in that case is
|
||||||
// undefined.
|
// undefined.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the ts.AsTime and ts.CheckValid methods instead.
|
||||||
func Timestamp(ts *timestamppb.Timestamp) (time.Time, error) {
|
func Timestamp(ts *timestamppb.Timestamp) (time.Time, error) {
|
||||||
// Don't return the zero value on error, because corresponds to a valid
|
// Don't return the zero value on error, because corresponds to a valid
|
||||||
// timestamp. Instead return whatever time.Unix gives us.
|
// timestamp. Instead return whatever time.Unix gives us.
|
||||||
|
@ -46,6 +48,8 @@ func Timestamp(ts *timestamppb.Timestamp) (time.Time, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TimestampNow returns a google.protobuf.Timestamp for the current time.
|
// TimestampNow returns a google.protobuf.Timestamp for the current time.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the timestamppb.Now function instead.
|
||||||
func TimestampNow() *timestamppb.Timestamp {
|
func TimestampNow() *timestamppb.Timestamp {
|
||||||
ts, err := TimestampProto(time.Now())
|
ts, err := TimestampProto(time.Now())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -56,6 +60,8 @@ func TimestampNow() *timestamppb.Timestamp {
|
||||||
|
|
||||||
// TimestampProto converts the time.Time to a google.protobuf.Timestamp proto.
|
// TimestampProto converts the time.Time to a google.protobuf.Timestamp proto.
|
||||||
// It returns an error if the resulting Timestamp is invalid.
|
// It returns an error if the resulting Timestamp is invalid.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the timestamppb.New function instead.
|
||||||
func TimestampProto(t time.Time) (*timestamppb.Timestamp, error) {
|
func TimestampProto(t time.Time) (*timestamppb.Timestamp, error) {
|
||||||
ts := ×tamppb.Timestamp{
|
ts := ×tamppb.Timestamp{
|
||||||
Seconds: t.Unix(),
|
Seconds: t.Unix(),
|
||||||
|
@ -69,6 +75,9 @@ func TimestampProto(t time.Time) (*timestamppb.Timestamp, error) {
|
||||||
|
|
||||||
// TimestampString returns the RFC 3339 string for valid Timestamps.
|
// TimestampString returns the RFC 3339 string for valid Timestamps.
|
||||||
// For invalid Timestamps, it returns an error message in parentheses.
|
// For invalid Timestamps, it returns an error message in parentheses.
|
||||||
|
//
|
||||||
|
// Deprecated: Call the ts.AsTime method instead,
|
||||||
|
// followed by a call to the Format method on the time.Time value.
|
||||||
func TimestampString(ts *timestamppb.Timestamp) string {
|
func TimestampString(ts *timestamppb.Timestamp) string {
|
||||||
t, err := Timestamp(ts)
|
t, err := Timestamp(ts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
29
vendor/github.com/prometheus/client_golang/prometheus/build_info.go
generated
vendored
29
vendor/github.com/prometheus/client_golang/prometheus/build_info.go
generated
vendored
|
@ -1,29 +0,0 @@
|
||||||
// Copyright 2019 The Prometheus Authors
|
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
|
|
||||||
// +build go1.12
|
|
||||||
|
|
||||||
package prometheus
|
|
||||||
|
|
||||||
import "runtime/debug"
|
|
||||||
|
|
||||||
// readBuildInfo is a wrapper around debug.ReadBuildInfo for Go 1.12+.
|
|
||||||
func readBuildInfo() (path, version, sum string) {
|
|
||||||
path, version, sum = "unknown", "unknown", "unknown"
|
|
||||||
if bi, ok := debug.ReadBuildInfo(); ok {
|
|
||||||
path = bi.Main.Path
|
|
||||||
version = bi.Main.Version
|
|
||||||
sum = bi.Main.Sum
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
22
vendor/github.com/prometheus/client_golang/prometheus/build_info_pre_1.12.go
generated
vendored
22
vendor/github.com/prometheus/client_golang/prometheus/build_info_pre_1.12.go
generated
vendored
|
@ -1,22 +0,0 @@
|
||||||
// Copyright 2019 The Prometheus Authors
|
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
|
|
||||||
// +build !go1.12
|
|
||||||
|
|
||||||
package prometheus
|
|
||||||
|
|
||||||
// readBuildInfo is a wrapper around debug.ReadBuildInfo for Go versions before
|
|
||||||
// 1.12. Remove this whole file once the minimum supported Go version is 1.12.
|
|
||||||
func readBuildInfo() (path, version, sum string) {
|
|
||||||
return "unknown", "unknown", "unknown"
|
|
||||||
}
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/desc.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/desc.go
generated
vendored
|
@ -20,7 +20,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/cespare/xxhash/v2"
|
"github.com/cespare/xxhash/v2"
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
|
|
||||||
|
|
7
vendor/github.com/prometheus/client_golang/prometheus/go_collector.go
generated
vendored
7
vendor/github.com/prometheus/client_golang/prometheus/go_collector.go
generated
vendored
|
@ -384,7 +384,12 @@ type memStatsMetrics []struct {
|
||||||
// https://github.com/povilasv/prommod for an example of a collector for the
|
// https://github.com/povilasv/prommod for an example of a collector for the
|
||||||
// module dependencies.
|
// module dependencies.
|
||||||
func NewBuildInfoCollector() Collector {
|
func NewBuildInfoCollector() Collector {
|
||||||
path, version, sum := readBuildInfo()
|
path, version, sum := "unknown", "unknown", "unknown"
|
||||||
|
if bi, ok := debug.ReadBuildInfo(); ok {
|
||||||
|
path = bi.Main.Path
|
||||||
|
version = bi.Main.Version
|
||||||
|
sum = bi.Main.Sum
|
||||||
|
}
|
||||||
c := &selfCollector{MustNewConstMetric(
|
c := &selfCollector{MustNewConstMetric(
|
||||||
NewDesc(
|
NewDesc(
|
||||||
"go_build_info",
|
"go_build_info",
|
||||||
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/histogram.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/histogram.go
generated
vendored
|
@ -22,7 +22,7 @@ import (
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
|
|
||||||
dto "github.com/prometheus/client_model/go"
|
dto "github.com/prometheus/client_model/go"
|
||||||
|
|
4
vendor/github.com/prometheus/client_golang/prometheus/metric.go
generated
vendored
4
vendor/github.com/prometheus/client_golang/prometheus/metric.go
generated
vendored
|
@ -17,7 +17,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ type Metric interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Opts bundles the options for creating most Metric types. Each metric
|
// Opts bundles the options for creating most Metric types. Each metric
|
||||||
// implementation XXX has its own XXXOpts type, but in most cases, it is just be
|
// implementation XXX has its own XXXOpts type, but in most cases, it is just
|
||||||
// an alias of this type (which might change when the requirement arises.)
|
// an alias of this type (which might change when the requirement arises.)
|
||||||
//
|
//
|
||||||
// It is mandatory to set Name to a non-empty string. All other fields are
|
// It is mandatory to set Name to a non-empty string. All other fields are
|
||||||
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/registry.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/registry.go
generated
vendored
|
@ -26,7 +26,7 @@ import (
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
"github.com/cespare/xxhash/v2"
|
"github.com/cespare/xxhash/v2"
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/prometheus/common/expfmt"
|
"github.com/prometheus/common/expfmt"
|
||||||
|
|
||||||
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/summary.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/summary.go
generated
vendored
|
@ -23,7 +23,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/beorn7/perks/quantile"
|
"github.com/beorn7/perks/quantile"
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
|
|
||||||
dto "github.com/prometheus/client_model/go"
|
dto "github.com/prometheus/client_model/go"
|
||||||
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/value.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/value.go
generated
vendored
|
@ -19,7 +19,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/golang/protobuf/ptypes"
|
"github.com/golang/protobuf/ptypes"
|
||||||
|
|
||||||
|
|
4
vendor/github.com/prometheus/client_golang/prometheus/vec.go
generated
vendored
4
vendor/github.com/prometheus/client_golang/prometheus/vec.go
generated
vendored
|
@ -167,8 +167,8 @@ func (m *MetricVec) CurryWith(labels Labels) (*MetricVec, error) {
|
||||||
// calling the newMetric function provided during construction of the
|
// calling the newMetric function provided during construction of the
|
||||||
// MetricVec).
|
// MetricVec).
|
||||||
//
|
//
|
||||||
// It is possible to call this method without using the returned Metry to only
|
// It is possible to call this method without using the returned Metric to only
|
||||||
// create the new Metric but leave it in its intitial state.
|
// create the new Metric but leave it in its initial state.
|
||||||
//
|
//
|
||||||
// Keeping the Metric for later use is possible (and should be considered if
|
// Keeping the Metric for later use is possible (and should be considered if
|
||||||
// performance is critical), but keep in mind that Reset, DeleteLabelValues and
|
// performance is critical), but keep in mind that Reset, DeleteLabelValues and
|
||||||
|
|
2
vendor/github.com/prometheus/client_golang/prometheus/wrap.go
generated
vendored
2
vendor/github.com/prometheus/client_golang/prometheus/wrap.go
generated
vendored
|
@ -17,7 +17,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
//lint:ignore SA1019 Need to keep deprecated package for compatibility.
|
//nolint:staticcheck // Ignore SA1019. Need to keep deprecated package for compatibility.
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
|
|
||||||
dto "github.com/prometheus/client_model/go"
|
dto "github.com/prometheus/client_model/go"
|
||||||
|
|
13
vendor/github.com/prometheus/common/model/time.go
generated
vendored
13
vendor/github.com/prometheus/common/model/time.go
generated
vendored
|
@ -15,6 +15,7 @@ package model
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
"regexp"
|
"regexp"
|
||||||
|
@ -202,13 +203,23 @@ func ParseDuration(durationStr string) (Duration, error) {
|
||||||
|
|
||||||
// Parse the match at pos `pos` in the regex and use `mult` to turn that
|
// Parse the match at pos `pos` in the regex and use `mult` to turn that
|
||||||
// into ms, then add that value to the total parsed duration.
|
// into ms, then add that value to the total parsed duration.
|
||||||
|
var overflowErr error
|
||||||
m := func(pos int, mult time.Duration) {
|
m := func(pos int, mult time.Duration) {
|
||||||
if matches[pos] == "" {
|
if matches[pos] == "" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
n, _ := strconv.Atoi(matches[pos])
|
n, _ := strconv.Atoi(matches[pos])
|
||||||
|
|
||||||
|
// Check if the provided duration overflows time.Duration (> ~ 290years).
|
||||||
|
if n > int((1<<63-1)/mult/time.Millisecond) {
|
||||||
|
overflowErr = errors.New("duration out of range")
|
||||||
|
}
|
||||||
d := time.Duration(n) * time.Millisecond
|
d := time.Duration(n) * time.Millisecond
|
||||||
dur += d * mult
|
dur += d * mult
|
||||||
|
|
||||||
|
if dur < 0 {
|
||||||
|
overflowErr = errors.New("duration out of range")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m(2, 1000*60*60*24*365) // y
|
m(2, 1000*60*60*24*365) // y
|
||||||
|
@ -219,7 +230,7 @@ func ParseDuration(durationStr string) (Duration, error) {
|
||||||
m(12, 1000) // s
|
m(12, 1000) // s
|
||||||
m(14, 1) // ms
|
m(14, 1) // ms
|
||||||
|
|
||||||
return Duration(dur), nil
|
return Duration(dur), overflowErr
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d Duration) String() string {
|
func (d Duration) String() string {
|
||||||
|
|
2
vendor/golang.org/x/sys/unix/mkall.sh
generated
vendored
2
vendor/golang.org/x/sys/unix/mkall.sh
generated
vendored
|
@ -199,7 +199,7 @@ illumos_amd64)
|
||||||
mksyscall="go run mksyscall_solaris.go"
|
mksyscall="go run mksyscall_solaris.go"
|
||||||
mkerrors=
|
mkerrors=
|
||||||
mksysnum=
|
mksysnum=
|
||||||
mktypes=
|
mktypes="GOARCH=$GOARCH go tool cgo -godefs"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
|
echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
|
||||||
|
|
4
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
4
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
|
@ -56,6 +56,7 @@ includes_Darwin='
|
||||||
#define _DARWIN_C_SOURCE
|
#define _DARWIN_C_SOURCE
|
||||||
#define KERNEL
|
#define KERNEL
|
||||||
#define _DARWIN_USE_64_BIT_INODE
|
#define _DARWIN_USE_64_BIT_INODE
|
||||||
|
#define __APPLE_USE_RFC_3542
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <sys/attr.h>
|
#include <sys/attr.h>
|
||||||
#include <sys/clonefile.h>
|
#include <sys/clonefile.h>
|
||||||
|
@ -216,6 +217,7 @@ struct ltchars {
|
||||||
#include <linux/genetlink.h>
|
#include <linux/genetlink.h>
|
||||||
#include <linux/hdreg.h>
|
#include <linux/hdreg.h>
|
||||||
#include <linux/hidraw.h>
|
#include <linux/hidraw.h>
|
||||||
|
#include <linux/icmp.h>
|
||||||
#include <linux/icmpv6.h>
|
#include <linux/icmpv6.h>
|
||||||
#include <linux/if.h>
|
#include <linux/if.h>
|
||||||
#include <linux/if_addr.h>
|
#include <linux/if_addr.h>
|
||||||
|
@ -500,7 +502,7 @@ ccflags="$@"
|
||||||
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL)_/ ||
|
$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL)_/ ||
|
||||||
$2 ~ /^TP_STATUS_/ ||
|
$2 ~ /^TP_STATUS_/ ||
|
||||||
$2 ~ /^FALLOC_/ ||
|
$2 ~ /^FALLOC_/ ||
|
||||||
$2 == "ICMPV6_FILTER" ||
|
$2 ~ /^ICMP(V6)?_FILTER$/ ||
|
||||||
$2 == "SOMAXCONN" ||
|
$2 == "SOMAXCONN" ||
|
||||||
$2 == "NAME_MAX" ||
|
$2 == "NAME_MAX" ||
|
||||||
$2 == "IFNAMSIZ" ||
|
$2 == "IFNAMSIZ" ||
|
||||||
|
|
53
vendor/golang.org/x/sys/unix/syscall_illumos.go
generated
vendored
53
vendor/golang.org/x/sys/unix/syscall_illumos.go
generated
vendored
|
@ -9,7 +9,9 @@
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
import "unsafe"
|
import (
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
func bytes2iovec(bs [][]byte) []Iovec {
|
func bytes2iovec(bs [][]byte) []Iovec {
|
||||||
iovecs := make([]Iovec, len(bs))
|
iovecs := make([]Iovec, len(bs))
|
||||||
|
@ -76,3 +78,52 @@ func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//sys putmsg(fd int, clptr *strbuf, dataptr *strbuf, flags int) (err error)
|
||||||
|
|
||||||
|
func Putmsg(fd int, cl []byte, data []byte, flags int) (err error) {
|
||||||
|
var clp, datap *strbuf
|
||||||
|
if len(cl) > 0 {
|
||||||
|
clp = &strbuf{
|
||||||
|
Len: int32(len(cl)),
|
||||||
|
Buf: (*int8)(unsafe.Pointer(&cl[0])),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(data) > 0 {
|
||||||
|
datap = &strbuf{
|
||||||
|
Len: int32(len(data)),
|
||||||
|
Buf: (*int8)(unsafe.Pointer(&data[0])),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return putmsg(fd, clp, datap, flags)
|
||||||
|
}
|
||||||
|
|
||||||
|
//sys getmsg(fd int, clptr *strbuf, dataptr *strbuf, flags *int) (err error)
|
||||||
|
|
||||||
|
func Getmsg(fd int, cl []byte, data []byte) (retCl []byte, retData []byte, flags int, err error) {
|
||||||
|
var clp, datap *strbuf
|
||||||
|
if len(cl) > 0 {
|
||||||
|
clp = &strbuf{
|
||||||
|
Maxlen: int32(len(cl)),
|
||||||
|
Buf: (*int8)(unsafe.Pointer(&cl[0])),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(data) > 0 {
|
||||||
|
datap = &strbuf{
|
||||||
|
Maxlen: int32(len(data)),
|
||||||
|
Buf: (*int8)(unsafe.Pointer(&data[0])),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = getmsg(fd, clp, datap, &flags); err != nil {
|
||||||
|
return nil, nil, 0, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(cl) > 0 {
|
||||||
|
retCl = cl[:clp.Len]
|
||||||
|
}
|
||||||
|
if len(data) > 0 {
|
||||||
|
retData = data[:datap.Len]
|
||||||
|
}
|
||||||
|
return retCl, retData, flags, nil
|
||||||
|
}
|
||||||
|
|
2
vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
generated
vendored
2
vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
generated
vendored
|
@ -250,7 +250,7 @@ func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen
|
||||||
}
|
}
|
||||||
|
|
||||||
func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) error {
|
func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) error {
|
||||||
args := [4]uintptr{uintptr(s), uintptr(level), uintptr(name), uintptr(val)}
|
args := [5]uintptr{uintptr(s), uintptr(level), uintptr(name), uintptr(val), vallen}
|
||||||
_, _, err := Syscall(SYS_SOCKETCALL, netSetSockOpt, uintptr(unsafe.Pointer(&args)), 0)
|
_, _, err := Syscall(SYS_SOCKETCALL, netSetSockOpt, uintptr(unsafe.Pointer(&args)), 0)
|
||||||
if err != 0 {
|
if err != 0 {
|
||||||
return err
|
return err
|
||||||
|
|
7
vendor/golang.org/x/sys/unix/syscall_solaris.go
generated
vendored
7
vendor/golang.org/x/sys/unix/syscall_solaris.go
generated
vendored
|
@ -565,7 +565,12 @@ func Minor(dev uint64) uint32 {
|
||||||
* Expose the ioctl function
|
* Expose the ioctl function
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctlRet(fd int, req uint, arg uintptr) (ret int, err error) = libc.ioctl
|
||||||
|
|
||||||
|
func ioctl(fd int, req uint, arg uintptr) (err error) {
|
||||||
|
_, err = ioctlRet(fd, req, arg)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
func IoctlSetTermio(fd int, req uint, value *Termio) error {
|
func IoctlSetTermio(fd int, req uint, value *Termio) error {
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
|
|
25
vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
generated
vendored
25
vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
generated
vendored
|
@ -776,15 +776,24 @@ const (
|
||||||
IPV6_2292PKTINFO = 0x13
|
IPV6_2292PKTINFO = 0x13
|
||||||
IPV6_2292PKTOPTIONS = 0x19
|
IPV6_2292PKTOPTIONS = 0x19
|
||||||
IPV6_2292RTHDR = 0x18
|
IPV6_2292RTHDR = 0x18
|
||||||
|
IPV6_3542DSTOPTS = 0x32
|
||||||
|
IPV6_3542HOPLIMIT = 0x2f
|
||||||
|
IPV6_3542HOPOPTS = 0x31
|
||||||
|
IPV6_3542NEXTHOP = 0x30
|
||||||
|
IPV6_3542PKTINFO = 0x2e
|
||||||
|
IPV6_3542RTHDR = 0x33
|
||||||
IPV6_ADDR_MC_FLAGS_PREFIX = 0x20
|
IPV6_ADDR_MC_FLAGS_PREFIX = 0x20
|
||||||
IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10
|
IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10
|
||||||
IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30
|
IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30
|
||||||
|
IPV6_AUTOFLOWLABEL = 0x3b
|
||||||
IPV6_BINDV6ONLY = 0x1b
|
IPV6_BINDV6ONLY = 0x1b
|
||||||
IPV6_BOUND_IF = 0x7d
|
IPV6_BOUND_IF = 0x7d
|
||||||
IPV6_CHECKSUM = 0x1a
|
IPV6_CHECKSUM = 0x1a
|
||||||
IPV6_DEFAULT_MULTICAST_HOPS = 0x1
|
IPV6_DEFAULT_MULTICAST_HOPS = 0x1
|
||||||
IPV6_DEFAULT_MULTICAST_LOOP = 0x1
|
IPV6_DEFAULT_MULTICAST_LOOP = 0x1
|
||||||
IPV6_DEFHLIM = 0x40
|
IPV6_DEFHLIM = 0x40
|
||||||
|
IPV6_DONTFRAG = 0x3e
|
||||||
|
IPV6_DSTOPTS = 0x32
|
||||||
IPV6_FAITH = 0x1d
|
IPV6_FAITH = 0x1d
|
||||||
IPV6_FLOWINFO_MASK = 0xffffff0f
|
IPV6_FLOWINFO_MASK = 0xffffff0f
|
||||||
IPV6_FLOWLABEL_MASK = 0xffff0f00
|
IPV6_FLOWLABEL_MASK = 0xffff0f00
|
||||||
|
@ -796,6 +805,8 @@ const (
|
||||||
IPV6_FW_GET = 0x22
|
IPV6_FW_GET = 0x22
|
||||||
IPV6_FW_ZERO = 0x21
|
IPV6_FW_ZERO = 0x21
|
||||||
IPV6_HLIMDEC = 0x1
|
IPV6_HLIMDEC = 0x1
|
||||||
|
IPV6_HOPLIMIT = 0x2f
|
||||||
|
IPV6_HOPOPTS = 0x31
|
||||||
IPV6_IPSEC_POLICY = 0x1c
|
IPV6_IPSEC_POLICY = 0x1c
|
||||||
IPV6_JOIN_GROUP = 0xc
|
IPV6_JOIN_GROUP = 0xc
|
||||||
IPV6_LEAVE_GROUP = 0xd
|
IPV6_LEAVE_GROUP = 0xd
|
||||||
|
@ -807,20 +818,34 @@ const (
|
||||||
IPV6_MAX_SOCK_SRC_FILTER = 0x80
|
IPV6_MAX_SOCK_SRC_FILTER = 0x80
|
||||||
IPV6_MIN_MEMBERSHIPS = 0x1f
|
IPV6_MIN_MEMBERSHIPS = 0x1f
|
||||||
IPV6_MMTU = 0x500
|
IPV6_MMTU = 0x500
|
||||||
|
IPV6_MSFILTER = 0x4a
|
||||||
IPV6_MULTICAST_HOPS = 0xa
|
IPV6_MULTICAST_HOPS = 0xa
|
||||||
IPV6_MULTICAST_IF = 0x9
|
IPV6_MULTICAST_IF = 0x9
|
||||||
IPV6_MULTICAST_LOOP = 0xb
|
IPV6_MULTICAST_LOOP = 0xb
|
||||||
|
IPV6_NEXTHOP = 0x30
|
||||||
|
IPV6_PATHMTU = 0x2c
|
||||||
|
IPV6_PKTINFO = 0x2e
|
||||||
IPV6_PORTRANGE = 0xe
|
IPV6_PORTRANGE = 0xe
|
||||||
IPV6_PORTRANGE_DEFAULT = 0x0
|
IPV6_PORTRANGE_DEFAULT = 0x0
|
||||||
IPV6_PORTRANGE_HIGH = 0x1
|
IPV6_PORTRANGE_HIGH = 0x1
|
||||||
IPV6_PORTRANGE_LOW = 0x2
|
IPV6_PORTRANGE_LOW = 0x2
|
||||||
|
IPV6_PREFER_TEMPADDR = 0x3f
|
||||||
|
IPV6_RECVDSTOPTS = 0x28
|
||||||
|
IPV6_RECVHOPLIMIT = 0x25
|
||||||
|
IPV6_RECVHOPOPTS = 0x27
|
||||||
|
IPV6_RECVPATHMTU = 0x2b
|
||||||
|
IPV6_RECVPKTINFO = 0x3d
|
||||||
|
IPV6_RECVRTHDR = 0x26
|
||||||
IPV6_RECVTCLASS = 0x23
|
IPV6_RECVTCLASS = 0x23
|
||||||
|
IPV6_RTHDR = 0x33
|
||||||
|
IPV6_RTHDRDSTOPTS = 0x39
|
||||||
IPV6_RTHDR_LOOSE = 0x0
|
IPV6_RTHDR_LOOSE = 0x0
|
||||||
IPV6_RTHDR_STRICT = 0x1
|
IPV6_RTHDR_STRICT = 0x1
|
||||||
IPV6_RTHDR_TYPE_0 = 0x0
|
IPV6_RTHDR_TYPE_0 = 0x0
|
||||||
IPV6_SOCKOPT_RESERVED1 = 0x3
|
IPV6_SOCKOPT_RESERVED1 = 0x3
|
||||||
IPV6_TCLASS = 0x24
|
IPV6_TCLASS = 0x24
|
||||||
IPV6_UNICAST_HOPS = 0x4
|
IPV6_UNICAST_HOPS = 0x4
|
||||||
|
IPV6_USE_MIN_MTU = 0x2a
|
||||||
IPV6_V6ONLY = 0x1b
|
IPV6_V6ONLY = 0x1b
|
||||||
IPV6_VERSION = 0x60
|
IPV6_VERSION = 0x60
|
||||||
IPV6_VERSION_MASK = 0xf0
|
IPV6_VERSION_MASK = 0xf0
|
||||||
|
|
25
vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
generated
vendored
25
vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
generated
vendored
|
@ -776,15 +776,24 @@ const (
|
||||||
IPV6_2292PKTINFO = 0x13
|
IPV6_2292PKTINFO = 0x13
|
||||||
IPV6_2292PKTOPTIONS = 0x19
|
IPV6_2292PKTOPTIONS = 0x19
|
||||||
IPV6_2292RTHDR = 0x18
|
IPV6_2292RTHDR = 0x18
|
||||||
|
IPV6_3542DSTOPTS = 0x32
|
||||||
|
IPV6_3542HOPLIMIT = 0x2f
|
||||||
|
IPV6_3542HOPOPTS = 0x31
|
||||||
|
IPV6_3542NEXTHOP = 0x30
|
||||||
|
IPV6_3542PKTINFO = 0x2e
|
||||||
|
IPV6_3542RTHDR = 0x33
|
||||||
IPV6_ADDR_MC_FLAGS_PREFIX = 0x20
|
IPV6_ADDR_MC_FLAGS_PREFIX = 0x20
|
||||||
IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10
|
IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10
|
||||||
IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30
|
IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30
|
||||||
|
IPV6_AUTOFLOWLABEL = 0x3b
|
||||||
IPV6_BINDV6ONLY = 0x1b
|
IPV6_BINDV6ONLY = 0x1b
|
||||||
IPV6_BOUND_IF = 0x7d
|
IPV6_BOUND_IF = 0x7d
|
||||||
IPV6_CHECKSUM = 0x1a
|
IPV6_CHECKSUM = 0x1a
|
||||||
IPV6_DEFAULT_MULTICAST_HOPS = 0x1
|
IPV6_DEFAULT_MULTICAST_HOPS = 0x1
|
||||||
IPV6_DEFAULT_MULTICAST_LOOP = 0x1
|
IPV6_DEFAULT_MULTICAST_LOOP = 0x1
|
||||||
IPV6_DEFHLIM = 0x40
|
IPV6_DEFHLIM = 0x40
|
||||||
|
IPV6_DONTFRAG = 0x3e
|
||||||
|
IPV6_DSTOPTS = 0x32
|
||||||
IPV6_FAITH = 0x1d
|
IPV6_FAITH = 0x1d
|
||||||
IPV6_FLOWINFO_MASK = 0xffffff0f
|
IPV6_FLOWINFO_MASK = 0xffffff0f
|
||||||
IPV6_FLOWLABEL_MASK = 0xffff0f00
|
IPV6_FLOWLABEL_MASK = 0xffff0f00
|
||||||
|
@ -796,6 +805,8 @@ const (
|
||||||
IPV6_FW_GET = 0x22
|
IPV6_FW_GET = 0x22
|
||||||
IPV6_FW_ZERO = 0x21
|
IPV6_FW_ZERO = 0x21
|
||||||
IPV6_HLIMDEC = 0x1
|
IPV6_HLIMDEC = 0x1
|
||||||
|
IPV6_HOPLIMIT = 0x2f
|
||||||
|
IPV6_HOPOPTS = 0x31
|
||||||
IPV6_IPSEC_POLICY = 0x1c
|
IPV6_IPSEC_POLICY = 0x1c
|
||||||
IPV6_JOIN_GROUP = 0xc
|
IPV6_JOIN_GROUP = 0xc
|
||||||
IPV6_LEAVE_GROUP = 0xd
|
IPV6_LEAVE_GROUP = 0xd
|
||||||
|
@ -807,20 +818,34 @@ const (
|
||||||
IPV6_MAX_SOCK_SRC_FILTER = 0x80
|
IPV6_MAX_SOCK_SRC_FILTER = 0x80
|
||||||
IPV6_MIN_MEMBERSHIPS = 0x1f
|
IPV6_MIN_MEMBERSHIPS = 0x1f
|
||||||
IPV6_MMTU = 0x500
|
IPV6_MMTU = 0x500
|
||||||
|
IPV6_MSFILTER = 0x4a
|
||||||
IPV6_MULTICAST_HOPS = 0xa
|
IPV6_MULTICAST_HOPS = 0xa
|
||||||
IPV6_MULTICAST_IF = 0x9
|
IPV6_MULTICAST_IF = 0x9
|
||||||
IPV6_MULTICAST_LOOP = 0xb
|
IPV6_MULTICAST_LOOP = 0xb
|
||||||
|
IPV6_NEXTHOP = 0x30
|
||||||
|
IPV6_PATHMTU = 0x2c
|
||||||
|
IPV6_PKTINFO = 0x2e
|
||||||
IPV6_PORTRANGE = 0xe
|
IPV6_PORTRANGE = 0xe
|
||||||
IPV6_PORTRANGE_DEFAULT = 0x0
|
IPV6_PORTRANGE_DEFAULT = 0x0
|
||||||
IPV6_PORTRANGE_HIGH = 0x1
|
IPV6_PORTRANGE_HIGH = 0x1
|
||||||
IPV6_PORTRANGE_LOW = 0x2
|
IPV6_PORTRANGE_LOW = 0x2
|
||||||
|
IPV6_PREFER_TEMPADDR = 0x3f
|
||||||
|
IPV6_RECVDSTOPTS = 0x28
|
||||||
|
IPV6_RECVHOPLIMIT = 0x25
|
||||||
|
IPV6_RECVHOPOPTS = 0x27
|
||||||
|
IPV6_RECVPATHMTU = 0x2b
|
||||||
|
IPV6_RECVPKTINFO = 0x3d
|
||||||
|
IPV6_RECVRTHDR = 0x26
|
||||||
IPV6_RECVTCLASS = 0x23
|
IPV6_RECVTCLASS = 0x23
|
||||||
|
IPV6_RTHDR = 0x33
|
||||||
|
IPV6_RTHDRDSTOPTS = 0x39
|
||||||
IPV6_RTHDR_LOOSE = 0x0
|
IPV6_RTHDR_LOOSE = 0x0
|
||||||
IPV6_RTHDR_STRICT = 0x1
|
IPV6_RTHDR_STRICT = 0x1
|
||||||
IPV6_RTHDR_TYPE_0 = 0x0
|
IPV6_RTHDR_TYPE_0 = 0x0
|
||||||
IPV6_SOCKOPT_RESERVED1 = 0x3
|
IPV6_SOCKOPT_RESERVED1 = 0x3
|
||||||
IPV6_TCLASS = 0x24
|
IPV6_TCLASS = 0x24
|
||||||
IPV6_UNICAST_HOPS = 0x4
|
IPV6_UNICAST_HOPS = 0x4
|
||||||
|
IPV6_USE_MIN_MTU = 0x2a
|
||||||
IPV6_V6ONLY = 0x1b
|
IPV6_V6ONLY = 0x1b
|
||||||
IPV6_VERSION = 0x60
|
IPV6_VERSION = 0x60
|
||||||
IPV6_VERSION_MASK = 0xf0
|
IPV6_VERSION_MASK = 0xf0
|
||||||
|
|
1
vendor/golang.org/x/sys/unix/zerrors_linux.go
generated
vendored
1
vendor/golang.org/x/sys/unix/zerrors_linux.go
generated
vendored
|
@ -974,6 +974,7 @@ const (
|
||||||
HUGETLBFS_MAGIC = 0x958458f6
|
HUGETLBFS_MAGIC = 0x958458f6
|
||||||
IBSHIFT = 0x10
|
IBSHIFT = 0x10
|
||||||
ICMPV6_FILTER = 0x1
|
ICMPV6_FILTER = 0x1
|
||||||
|
ICMP_FILTER = 0x1
|
||||||
ICRNL = 0x100
|
ICRNL = 0x100
|
||||||
IFA_F_DADFAILED = 0x8
|
IFA_F_DADFAILED = 0x8
|
||||||
IFA_F_DEPRECATED = 0x20
|
IFA_F_DEPRECATED = 0x20
|
||||||
|
|
28
vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
generated
vendored
28
vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
generated
vendored
|
@ -15,19 +15,25 @@ import (
|
||||||
//go:cgo_import_dynamic libc_writev writev "libc.so"
|
//go:cgo_import_dynamic libc_writev writev "libc.so"
|
||||||
//go:cgo_import_dynamic libc_pwritev pwritev "libc.so"
|
//go:cgo_import_dynamic libc_pwritev pwritev "libc.so"
|
||||||
//go:cgo_import_dynamic libc_accept4 accept4 "libsocket.so"
|
//go:cgo_import_dynamic libc_accept4 accept4 "libsocket.so"
|
||||||
|
//go:cgo_import_dynamic libc_putmsg putmsg "libc.so"
|
||||||
|
//go:cgo_import_dynamic libc_getmsg getmsg "libc.so"
|
||||||
|
|
||||||
//go:linkname procreadv libc_readv
|
//go:linkname procreadv libc_readv
|
||||||
//go:linkname procpreadv libc_preadv
|
//go:linkname procpreadv libc_preadv
|
||||||
//go:linkname procwritev libc_writev
|
//go:linkname procwritev libc_writev
|
||||||
//go:linkname procpwritev libc_pwritev
|
//go:linkname procpwritev libc_pwritev
|
||||||
//go:linkname procaccept4 libc_accept4
|
//go:linkname procaccept4 libc_accept4
|
||||||
|
//go:linkname procputmsg libc_putmsg
|
||||||
|
//go:linkname procgetmsg libc_getmsg
|
||||||
|
|
||||||
var (
|
var (
|
||||||
procreadv,
|
procreadv,
|
||||||
procpreadv,
|
procpreadv,
|
||||||
procwritev,
|
procwritev,
|
||||||
procpwritev,
|
procpwritev,
|
||||||
procaccept4 syscallFunc
|
procaccept4,
|
||||||
|
procputmsg,
|
||||||
|
procgetmsg syscallFunc
|
||||||
)
|
)
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
@ -100,3 +106,23 @@ func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int,
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func putmsg(fd int, clptr *strbuf, dataptr *strbuf, flags int) (err error) {
|
||||||
|
_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procputmsg)), 4, uintptr(fd), uintptr(unsafe.Pointer(clptr)), uintptr(unsafe.Pointer(dataptr)), uintptr(flags), 0, 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = e1
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func getmsg(fd int, clptr *strbuf, dataptr *strbuf, flags *int) (err error) {
|
||||||
|
_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procgetmsg)), 4, uintptr(fd), uintptr(unsafe.Pointer(clptr)), uintptr(unsafe.Pointer(dataptr)), uintptr(unsafe.Pointer(flags)), 0, 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = e1
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
5
vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
generated
vendored
5
vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
generated
vendored
|
@ -619,8 +619,9 @@ func __minor(version int, dev uint64) (val uint) {
|
||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func ioctl(fd int, req uint, arg uintptr) (err error) {
|
func ioctlRet(fd int, req uint, arg uintptr) (ret int, err error) {
|
||||||
_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)
|
r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)
|
||||||
|
ret = int(r0)
|
||||||
if e1 != 0 {
|
if e1 != 0 {
|
||||||
err = e1
|
err = e1
|
||||||
}
|
}
|
||||||
|
|
40
vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go
generated
vendored
Normal file
40
vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
// cgo -godefs types_illumos.go | go run mkpost.go
|
||||||
|
// Code generated by the command above; see README.md. DO NOT EDIT.
|
||||||
|
|
||||||
|
//go:build amd64 && illumos
|
||||||
|
// +build amd64,illumos
|
||||||
|
|
||||||
|
package unix
|
||||||
|
|
||||||
|
const (
|
||||||
|
TUNNEWPPA = 0x540001
|
||||||
|
TUNSETPPA = 0x540002
|
||||||
|
|
||||||
|
I_STR = 0x5308
|
||||||
|
I_POP = 0x5303
|
||||||
|
I_PUSH = 0x5302
|
||||||
|
I_PLINK = 0x5316
|
||||||
|
I_PUNLINK = 0x5317
|
||||||
|
|
||||||
|
IF_UNITSEL = -0x7ffb8cca
|
||||||
|
)
|
||||||
|
|
||||||
|
type strbuf struct {
|
||||||
|
Maxlen int32
|
||||||
|
Len int32
|
||||||
|
Buf *int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type strioctl struct {
|
||||||
|
Cmd int32
|
||||||
|
Timout int32
|
||||||
|
Len int32
|
||||||
|
Dp *int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type lifreq struct {
|
||||||
|
Name [32]int8
|
||||||
|
Lifru1 [4]byte
|
||||||
|
Type uint32
|
||||||
|
Lifru [336]byte
|
||||||
|
}
|
104
vendor/google.golang.org/api/storage/v1/storage-gen.go
generated
vendored
104
vendor/google.golang.org/api/storage/v1/storage-gen.go
generated
vendored
|
@ -2449,7 +2449,7 @@ func (c *BucketAccessControlsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -2597,7 +2597,7 @@ func (c *BucketAccessControlsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -2764,7 +2764,7 @@ func (c *BucketAccessControlsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -2937,7 +2937,7 @@ func (c *BucketAccessControlsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -3098,7 +3098,7 @@ func (c *BucketAccessControlsPatchCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -3272,7 +3272,7 @@ func (c *BucketAccessControlsUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -3458,7 +3458,7 @@ func (c *BucketsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -3637,7 +3637,7 @@ func (c *BucketsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -3843,7 +3843,7 @@ func (c *BucketsGetIamPolicyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsGetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsGetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -4060,7 +4060,7 @@ func (c *BucketsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -4317,7 +4317,7 @@ func (c *BucketsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -4527,7 +4527,7 @@ func (c *BucketsLockRetentionPolicyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsLockRetentionPolicyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsLockRetentionPolicyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -4762,7 +4762,7 @@ func (c *BucketsPatchCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsPatchCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsPatchCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -4991,7 +4991,7 @@ func (c *BucketsSetIamPolicyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsSetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsSetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -5166,7 +5166,7 @@ func (c *BucketsTestIamPermissionsCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsTestIamPermissionsCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsTestIamPermissionsCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -5406,7 +5406,7 @@ func (c *BucketsUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *BucketsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *BucketsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -5618,7 +5618,7 @@ func (c *ChannelsStopCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ChannelsStopCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ChannelsStopCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -5735,7 +5735,7 @@ func (c *DefaultObjectAccessControlsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -5883,7 +5883,7 @@ func (c *DefaultObjectAccessControlsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6051,7 +6051,7 @@ func (c *DefaultObjectAccessControlsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6241,7 +6241,7 @@ func (c *DefaultObjectAccessControlsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6414,7 +6414,7 @@ func (c *DefaultObjectAccessControlsPatchCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6588,7 +6588,7 @@ func (c *DefaultObjectAccessControlsUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *DefaultObjectAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *DefaultObjectAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6760,7 +6760,7 @@ func (c *NotificationsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *NotificationsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *NotificationsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -6908,7 +6908,7 @@ func (c *NotificationsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *NotificationsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *NotificationsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7078,7 +7078,7 @@ func (c *NotificationsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *NotificationsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *NotificationsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7253,7 +7253,7 @@ func (c *NotificationsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *NotificationsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *NotificationsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7426,7 +7426,7 @@ func (c *ObjectAccessControlsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7598,7 +7598,7 @@ func (c *ObjectAccessControlsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7789,7 +7789,7 @@ func (c *ObjectAccessControlsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -7986,7 +7986,7 @@ func (c *ObjectAccessControlsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -8171,7 +8171,7 @@ func (c *ObjectAccessControlsPatchCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -8369,7 +8369,7 @@ func (c *ObjectAccessControlsUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -8606,7 +8606,7 @@ func (c *ObjectsComposeCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsComposeCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsComposeCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -8949,7 +8949,7 @@ func (c *ObjectsCopyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsCopyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsCopyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -9277,7 +9277,7 @@ func (c *ObjectsDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -9510,7 +9510,7 @@ func (c *ObjectsGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -9760,7 +9760,7 @@ func (c *ObjectsGetIamPolicyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsGetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsGetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -10077,7 +10077,7 @@ func (c *ObjectsInsertCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsInsertCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsInsertCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -10450,7 +10450,7 @@ func (c *ObjectsListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -10767,7 +10767,7 @@ func (c *ObjectsPatchCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsPatchCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsPatchCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -11159,7 +11159,7 @@ func (c *ObjectsRewriteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsRewriteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsRewriteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -11462,7 +11462,7 @@ func (c *ObjectsSetIamPolicyCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsSetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsSetIamPolicyCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -11662,7 +11662,7 @@ func (c *ObjectsTestIamPermissionsCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsTestIamPermissionsCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsTestIamPermissionsCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -11923,7 +11923,7 @@ func (c *ObjectsUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -12241,7 +12241,7 @@ func (c *ObjectsWatchAllCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ObjectsWatchAllCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ObjectsWatchAllCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -12457,7 +12457,7 @@ func (c *ProjectsHmacKeysCreateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsHmacKeysCreateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsHmacKeysCreateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -12607,7 +12607,7 @@ func (c *ProjectsHmacKeysDeleteCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsHmacKeysDeleteCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsHmacKeysDeleteCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -12742,7 +12742,7 @@ func (c *ProjectsHmacKeysGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsHmacKeysGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsHmacKeysGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -12942,7 +12942,7 @@ func (c *ProjectsHmacKeysListCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsHmacKeysListCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsHmacKeysListCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -13137,7 +13137,7 @@ func (c *ProjectsHmacKeysUpdateCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsHmacKeysUpdateCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsHmacKeysUpdateCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
@ -13314,7 +13314,7 @@ func (c *ProjectsServiceAccountGetCall) Header() http.Header {
|
||||||
|
|
||||||
func (c *ProjectsServiceAccountGetCall) doRequest(alt string) (*http.Response, error) {
|
func (c *ProjectsServiceAccountGetCall) doRequest(alt string) (*http.Response, error) {
|
||||||
reqHeaders := make(http.Header)
|
reqHeaders := make(http.Header)
|
||||||
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210314")
|
reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/20210322")
|
||||||
for k, v := range c.header_ {
|
for k, v := range c.header_ {
|
||||||
reqHeaders[k] = v
|
reqHeaders[k] = v
|
||||||
}
|
}
|
||||||
|
|
4
vendor/google.golang.org/genproto/googleapis/type/expr/expr.pb.go
generated
vendored
4
vendor/google.golang.org/genproto/googleapis/type/expr/expr.pb.go
generated
vendored
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2020 Google LLC
|
// Copyright 2021 Google LLC
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
// you may not use this file except in compliance with the License.
|
// you may not use this file except in compliance with the License.
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// versions:
|
// versions:
|
||||||
// protoc-gen-go v1.25.0
|
// protoc-gen-go v1.25.0-devel
|
||||||
// protoc v3.13.0
|
// protoc v3.13.0
|
||||||
// source: google/type/expr.proto
|
// source: google/type/expr.proto
|
||||||
|
|
||||||
|
|
35
vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/main.go
generated
vendored
35
vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/main.go
generated
vendored
|
@ -17,7 +17,6 @@ import (
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
"google.golang.org/protobuf/compiler/protogen"
|
"google.golang.org/protobuf/compiler/protogen"
|
||||||
"google.golang.org/protobuf/internal/encoding/messageset"
|
|
||||||
"google.golang.org/protobuf/internal/encoding/tag"
|
"google.golang.org/protobuf/internal/encoding/tag"
|
||||||
"google.golang.org/protobuf/internal/genid"
|
"google.golang.org/protobuf/internal/genid"
|
||||||
"google.golang.org/protobuf/internal/version"
|
"google.golang.org/protobuf/internal/version"
|
||||||
|
@ -58,7 +57,6 @@ var (
|
||||||
protojsonPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/encoding/protojson")
|
protojsonPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/encoding/protojson")
|
||||||
protoreflectPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoreflect")
|
protoreflectPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoreflect")
|
||||||
protoregistryPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoregistry")
|
protoregistryPackage goImportPath = protogen.GoImportPath("google.golang.org/protobuf/reflect/protoregistry")
|
||||||
protoV1Package goImportPath = protogen.GoImportPath("github.com/golang/protobuf/proto")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type goImportPath interface {
|
type goImportPath interface {
|
||||||
|
@ -89,12 +87,6 @@ func GenerateFile(gen *protogen.Plugin, file *protogen.File) *protogen.Generated
|
||||||
g.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimplPackage.Ident("MaxVersion"), " - ", protoimpl.GenVersion, ")")
|
g.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimplPackage.Ident("MaxVersion"), " - ", protoimpl.GenVersion, ")")
|
||||||
g.P(")")
|
g.P(")")
|
||||||
g.P()
|
g.P()
|
||||||
|
|
||||||
// TODO: Remove this after some soak-in period after the v2 release.
|
|
||||||
g.P("// This is a compile-time assertion that a sufficiently up-to-date version")
|
|
||||||
g.P("// of the legacy proto package is being used.")
|
|
||||||
g.P("const _ = ", protoV1Package.Ident("ProtoPackageIsVersion4"))
|
|
||||||
g.P()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
|
for i, imps := 0, f.Desc.Imports(); i < imps.Len(); i++ {
|
||||||
|
@ -116,17 +108,14 @@ func GenerateFile(gen *protogen.Plugin, file *protogen.File) *protogen.Generated
|
||||||
// genStandaloneComments prints all leading comments for a FileDescriptorProto
|
// genStandaloneComments prints all leading comments for a FileDescriptorProto
|
||||||
// location identified by the field number n.
|
// location identified by the field number n.
|
||||||
func genStandaloneComments(g *protogen.GeneratedFile, f *fileInfo, n int32) {
|
func genStandaloneComments(g *protogen.GeneratedFile, f *fileInfo, n int32) {
|
||||||
for _, loc := range f.Proto.GetSourceCodeInfo().GetLocation() {
|
loc := f.Desc.SourceLocations().ByPath(protoreflect.SourcePath{n})
|
||||||
if len(loc.Path) == 1 && loc.Path[0] == n {
|
for _, s := range loc.LeadingDetachedComments {
|
||||||
for _, s := range loc.GetLeadingDetachedComments() {
|
g.P(protogen.Comments(s))
|
||||||
g.P(protogen.Comments(s))
|
g.P()
|
||||||
g.P()
|
}
|
||||||
}
|
if s := loc.LeadingComments; s != "" {
|
||||||
if s := loc.GetLeadingComments(); s != "" {
|
g.P(protogen.Comments(s))
|
||||||
g.P(protogen.Comments(s))
|
g.P()
|
||||||
g.P()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -735,12 +724,6 @@ func genExtensions(g *protogen.GeneratedFile, f *fileInfo) {
|
||||||
|
|
||||||
g.P("var ", extensionTypesVarName(f), " = []", protoimplPackage.Ident("ExtensionInfo"), "{")
|
g.P("var ", extensionTypesVarName(f), " = []", protoimplPackage.Ident("ExtensionInfo"), "{")
|
||||||
for _, x := range f.allExtensions {
|
for _, x := range f.allExtensions {
|
||||||
// For MessageSet extensions, the name used is the parent message.
|
|
||||||
name := x.Desc.FullName()
|
|
||||||
if messageset.IsMessageSetExtension(x.Desc) {
|
|
||||||
name = name.Parent()
|
|
||||||
}
|
|
||||||
|
|
||||||
g.P("{")
|
g.P("{")
|
||||||
g.P("ExtendedType: (*", x.Extendee.GoIdent, ")(nil),")
|
g.P("ExtendedType: (*", x.Extendee.GoIdent, ")(nil),")
|
||||||
goType, pointer := fieldGoType(g, f, x.Extension)
|
goType, pointer := fieldGoType(g, f, x.Extension)
|
||||||
|
@ -749,7 +732,7 @@ func genExtensions(g *protogen.GeneratedFile, f *fileInfo) {
|
||||||
}
|
}
|
||||||
g.P("ExtensionType: (", goType, ")(nil),")
|
g.P("ExtensionType: (", goType, ")(nil),")
|
||||||
g.P("Field: ", x.Desc.Number(), ",")
|
g.P("Field: ", x.Desc.Number(), ",")
|
||||||
g.P("Name: ", strconv.Quote(string(name)), ",")
|
g.P("Name: ", strconv.Quote(string(x.Desc.FullName())), ",")
|
||||||
g.P("Tag: ", strconv.Quote(fieldProtobufTagValue(x.Extension)), ",")
|
g.P("Tag: ", strconv.Quote(fieldProtobufTagValue(x.Extension)), ",")
|
||||||
g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
|
g.P("Filename: ", strconv.Quote(f.Desc.Path()), ",")
|
||||||
g.P("},")
|
g.P("},")
|
||||||
|
|
|
@ -971,9 +971,12 @@ func genMessageKnownFunctions(g *protogen.GeneratedFile, f *fileInfo, m *message
|
||||||
g.P()
|
g.P()
|
||||||
g.P(" // Identify the next message to search within.")
|
g.P(" // Identify the next message to search within.")
|
||||||
g.P(" md = fd.Message() // may be nil")
|
g.P(" md = fd.Message() // may be nil")
|
||||||
g.P(" if fd.IsMap() {")
|
g.P()
|
||||||
g.P(" md = fd.MapValue().Message() // may be nil")
|
g.P(" // Repeated fields are only allowed at the last postion.")
|
||||||
|
g.P(" if fd.IsList() || fd.IsMap() {")
|
||||||
|
g.P(" md = nil")
|
||||||
g.P(" }")
|
g.P(" }")
|
||||||
|
g.P()
|
||||||
g.P(" return true")
|
g.P(" return true")
|
||||||
g.P(" }) {")
|
g.P(" }) {")
|
||||||
g.P(" return i")
|
g.P(" return i")
|
||||||
|
|
347
vendor/google.golang.org/protobuf/compiler/protogen/protogen.go
generated
vendored
347
vendor/google.golang.org/protobuf/compiler/protogen/protogen.go
generated
vendored
|
@ -13,7 +13,6 @@ package protogen
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/binary"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"go/ast"
|
"go/ast"
|
||||||
"go/parser"
|
"go/parser"
|
||||||
|
@ -21,7 +20,6 @@ import (
|
||||||
"go/token"
|
"go/token"
|
||||||
"go/types"
|
"go/types"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -165,8 +163,6 @@ func (opts Options) New(req *pluginpb.CodeGeneratorRequest) (*Plugin, error) {
|
||||||
|
|
||||||
packageNames := make(map[string]GoPackageName) // filename -> package name
|
packageNames := make(map[string]GoPackageName) // filename -> package name
|
||||||
importPaths := make(map[string]GoImportPath) // filename -> import path
|
importPaths := make(map[string]GoImportPath) // filename -> import path
|
||||||
mfiles := make(map[string]bool) // filename set
|
|
||||||
var packageImportPath GoImportPath
|
|
||||||
for _, param := range strings.Split(req.GetParameter(), ",") {
|
for _, param := range strings.Split(req.GetParameter(), ",") {
|
||||||
var value string
|
var value string
|
||||||
if i := strings.Index(param, "="); i >= 0 {
|
if i := strings.Index(param, "="); i >= 0 {
|
||||||
|
@ -176,8 +172,6 @@ func (opts Options) New(req *pluginpb.CodeGeneratorRequest) (*Plugin, error) {
|
||||||
switch param {
|
switch param {
|
||||||
case "":
|
case "":
|
||||||
// Ignore.
|
// Ignore.
|
||||||
case "import_path":
|
|
||||||
packageImportPath = GoImportPath(value)
|
|
||||||
case "module":
|
case "module":
|
||||||
gen.module = value
|
gen.module = value
|
||||||
case "paths":
|
case "paths":
|
||||||
|
@ -199,16 +193,13 @@ func (opts Options) New(req *pluginpb.CodeGeneratorRequest) (*Plugin, error) {
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
if param[0] == 'M' {
|
if param[0] == 'M' {
|
||||||
if i := strings.Index(value, ";"); i >= 0 {
|
impPath, pkgName := splitImportPathAndPackageName(value)
|
||||||
pkgName := GoPackageName(value[i+1:])
|
if pkgName != "" {
|
||||||
if otherName, ok := packageNames[param[1:]]; ok && pkgName != otherName {
|
|
||||||
return nil, fmt.Errorf("inconsistent package names for %q: %q != %q", value[:i], pkgName, otherName)
|
|
||||||
}
|
|
||||||
packageNames[param[1:]] = pkgName
|
packageNames[param[1:]] = pkgName
|
||||||
value = value[:i]
|
|
||||||
}
|
}
|
||||||
importPaths[param[1:]] = GoImportPath(value)
|
if impPath != "" {
|
||||||
mfiles[param[1:]] = true
|
importPaths[param[1:]] = impPath
|
||||||
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if opts.ParamFunc != nil {
|
if opts.ParamFunc != nil {
|
||||||
|
@ -218,17 +209,11 @@ func (opts Options) New(req *pluginpb.CodeGeneratorRequest) (*Plugin, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if gen.module != "" {
|
// When the module= option is provided, we strip the module name
|
||||||
// When the module= option is provided, we strip the module name
|
// prefix from generated files. This only makes sense if generated
|
||||||
// prefix from generated files. This only makes sense if generated
|
// filenames are based on the import path.
|
||||||
// filenames are based on the import path, so default to paths=import
|
if gen.module != "" && gen.pathType == pathTypeSourceRelative {
|
||||||
// and complain if source_relative was selected manually.
|
return nil, fmt.Errorf("cannot use module= with paths=source_relative")
|
||||||
switch gen.pathType {
|
|
||||||
case pathTypeLegacy:
|
|
||||||
gen.pathType = pathTypeImport
|
|
||||||
case pathTypeSourceRelative:
|
|
||||||
return nil, fmt.Errorf("cannot use module= with paths=source_relative")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Figure out the import path and package name for each file.
|
// Figure out the import path and package name for each file.
|
||||||
|
@ -243,119 +228,52 @@ func (opts Options) New(req *pluginpb.CodeGeneratorRequest) (*Plugin, error) {
|
||||||
//
|
//
|
||||||
// option go_package = "google.golang.org/protobuf/types/known/anypb";
|
// option go_package = "google.golang.org/protobuf/types/known/anypb";
|
||||||
//
|
//
|
||||||
// Build systems which want to exert full control over import paths may
|
// Alternatively, build systems which want to exert full control over
|
||||||
// specify M<filename>=<import_path> flags.
|
// import paths may specify M<filename>=<import_path> flags.
|
||||||
//
|
|
||||||
// Other approaches are not recommend.
|
|
||||||
generatedFileNames := make(map[string]bool)
|
|
||||||
for _, name := range gen.Request.FileToGenerate {
|
|
||||||
generatedFileNames[name] = true
|
|
||||||
}
|
|
||||||
// We need to determine the import paths before the package names,
|
|
||||||
// because the Go package name for a file is sometimes derived from
|
|
||||||
// different file in the same package.
|
|
||||||
packageNameForImportPath := make(map[GoImportPath]GoPackageName)
|
|
||||||
for _, fdesc := range gen.Request.ProtoFile {
|
for _, fdesc := range gen.Request.ProtoFile {
|
||||||
|
// The "M" command-line flags take precedence over
|
||||||
|
// the "go_package" option in the .proto source file.
|
||||||
filename := fdesc.GetName()
|
filename := fdesc.GetName()
|
||||||
packageName, importPath := goPackageOption(fdesc)
|
impPath, pkgName := splitImportPathAndPackageName(fdesc.GetOptions().GetGoPackage())
|
||||||
switch {
|
if importPaths[filename] == "" && impPath != "" {
|
||||||
case importPaths[filename] != "":
|
importPaths[filename] = impPath
|
||||||
// Command line: Mfoo.proto=quux/bar
|
|
||||||
//
|
|
||||||
// Explicit mapping of source file to import path.
|
|
||||||
case generatedFileNames[filename] && packageImportPath != "":
|
|
||||||
// Command line: import_path=quux/bar
|
|
||||||
//
|
|
||||||
// The import_path flag sets the import path for every file that
|
|
||||||
// we generate code for.
|
|
||||||
importPaths[filename] = packageImportPath
|
|
||||||
case importPath != "":
|
|
||||||
// Source file: option go_package = "quux/bar";
|
|
||||||
//
|
|
||||||
// The go_package option sets the import path. Most users should use this.
|
|
||||||
importPaths[filename] = importPath
|
|
||||||
default:
|
|
||||||
// Source filename.
|
|
||||||
//
|
|
||||||
// Last resort when nothing else is available.
|
|
||||||
importPaths[filename] = GoImportPath(path.Dir(filename))
|
|
||||||
}
|
}
|
||||||
if packageName != "" {
|
if packageNames[filename] == "" && pkgName != "" {
|
||||||
packageNameForImportPath[importPaths[filename]] = packageName
|
packageNames[filename] = pkgName
|
||||||
}
|
|
||||||
}
|
|
||||||
for _, fdesc := range gen.Request.ProtoFile {
|
|
||||||
filename := fdesc.GetName()
|
|
||||||
packageName, importPath := goPackageOption(fdesc)
|
|
||||||
defaultPackageName := packageNameForImportPath[importPaths[filename]]
|
|
||||||
switch {
|
|
||||||
case packageNames[filename] != "":
|
|
||||||
// A package name specified by the "M" command-line argument.
|
|
||||||
case packageName != "":
|
|
||||||
// TODO: For the "M" command-line argument, this means that the
|
|
||||||
// package name can be derived from the go_package option.
|
|
||||||
// Go package information should either consistently come from the
|
|
||||||
// command-line or the .proto source file, but not both.
|
|
||||||
// See how to make this consistent.
|
|
||||||
|
|
||||||
// Source file: option go_package = "quux/bar";
|
|
||||||
packageNames[filename] = packageName
|
|
||||||
case defaultPackageName != "":
|
|
||||||
// A go_package option in another file in the same package.
|
|
||||||
//
|
|
||||||
// This is a poor choice in general, since every source file should
|
|
||||||
// contain a go_package option. Supported mainly for historical
|
|
||||||
// compatibility.
|
|
||||||
packageNames[filename] = defaultPackageName
|
|
||||||
case generatedFileNames[filename] && packageImportPath != "":
|
|
||||||
// Command line: import_path=quux/bar
|
|
||||||
packageNames[filename] = cleanPackageName(path.Base(string(packageImportPath)))
|
|
||||||
case fdesc.GetPackage() != "":
|
|
||||||
// Source file: package quux.bar;
|
|
||||||
packageNames[filename] = cleanPackageName(fdesc.GetPackage())
|
|
||||||
default:
|
|
||||||
// Source filename.
|
|
||||||
packageNames[filename] = cleanPackageName(baseName(filename))
|
|
||||||
}
|
|
||||||
|
|
||||||
goPkgOpt := string(importPaths[filename])
|
|
||||||
if path.Base(string(goPkgOpt)) != string(packageNames[filename]) {
|
|
||||||
goPkgOpt += ";" + string(packageNames[filename])
|
|
||||||
}
|
}
|
||||||
switch {
|
switch {
|
||||||
case packageImportPath != "":
|
case importPaths[filename] == "":
|
||||||
// Command line: import_path=quux/bar
|
// The import path must be specified one way or another.
|
||||||
warn("Deprecated use of the 'import_path' command-line argument. In %q, please specify:\n"+
|
return nil, fmt.Errorf(
|
||||||
"\toption go_package = %q;\n"+
|
"unable to determine Go import path for %q\n\n"+
|
||||||
"A future release of protoc-gen-go will no longer support the 'import_path' argument.\n"+
|
"Please specify either:\n"+
|
||||||
"See "+goPackageDocURL+" for more information.\n"+
|
"\t• a \"go_package\" option in the .proto source file, or\n"+
|
||||||
"\n", fdesc.GetName(), goPkgOpt)
|
"\t• a \"M\" argument on the command line.\n\n"+
|
||||||
case mfiles[filename]:
|
"See %v for more information.\n",
|
||||||
// Command line: M=foo.proto=quux/bar
|
fdesc.GetName(), goPackageDocURL)
|
||||||
case packageName != "" && importPath == "":
|
case !strings.Contains(string(importPaths[filename]), "/"):
|
||||||
// Source file: option go_package = "quux";
|
// Check that import paths contain at least one slash to avoid a
|
||||||
warn("Deprecated use of 'go_package' option without a full import path in %q, please specify:\n"+
|
// common mistake where import path is confused with package name.
|
||||||
"\toption go_package = %q;\n"+
|
return nil, fmt.Errorf(
|
||||||
"A future release of protoc-gen-go will require the import path be specified.\n"+
|
"invalid Go import path %q for %q\n\n"+
|
||||||
"See "+goPackageDocURL+" for more information.\n"+
|
"The import path must contain at least one forward slash ('/') character.\n\n"+
|
||||||
"\n", fdesc.GetName(), goPkgOpt)
|
"See %v for more information.\n",
|
||||||
case packageName == "" && importPath == "":
|
string(importPaths[filename]), fdesc.GetName(), goPackageDocURL)
|
||||||
// No Go package information provided.
|
case packageNames[filename] == "":
|
||||||
dotIdx := strings.Index(goPkgOpt, ".") // heuristic for top-level domain
|
// If the package name is not explicitly specified,
|
||||||
slashIdx := strings.Index(goPkgOpt, "/") // heuristic for multi-segment path
|
// then derive a reasonable package name from the import path.
|
||||||
if isFull := 0 <= dotIdx && dotIdx <= slashIdx; isFull {
|
//
|
||||||
warn("Missing 'go_package' option in %q, please specify:\n"+
|
// NOTE: The package name is derived first from the import path in
|
||||||
"\toption go_package = %q;\n"+
|
// the "go_package" option (if present) before trying the "M" flag.
|
||||||
"A future release of protoc-gen-go will require this be specified.\n"+
|
// The inverted order for this is because the primary use of the "M"
|
||||||
"See "+goPackageDocURL+" for more information.\n"+
|
// flag is by build systems that have full control over the
|
||||||
"\n", fdesc.GetName(), goPkgOpt)
|
// import paths all packages, where it is generally expected that
|
||||||
} else {
|
// the Go package name still be identical for the Go toolchain and
|
||||||
warn("Missing 'go_package' option in %q,\n"+
|
// for custom build systems like Bazel.
|
||||||
"please specify it with the full Go package path as\n"+
|
if impPath == "" {
|
||||||
"a future release of protoc-gen-go will require this be specified.\n"+
|
impPath = importPaths[filename]
|
||||||
"See "+goPackageDocURL+" for more information.\n"+
|
|
||||||
"\n", fdesc.GetName())
|
|
||||||
}
|
}
|
||||||
|
packageNames[filename] = cleanPackageName(path.Base(string(impPath)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -482,7 +400,7 @@ type File struct {
|
||||||
// of "dir/foo". Appending ".pb.go" produces an output file of "dir/foo.pb.go".
|
// of "dir/foo". Appending ".pb.go" produces an output file of "dir/foo.pb.go".
|
||||||
GeneratedFilenamePrefix string
|
GeneratedFilenamePrefix string
|
||||||
|
|
||||||
comments map[pathKey]CommentSet
|
location Location
|
||||||
}
|
}
|
||||||
|
|
||||||
func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPackageName, importPath GoImportPath) (*File, error) {
|
func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPackageName, importPath GoImportPath) (*File, error) {
|
||||||
|
@ -498,7 +416,7 @@ func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPac
|
||||||
Proto: p,
|
Proto: p,
|
||||||
GoPackageName: packageName,
|
GoPackageName: packageName,
|
||||||
GoImportPath: importPath,
|
GoImportPath: importPath,
|
||||||
comments: make(map[pathKey]CommentSet),
|
location: Location{SourceFile: desc.Path()},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine the prefix for generated Go files.
|
// Determine the prefix for generated Go files.
|
||||||
|
@ -507,12 +425,6 @@ func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPac
|
||||||
prefix = prefix[:len(prefix)-len(ext)]
|
prefix = prefix[:len(prefix)-len(ext)]
|
||||||
}
|
}
|
||||||
switch gen.pathType {
|
switch gen.pathType {
|
||||||
case pathTypeLegacy:
|
|
||||||
// The default is to derive the output filename from the Go import path
|
|
||||||
// if the file contains a go_package option,or from the input filename instead.
|
|
||||||
if _, importPath := goPackageOption(p); importPath != "" {
|
|
||||||
prefix = path.Join(string(importPath), path.Base(prefix))
|
|
||||||
}
|
|
||||||
case pathTypeImport:
|
case pathTypeImport:
|
||||||
// If paths=import, the output filename is derived from the Go import path.
|
// If paths=import, the output filename is derived from the Go import path.
|
||||||
prefix = path.Join(string(f.GoImportPath), path.Base(prefix))
|
prefix = path.Join(string(f.GoImportPath), path.Base(prefix))
|
||||||
|
@ -526,19 +438,6 @@ func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPac
|
||||||
}
|
}
|
||||||
f.GeneratedFilenamePrefix = prefix
|
f.GeneratedFilenamePrefix = prefix
|
||||||
|
|
||||||
for _, loc := range p.GetSourceCodeInfo().GetLocation() {
|
|
||||||
// Descriptors declarations are guaranteed to have unique comment sets.
|
|
||||||
// Other locations may not be unique, but we don't use them.
|
|
||||||
var leadingDetached []Comments
|
|
||||||
for _, s := range loc.GetLeadingDetachedComments() {
|
|
||||||
leadingDetached = append(leadingDetached, Comments(s))
|
|
||||||
}
|
|
||||||
f.comments[newPathKey(loc.Path)] = CommentSet{
|
|
||||||
LeadingDetached: leadingDetached,
|
|
||||||
Leading: Comments(loc.GetLeadingComments()),
|
|
||||||
Trailing: Comments(loc.GetTrailingComments()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for i, eds := 0, desc.Enums(); i < eds.Len(); i++ {
|
for i, eds := 0, desc.Enums(); i < eds.Len(); i++ {
|
||||||
f.Enums = append(f.Enums, newEnum(gen, f, nil, eds.Get(i)))
|
f.Enums = append(f.Enums, newEnum(gen, f, nil, eds.Get(i)))
|
||||||
}
|
}
|
||||||
|
@ -571,43 +470,13 @@ func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPac
|
||||||
return f, nil
|
return f, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) location(idxPath ...int32) Location {
|
// splitImportPathAndPackageName splits off the optional Go package name
|
||||||
return Location{
|
// from the Go import path when seperated by a ';' delimiter.
|
||||||
SourceFile: f.Desc.Path(),
|
func splitImportPathAndPackageName(s string) (GoImportPath, GoPackageName) {
|
||||||
Path: idxPath,
|
if i := strings.Index(s, ";"); i >= 0 {
|
||||||
|
return GoImportPath(s[:i]), GoPackageName(s[i+1:])
|
||||||
}
|
}
|
||||||
}
|
return GoImportPath(s), ""
|
||||||
|
|
||||||
// goPackageOption interprets a file's go_package option.
|
|
||||||
// If there is no go_package, it returns ("", "").
|
|
||||||
// If there's a simple name, it returns (pkg, "").
|
|
||||||
// If the option implies an import path, it returns (pkg, impPath).
|
|
||||||
func goPackageOption(d *descriptorpb.FileDescriptorProto) (pkg GoPackageName, impPath GoImportPath) {
|
|
||||||
opt := d.GetOptions().GetGoPackage()
|
|
||||||
if opt == "" {
|
|
||||||
return "", ""
|
|
||||||
}
|
|
||||||
rawPkg, impPath := goPackageOptionRaw(opt)
|
|
||||||
pkg = cleanPackageName(rawPkg)
|
|
||||||
if string(pkg) != rawPkg && impPath != "" {
|
|
||||||
warn("Malformed 'go_package' option in %q, please specify:\n"+
|
|
||||||
"\toption go_package = %q;\n"+
|
|
||||||
"A future release of protoc-gen-go will reject this.\n"+
|
|
||||||
"See "+goPackageDocURL+" for more information.\n"+
|
|
||||||
"\n", d.GetName(), string(impPath)+";"+string(pkg))
|
|
||||||
}
|
|
||||||
return pkg, impPath
|
|
||||||
}
|
|
||||||
func goPackageOptionRaw(opt string) (rawPkg string, impPath GoImportPath) {
|
|
||||||
// A semicolon-delimited suffix delimits the import path and package name.
|
|
||||||
if i := strings.Index(opt, ";"); i >= 0 {
|
|
||||||
return opt[i+1:], GoImportPath(opt[:i])
|
|
||||||
}
|
|
||||||
// The presence of a slash implies there's an import path.
|
|
||||||
if i := strings.LastIndex(opt, "/"); i >= 0 {
|
|
||||||
return opt[i+1:], GoImportPath(opt)
|
|
||||||
}
|
|
||||||
return opt, ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// An Enum describes an enum.
|
// An Enum describes an enum.
|
||||||
|
@ -625,15 +494,15 @@ type Enum struct {
|
||||||
func newEnum(gen *Plugin, f *File, parent *Message, desc protoreflect.EnumDescriptor) *Enum {
|
func newEnum(gen *Plugin, f *File, parent *Message, desc protoreflect.EnumDescriptor) *Enum {
|
||||||
var loc Location
|
var loc Location
|
||||||
if parent != nil {
|
if parent != nil {
|
||||||
loc = parent.Location.appendPath(int32(genid.DescriptorProto_EnumType_field_number), int32(desc.Index()))
|
loc = parent.Location.appendPath(genid.DescriptorProto_EnumType_field_number, desc.Index())
|
||||||
} else {
|
} else {
|
||||||
loc = f.location(int32(genid.FileDescriptorProto_EnumType_field_number), int32(desc.Index()))
|
loc = f.location.appendPath(genid.FileDescriptorProto_EnumType_field_number, desc.Index())
|
||||||
}
|
}
|
||||||
enum := &Enum{
|
enum := &Enum{
|
||||||
Desc: desc,
|
Desc: desc,
|
||||||
GoIdent: newGoIdent(f, desc),
|
GoIdent: newGoIdent(f, desc),
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
gen.enumsByName[desc.FullName()] = enum
|
gen.enumsByName[desc.FullName()] = enum
|
||||||
for i, vds := 0, enum.Desc.Values(); i < vds.Len(); i++ {
|
for i, vds := 0, enum.Desc.Values(); i < vds.Len(); i++ {
|
||||||
|
@ -664,13 +533,13 @@ func newEnumValue(gen *Plugin, f *File, message *Message, enum *Enum, desc proto
|
||||||
parentIdent = message.GoIdent
|
parentIdent = message.GoIdent
|
||||||
}
|
}
|
||||||
name := parentIdent.GoName + "_" + string(desc.Name())
|
name := parentIdent.GoName + "_" + string(desc.Name())
|
||||||
loc := enum.Location.appendPath(int32(genid.EnumDescriptorProto_Value_field_number), int32(desc.Index()))
|
loc := enum.Location.appendPath(genid.EnumDescriptorProto_Value_field_number, desc.Index())
|
||||||
return &EnumValue{
|
return &EnumValue{
|
||||||
Desc: desc,
|
Desc: desc,
|
||||||
GoIdent: f.GoImportPath.Ident(name),
|
GoIdent: f.GoImportPath.Ident(name),
|
||||||
Parent: enum,
|
Parent: enum,
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -694,15 +563,15 @@ type Message struct {
|
||||||
func newMessage(gen *Plugin, f *File, parent *Message, desc protoreflect.MessageDescriptor) *Message {
|
func newMessage(gen *Plugin, f *File, parent *Message, desc protoreflect.MessageDescriptor) *Message {
|
||||||
var loc Location
|
var loc Location
|
||||||
if parent != nil {
|
if parent != nil {
|
||||||
loc = parent.Location.appendPath(int32(genid.DescriptorProto_NestedType_field_number), int32(desc.Index()))
|
loc = parent.Location.appendPath(genid.DescriptorProto_NestedType_field_number, desc.Index())
|
||||||
} else {
|
} else {
|
||||||
loc = f.location(int32(genid.FileDescriptorProto_MessageType_field_number), int32(desc.Index()))
|
loc = f.location.appendPath(genid.FileDescriptorProto_MessageType_field_number, desc.Index())
|
||||||
}
|
}
|
||||||
message := &Message{
|
message := &Message{
|
||||||
Desc: desc,
|
Desc: desc,
|
||||||
GoIdent: newGoIdent(f, desc),
|
GoIdent: newGoIdent(f, desc),
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
gen.messagesByName[desc.FullName()] = message
|
gen.messagesByName[desc.FullName()] = message
|
||||||
for i, eds := 0, desc.Enums(); i < eds.Len(); i++ {
|
for i, eds := 0, desc.Enums(); i < eds.Len(); i++ {
|
||||||
|
@ -852,11 +721,11 @@ func newField(gen *Plugin, f *File, message *Message, desc protoreflect.FieldDes
|
||||||
var loc Location
|
var loc Location
|
||||||
switch {
|
switch {
|
||||||
case desc.IsExtension() && message == nil:
|
case desc.IsExtension() && message == nil:
|
||||||
loc = f.location(int32(genid.FileDescriptorProto_Extension_field_number), int32(desc.Index()))
|
loc = f.location.appendPath(genid.FileDescriptorProto_Extension_field_number, desc.Index())
|
||||||
case desc.IsExtension() && message != nil:
|
case desc.IsExtension() && message != nil:
|
||||||
loc = message.Location.appendPath(int32(genid.DescriptorProto_Extension_field_number), int32(desc.Index()))
|
loc = message.Location.appendPath(genid.DescriptorProto_Extension_field_number, desc.Index())
|
||||||
default:
|
default:
|
||||||
loc = message.Location.appendPath(int32(genid.DescriptorProto_Field_field_number), int32(desc.Index()))
|
loc = message.Location.appendPath(genid.DescriptorProto_Field_field_number, desc.Index())
|
||||||
}
|
}
|
||||||
camelCased := strs.GoCamelCase(string(desc.Name()))
|
camelCased := strs.GoCamelCase(string(desc.Name()))
|
||||||
var parentPrefix string
|
var parentPrefix string
|
||||||
|
@ -872,7 +741,7 @@ func newField(gen *Plugin, f *File, message *Message, desc protoreflect.FieldDes
|
||||||
},
|
},
|
||||||
Parent: message,
|
Parent: message,
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
return field
|
return field
|
||||||
}
|
}
|
||||||
|
@ -927,7 +796,7 @@ type Oneof struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func newOneof(gen *Plugin, f *File, message *Message, desc protoreflect.OneofDescriptor) *Oneof {
|
func newOneof(gen *Plugin, f *File, message *Message, desc protoreflect.OneofDescriptor) *Oneof {
|
||||||
loc := message.Location.appendPath(int32(genid.DescriptorProto_OneofDecl_field_number), int32(desc.Index()))
|
loc := message.Location.appendPath(genid.DescriptorProto_OneofDecl_field_number, desc.Index())
|
||||||
camelCased := strs.GoCamelCase(string(desc.Name()))
|
camelCased := strs.GoCamelCase(string(desc.Name()))
|
||||||
parentPrefix := message.GoIdent.GoName + "_"
|
parentPrefix := message.GoIdent.GoName + "_"
|
||||||
return &Oneof{
|
return &Oneof{
|
||||||
|
@ -939,7 +808,7 @@ func newOneof(gen *Plugin, f *File, message *Message, desc protoreflect.OneofDes
|
||||||
GoName: parentPrefix + camelCased,
|
GoName: parentPrefix + camelCased,
|
||||||
},
|
},
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -959,12 +828,12 @@ type Service struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func newService(gen *Plugin, f *File, desc protoreflect.ServiceDescriptor) *Service {
|
func newService(gen *Plugin, f *File, desc protoreflect.ServiceDescriptor) *Service {
|
||||||
loc := f.location(int32(genid.FileDescriptorProto_Service_field_number), int32(desc.Index()))
|
loc := f.location.appendPath(genid.FileDescriptorProto_Service_field_number, desc.Index())
|
||||||
service := &Service{
|
service := &Service{
|
||||||
Desc: desc,
|
Desc: desc,
|
||||||
GoName: strs.GoCamelCase(string(desc.Name())),
|
GoName: strs.GoCamelCase(string(desc.Name())),
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
for i, mds := 0, desc.Methods(); i < mds.Len(); i++ {
|
for i, mds := 0, desc.Methods(); i < mds.Len(); i++ {
|
||||||
service.Methods = append(service.Methods, newMethod(gen, f, service, mds.Get(i)))
|
service.Methods = append(service.Methods, newMethod(gen, f, service, mds.Get(i)))
|
||||||
|
@ -988,13 +857,13 @@ type Method struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func newMethod(gen *Plugin, f *File, service *Service, desc protoreflect.MethodDescriptor) *Method {
|
func newMethod(gen *Plugin, f *File, service *Service, desc protoreflect.MethodDescriptor) *Method {
|
||||||
loc := service.Location.appendPath(int32(genid.ServiceDescriptorProto_Method_field_number), int32(desc.Index()))
|
loc := service.Location.appendPath(genid.ServiceDescriptorProto_Method_field_number, desc.Index())
|
||||||
method := &Method{
|
method := &Method{
|
||||||
Desc: desc,
|
Desc: desc,
|
||||||
GoName: strs.GoCamelCase(string(desc.Name())),
|
GoName: strs.GoCamelCase(string(desc.Name())),
|
||||||
Parent: service,
|
Parent: service,
|
||||||
Location: loc,
|
Location: loc,
|
||||||
Comments: f.comments[newPathKey(loc.Path)],
|
Comments: makeCommentSet(f.Desc.SourceLocations().ByDescriptor(desc)),
|
||||||
}
|
}
|
||||||
return method
|
return method
|
||||||
}
|
}
|
||||||
|
@ -1081,7 +950,7 @@ func (g *GeneratedFile) QualifiedGoIdent(ident GoIdent) string {
|
||||||
if packageName, ok := g.packageNames[ident.GoImportPath]; ok {
|
if packageName, ok := g.packageNames[ident.GoImportPath]; ok {
|
||||||
return string(packageName) + "." + ident.GoName
|
return string(packageName) + "." + ident.GoName
|
||||||
}
|
}
|
||||||
packageName := cleanPackageName(baseName(string(ident.GoImportPath)))
|
packageName := cleanPackageName(path.Base(string(ident.GoImportPath)))
|
||||||
for i, orig := 1, packageName; g.usedPackageNames[packageName]; i++ {
|
for i, orig := 1, packageName; g.usedPackageNames[packageName]; i++ {
|
||||||
packageName = orig + GoPackageName(strconv.Itoa(i))
|
packageName = orig + GoPackageName(strconv.Itoa(i))
|
||||||
}
|
}
|
||||||
|
@ -1328,24 +1197,10 @@ func cleanPackageName(name string) GoPackageName {
|
||||||
return GoPackageName(strs.GoSanitized(name))
|
return GoPackageName(strs.GoSanitized(name))
|
||||||
}
|
}
|
||||||
|
|
||||||
// baseName returns the last path element of the name, with the last dotted suffix removed.
|
|
||||||
func baseName(name string) string {
|
|
||||||
// First, find the last element
|
|
||||||
if i := strings.LastIndex(name, "/"); i >= 0 {
|
|
||||||
name = name[i+1:]
|
|
||||||
}
|
|
||||||
// Now drop the suffix
|
|
||||||
if i := strings.LastIndex(name, "."); i >= 0 {
|
|
||||||
name = name[:i]
|
|
||||||
}
|
|
||||||
return name
|
|
||||||
}
|
|
||||||
|
|
||||||
type pathType int
|
type pathType int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
pathTypeLegacy pathType = iota
|
pathTypeImport pathType = iota
|
||||||
pathTypeImport
|
|
||||||
pathTypeSourceRelative
|
pathTypeSourceRelative
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1359,28 +1214,10 @@ type Location struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// appendPath add elements to a Location's path, returning a new Location.
|
// appendPath add elements to a Location's path, returning a new Location.
|
||||||
func (loc Location) appendPath(a ...int32) Location {
|
func (loc Location) appendPath(num protoreflect.FieldNumber, idx int) Location {
|
||||||
var n protoreflect.SourcePath
|
loc.Path = append(protoreflect.SourcePath(nil), loc.Path...) // make copy
|
||||||
n = append(n, loc.Path...)
|
loc.Path = append(loc.Path, int32(num), int32(idx))
|
||||||
n = append(n, a...)
|
return loc
|
||||||
return Location{
|
|
||||||
SourceFile: loc.SourceFile,
|
|
||||||
Path: n,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// A pathKey is a representation of a location path suitable for use as a map key.
|
|
||||||
type pathKey struct {
|
|
||||||
s string
|
|
||||||
}
|
|
||||||
|
|
||||||
// newPathKey converts a location path to a pathKey.
|
|
||||||
func newPathKey(idxPath []int32) pathKey {
|
|
||||||
buf := make([]byte, 4*len(idxPath))
|
|
||||||
for i, x := range idxPath {
|
|
||||||
binary.LittleEndian.PutUint32(buf[i*4:], uint32(x))
|
|
||||||
}
|
|
||||||
return pathKey{string(buf)}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommentSet is a set of leading and trailing comments associated
|
// CommentSet is a set of leading and trailing comments associated
|
||||||
|
@ -1391,6 +1228,18 @@ type CommentSet struct {
|
||||||
Trailing Comments
|
Trailing Comments
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func makeCommentSet(loc protoreflect.SourceLocation) CommentSet {
|
||||||
|
var leadingDetached []Comments
|
||||||
|
for _, s := range loc.LeadingDetachedComments {
|
||||||
|
leadingDetached = append(leadingDetached, Comments(s))
|
||||||
|
}
|
||||||
|
return CommentSet{
|
||||||
|
LeadingDetached: leadingDetached,
|
||||||
|
Leading: Comments(loc.LeadingComments),
|
||||||
|
Trailing: Comments(loc.TrailingComments),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Comments is a comments string as provided by protoc.
|
// Comments is a comments string as provided by protoc.
|
||||||
type Comments string
|
type Comments string
|
||||||
|
|
||||||
|
@ -1409,11 +1258,3 @@ func (c Comments) String() string {
|
||||||
}
|
}
|
||||||
return string(b)
|
return string(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
var warnings = true
|
|
||||||
|
|
||||||
func warn(format string, a ...interface{}) {
|
|
||||||
if warnings {
|
|
||||||
log.Printf("WARNING: "+format, a...)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
30
vendor/google.golang.org/protobuf/encoding/prototext/decode.go
generated
vendored
30
vendor/google.golang.org/protobuf/encoding/prototext/decode.go
generated
vendored
|
@ -6,7 +6,6 @@ package prototext
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
"google.golang.org/protobuf/internal/encoding/messageset"
|
"google.golang.org/protobuf/internal/encoding/messageset"
|
||||||
|
@ -23,6 +22,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Unmarshal reads the given []byte into the given proto.Message.
|
// Unmarshal reads the given []byte into the given proto.Message.
|
||||||
|
// The provided message must be mutable (e.g., a non-nil pointer to a message).
|
||||||
func Unmarshal(b []byte, m proto.Message) error {
|
func Unmarshal(b []byte, m proto.Message) error {
|
||||||
return UnmarshalOptions{}.Unmarshal(b, m)
|
return UnmarshalOptions{}.Unmarshal(b, m)
|
||||||
}
|
}
|
||||||
|
@ -51,8 +51,9 @@ type UnmarshalOptions struct {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unmarshal reads the given []byte and populates the given proto.Message using options in
|
// Unmarshal reads the given []byte and populates the given proto.Message
|
||||||
// UnmarshalOptions object.
|
// using options in the UnmarshalOptions object.
|
||||||
|
// The provided message must be mutable (e.g., a non-nil pointer to a message).
|
||||||
func (o UnmarshalOptions) Unmarshal(b []byte, m proto.Message) error {
|
func (o UnmarshalOptions) Unmarshal(b []byte, m proto.Message) error {
|
||||||
return o.unmarshal(b, m)
|
return o.unmarshal(b, m)
|
||||||
}
|
}
|
||||||
|
@ -158,21 +159,11 @@ func (d decoder) unmarshalMessage(m pref.Message, checkDelims bool) error {
|
||||||
switch tok.NameKind() {
|
switch tok.NameKind() {
|
||||||
case text.IdentName:
|
case text.IdentName:
|
||||||
name = pref.Name(tok.IdentName())
|
name = pref.Name(tok.IdentName())
|
||||||
fd = fieldDescs.ByName(name)
|
fd = fieldDescs.ByTextName(string(name))
|
||||||
if fd == nil {
|
|
||||||
// The proto name of a group field is in all lowercase,
|
|
||||||
// while the textproto field name is the group message name.
|
|
||||||
gd := fieldDescs.ByName(pref.Name(strings.ToLower(string(name))))
|
|
||||||
if gd != nil && gd.Kind() == pref.GroupKind && gd.Message().Name() == name {
|
|
||||||
fd = gd
|
|
||||||
}
|
|
||||||
} else if fd.Kind() == pref.GroupKind && fd.Message().Name() != name {
|
|
||||||
fd = nil // reset since field name is actually the message name
|
|
||||||
}
|
|
||||||
|
|
||||||
case text.TypeName:
|
case text.TypeName:
|
||||||
// Handle extensions only. This code path is not for Any.
|
// Handle extensions only. This code path is not for Any.
|
||||||
xt, xtErr = d.findExtension(pref.FullName(tok.TypeName()))
|
xt, xtErr = d.opts.Resolver.FindExtensionByName(pref.FullName(tok.TypeName()))
|
||||||
|
|
||||||
case text.FieldNumber:
|
case text.FieldNumber:
|
||||||
isFieldNumberName = true
|
isFieldNumberName = true
|
||||||
|
@ -269,15 +260,6 @@ func (d decoder) unmarshalMessage(m pref.Message, checkDelims bool) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// findExtension returns protoreflect.ExtensionType from the Resolver if found.
|
|
||||||
func (d decoder) findExtension(xtName pref.FullName) (pref.ExtensionType, error) {
|
|
||||||
xt, err := d.opts.Resolver.FindExtensionByName(xtName)
|
|
||||||
if err == nil {
|
|
||||||
return xt, nil
|
|
||||||
}
|
|
||||||
return messageset.FindMessageSetExtension(d.opts.Resolver, xtName)
|
|
||||||
}
|
|
||||||
|
|
||||||
// unmarshalSingular unmarshals a non-repeated field value specified by the
|
// unmarshalSingular unmarshals a non-repeated field value specified by the
|
||||||
// given FieldDescriptor.
|
// given FieldDescriptor.
|
||||||
func (d decoder) unmarshalSingular(fd pref.FieldDescriptor, m pref.Message) error {
|
func (d decoder) unmarshalSingular(fd pref.FieldDescriptor, m pref.Message) error {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue