Luigi Tagliamonte
Luigi Tagliamonte
The result of using `mean5m` seems not correct. To reproduce run the gateway locally and send: ``` echo '# TYPE test_value gauge test_value{clearmode="mean5m"} 22' | curl --data-binary @- localhost:4278/metrics/job/testjob ```...
simple Makefile to simplify the build and push to AWS ECR repo. Would love to see an official build in docker repo.
All prometheus_client example uses push_to_gateway function to push metrics to the prometheus gateway. https://github.com/prometheus/client_python#exporting-to-a-pushgateway The `push_to_gateway` method uses PUT as http method: https://github.com/prometheus/client_python/blob/v0.14.1/prometheus_client/exposition.py#L448 meanwhile `pushadd_to_gateway` uses POST as HTTP method:...
Would be nice to expose a "reset endpoint" or support DELETE method to make tests/integrations more convenient
Is there any way to save a cost analysis, like a dashboard page where I can save the filtering and only changing the time frame I'm interested in? For example,...
It looks like that run_task and describe_tasks using `awsvpc` mode do not attach an ENI to the task. the ENI info should be present under `attachments` -> `details` with value...
I'm embedding the s3cmd to a python program that will run on an IoT device. From my local testing it looks like that `size` and `md5` checks are performed only...
Great project, very a good starting point to have a UI based approach to terraform. Looking at stacks view would be nice to: - being able to create a stack...
Hello, I'm trying to test cluster failures using kazoo. I wrote the following script: ``` from kazoo.client import KazooClient from kazoo.client import KazooState from kazoo.client import KazooRetry import sys import...
I have the following repo definition: ``` resource "nexus_blobstore" "devpi_s3_blobstore" { name = "devpi-s3" type = "S3" bucket_configuration { bucket { name = module.nexus.nexus_s3_blobstore_id region = module.nexus.nexus_s3_blobstore_region prefix = "devpi"...