Skip to content

Instantly share code, notes, and snippets.

@ericchanky
ericchanky / kubernetes-granfana-namespace-metrics.json
Last active September 5, 2018 02:49
Kubernetes namespace metrics
{
"__inputs": [
{
"name": "DS_PROMETHEUS",
"label": "prometheus",
"description": "",
"type": "datasource",
"pluginId": "prometheus",
"pluginName": "Prometheus"
}
@ericchanky
ericchanky / echo.proto
Last active May 21, 2020 09:04
Generate promisified grpc client
syntax = "proto3";
message GreetRequest {
string name = 1;
}
message GreetResponse {
string message = 1;
}
@ericchanky
ericchanky / remote.csml
Last active February 15, 2024 10:21
CSML module test
start:
say "remote flow start"
goto end
remote:
say "remote flow"
goto end