This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "resourceSpans": [ | |
| { | |
| "resource": { | |
| "attributes": [ | |
| { | |
| "key": "service.name", | |
| "value": { | |
| "stringValue": "otel-test-pod" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This bucket is for putting ALB logs into | |
| # If the bucket already exists, add it to your state like this: | |
| # terraform import aws_s3_bucket.alb_log_bucket otel-demo-alb-access-logs | |
| resource "aws_s3_bucket" "alb_log_bucket" { | |
| bucket = "otel-demo-alb-access-logs" | |
| tags = { | |
| Notes = "debug 502s from the collector endpoint" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { onFID, onLCP, onCLS, onINP, onTTFB } from 'web-vitals'; // you'll need to install this | |
| import { InstrumentationBase, InstrumentationModuleDefinition } from '@opentelemetry/instrumentation'; | |
| import { trace, context } from '@opentelemetry/api'; | |
| import { hrTime } from '@opentelemetry/core'; | |
| export class WebVitalsInstrumentation extends InstrumentationBase { | |
| constructor() { | |
| super('web-vitals-instrumentation', 'v0.1.0'); | |
| } | |
| protected init(): void | InstrumentationModuleDefinition<any> | InstrumentationModuleDefinition<any>[] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mode: deployment | |
| config: | |
| exporters: | |
| otlp/honeycomb: | |
| endpoint: api.honeycomb.io:443 | |
| headers: | |
| "x-honeycomb-team": YOUR-HONEYCOMB-API-KEY-HERE | |
| logging: | |
| loglevel: debug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { ... | |
| "dependencies": { | |
| "@grpc/grpc-js": "^1.5.7", | |
| "@opentelemetry/api": "^1.1.0", | |
| "@opentelemetry/core": "^1.1.1", | |
| "@opentelemetry/exporter-trace-otlp-grpc": "^0.27.0", | |
| "@opentelemetry/instrumentation": "^0.27.0", | |
| "@opentelemetry/instrumentation-express": "^0.28.0", | |
| "@opentelemetry/instrumentation-http": "^0.27.0", | |
| "@opentelemetry/resources": "^1.1.1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .Synopsis | |
| STDERR strings get wrapped in an ErrorRecord. Unwrap those back into strings. | |
| #> | |
| function Convert-StderrString { | |
| # Why can this not be an advanced function with [CmdletBinding()] ? | |
| # Somehow it doesn't work if I put that in. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { commandHandlerFrom } from "@atomist/automation-client/onCommand"; | |
| import { HandleCommand } from "@atomist/automation-client"; | |
| import { Parameters } from "@atomist/automation-client/decorators"; | |
| import * as _ from "lodash" | |
| @Parameters() | |
| export class WhoIsBusyParameters { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function readConfig(): Promise<DeletionCriteria> { | |
| return promisify(fs.readFile)("config/deletionCriteria.json", { encoding: "utf8" }) | |
| .then(configFileContent => | |
| JSON.parse(configFileContent)); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Main (..) where | |
| import ElmTest | |
| import Check exposing (Evidence, Claim, that, is, for) | |
| import Check.Test | |
| import Check.Producer as Producer | |
| import List | |
| import Signal exposing (Signal) | |
| import Console exposing (IO) | |
| import Task |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module CarrotPotato where | |
| import StartApp | |
| import Task exposing (Task) | |
| import Signal exposing (Signal, Address) | |
| import Effects exposing (Effects, Never) | |
| import Html exposing (Html) | |
| -- | |
| -- StartApp boilerplate |