Nail Islamov

Results 16 comments of Nail Islamov

> Alternative to for example wrapping the ExporterComponent is to tell users to configure an OTel exporter. This is what we'd prefer I think, as this helps to avoid duplicate...

It's not just `_count`, but bucket values as well. The problem is due to `DISTRIBUTION` + `DELTA` metrics in Cloud Monitoring (Stackdriver) returning deltas for a given interval, whereas Prometheus...

> If it's a DELTA type from stackdriver, we add the value of the stackdriver delta to the value of the prometheus gauge. I think it should be just switched...

Another workaround described in https://cloud.google.com/blog/topics/developers-practitioners/force-terraform-resource-recreation is hashing the metadata content and putting the hash into a GCE field which forces its replacement (e.g. destroy and create), the `description` field for...

IMO the URL pattern `/v2/service_instances/validate:instance_id` is not RESTy, I would rather propose either `/v2/service_instances/instance_id/validate` or `/v2/service_instances/validate/instance_id` Another alternative option is to add a "dry run" mode to normal create/update/delete OSB...

It would also be nice to have similar feature for "create" (provisioning) operation. Otherwise platform has to always perform orphan mitigation "just in case" after failed async provisioning, even if...

The main technical difference is that `aws-service-broker` is implementing an OSB REST API (http://www.openservicebrokerapi.org/) that can be integrated with Kubernetes via Service Catalog (https://github.com/kubernetes-incubator/service-catalog), while `aws-service-operator` is a CRD controller...

@dukeng can you please share more details about your use case? Is that specific to OpenCensus or OpenTelemetry? Note that this exporter is being used by OpenTelemetry Collector to export...

Related: https://github.com/open-telemetry/opentelemetry-collector/issues/871

> NAMESPACE env isn't always automatically injected by kubernetes It can be injected using downward API, see `MY_POD_NAMESPACE` example in https://kubernetes.io/docs/tasks/inject-data-application/environment-variable-expose-pod-information/#use-pod-fields-as-values-for-environment-variables > This gives me the NAMESPACE name but the...