Skip to content

Instantly share code, notes, and snippets.

View graphaelli's full-sized avatar

Gil Raphaelli graphaelli

View GitHub Profile
@graphaelli
graphaelli / elastic-jaeger-otlp-demo.md
Last active February 22, 2023 01:31
Jaeger OTLP export to Elastic Cloud (ESS)

Grab a recent CA cert bundle, to verify SSL connections

curl -LO https://raw.githubusercontent.com/stripe/stripe-ruby/master/lib/data/ca-certificates.crt

Start HotRod with OTLP export

ELASTIC_APM_SERVER_URL and ELASTIC_APM_SECRET_TOKEN can be found through kibana, at ${kibana_url}/app/home#/tutorial/apm (or click on "add data" in the APM UI)

package main
import (
"bytes"
"context"
"encoding/json"
"errors"
"flag"
"fmt"
"io"
package main
import (
"encoding/json"
"errors"
"fmt"
"io"
"log"
"os"
)
package main
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
@graphaelli
graphaelli / Vagrantfile
Created September 22, 2021 02:21
nomad on Ubuntu 21.10
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.boot_timeout = 600
config.vm.box = "ubuntu/impish64"
config.vm.network "public_network", bridge: "en0: Wi-Fi (Wireless)", use_dhcp_assigned_default_route: true
config.vm.network "forwarded_port", guest: 4646, host: 4646, auto_correct: true, host_ip: "127.0.0.1"
config.vm.synced_folder ".", "/vagrant", disabled: false
# vagrant plugin install vagrant-disksize
module otel-ping
go 1.18
require (
github.com/census-instrumentation/opencensus-proto v0.3.0
github.com/gogo/protobuf v1.3.2
go.opentelemetry.io/collector/pdata v0.57.2
go.opentelemetry.io/otel v1.9.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.31.0
#!/usr/bin/env python
import hashlib
import binascii
import os
from evernote.api.client import EvernoteClient
from evernote.edam.notestore.ttypes import NoteFilter, NotesMetadataResultSpec
auth_token = ""
// List or summarize upcoming calendar events
// auth handling from https://developers.google.com/calendar/quickstart/go
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
package main
import (
cryptorand "crypto/rand"
"encoding/binary"
"fmt"
"log"
"math/rand"
"time"
)
package main
import (
"log"
"os"
"path"
"strconv"
"github.com/davecgh/go-spew/spew"
"github.com/elastic/gosigar"