OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 go run main.go
https://ccloud-local-dev.datadoghq.com/notebook/7055821/datadog-otel-gauge-issue
# https://gist.github.com/sirianni/0b4bdac87e62bf136bfa71828827ca43 | |
import os | |
import shutil | |
import time | |
for filename in os.listdir(): | |
if os.path.isfile(filename): |
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 go run main.go
https://ccloud-local-dev.datadoghq.com/notebook/7055821/datadog-otel-gauge-issue
$ http ':7777/jolokia/write/org.apache.logging.log4j2:component=Loggers,name=io.opentelemetry,type=251a69d7/Level/INFO'
HTTP/1.1 200 OK
{
"request": {
"attribute": "Level",
"mbean": "org.apache.logging.log4j2:component=Loggers,name=io.opentelemetry,type=251a69d7",
"type": "write",
"value": "INFO"
Using grpcurl and ZSH process substitution =()
$ grpcurl -protoset =(curl -L https://gist.github.com/sirianni/d8379a2c9a5768acb7682f138c9c55af/raw/opentelemetry.fdset) list
opentelemetry.proto.collector.logs.v1.LogsService
opentelemetry.proto.collector.metrics.v1.MetricsService
I hereby claim:
To claim this, I am signing this object:
The logic for how Kubernetes v1.11.9 sorts pods when deciding which ones to delete for a scale down:
Pods are deleted in "ascending" order based on that sort logic.
<!-- kind:binary;verdict:compatible;affected:0;added:27;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;method_problems_high:0;method_problems_medium:0;method_problems_low:25;checked_methods:173;checked_types:10;tool_version:2.4 --> | |
<!-- kind:source;verdict:compatible;affected:0;added:27;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:0;method_problems_high:0;method_problems_medium:0;method_problems_low:0;checked_methods:173;checked_types:10;tool_version:2.4 --> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<meta name="keywords" content="zstd-jni, compatibility" /> | |
<meta name="description" content="Compatibility report for the zstd-jni library between 1.4.0-1 and 1.4.2-1 ver |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script src="https://code.jquery.com/jquery-3.1.0.js"></script> | |
<script id="jsbin-javascript"> |
run: main | |
./a.out | |
main: main.cpp | |
g++ -g -Wall main.cpp | |
clean: | |
rm -f a.out |
#!/bin/bash | |
for f in `ls -p | grep -v /`; do | |
file="$f" | |
modtime=`stat --format=%Y "$file"` | |
year=`date --date @$modtime +%Y` | |
if [ ! -d "$year" ]; then | |
mkdir -p "$year" | |
fi |