Skip to content

Instantly share code, notes, and snippets.

View alexamies's full-sized avatar

Alex Amies alexamies

View GitHub Profile
// Copyright 2018 Google, Inc. All rights reserved.
//
// 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,
@alexamies
alexamies / Dockerfile
Last active October 5, 2018 22:28
Example of a HTTP probe with OpenCensus
FROM golang:1.10
WORKDIR /go/src/http_probe
COPY *.json .
COPY *.yaml .
COPY *.go .
RUN go get -d -v ./...
RUN go install -v ./...
@alexamies
alexamies / Dockerfile-define-metrics
Last active October 5, 2018 22:29
Mesh of HTTP Probes
FROM google/cloud-sdk:latest
ADD define_metrics.py /
ADD *.json /
ADD config.yaml /
RUN pip install pyyaml
RUN pip install --upgrade google-cloud-monitoring
CMD [ "python", "./define_metrics.py", "$GOOGLE_APPLICATION_CREDENTIALS"]
@alexamies
alexamies / A--Monitoring-End-to-End-Message-Latency-README.md
Last active February 11, 2019 04:51
Monitoring End-to-End Message Latency with Stackdriver

Monitoring End-to-End Message Latency with Stackdriver

Enable the PubSub, Stackdriver, and Kubernetes Engine APIs in the Cloud Console. You will need to enable Stackdriver premium for use of custom metrics.

Export the name of your project and zone to the shell environment

export PROJECT_ID=[YOUR PROJECT ID]
gcloud config set project $PROJECT_ID
ZONE=us-west1-a
gcloud config set compute/zone $ZONE
@alexamies
alexamies / Analyzing-Client-Errors-README.md
Last active July 11, 2018 16:22
Monitoring of HTTP network services

Client Errors Monitoring project

This is a simple probe for measuring sources of HTTP connection latency, including DNS lookup, TLS handshake, connection establishment, and data transfer.

Enable the Stackdriver and Kubernetes Engine APIs in the Cloud Console. You will need to enable Stackdriver premium for use of custom metrics.

Export the name of your project and zone to the shell environment