惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
B
Blog
腾讯CDC
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
L
LangChain Blog
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog

Datadog | The Monitor blog

Introducing our open source AI-native SAST Instrument and monitor Boomi integration flows with OpenTelemetry and Datadog Not all index scans are equal: How we cut query latency by over 99% Platform engineering metrics: What to measure and what to ignore Integrate Recorded Future threat intelligence with Datadog Cloud SIEM CI/CD security: threat modeling using a MITRE-style threat matrix CI/CD security: How to secure your GitHub ecosystem Ingress NGINX is EOL: A practical guide for migrating to Kubernetes Gateway API Operating agentic AI with Amazon Bedrock AgentCore and Datadog LLM Observability: Lessons from NTT DATA Introducing the Datadog Code Security MCP Capture and analyze custom heatmaps in Session Replay Understand session replays faster with AI summaries and smart chapters Monitor ClickHouse query performance with Datadog Database Monitoring How we designed empathetic alert sounds for on-call engineers Search and act across Datadog to resolve issues faster with Bits Assistant Measure the business impact of every product change with Datadog Experiments Analyzing round trip query latency Configuring JavaScript caches for better performance Introducing Bits AI Dev Agent for Code Security Datadog achieves ISO 42001 certification for responsible AI Monitor Nutanix clusters, hosts, and VMs with Datadog Monitor Juniper Mist in Datadog A new Host Map for modern infrastructure Annotate traces to improve LLM quality with Datadog LLM Observability What’s new in Cloud SIEM: AI-powered investigations, enhanced threat intelligence, and scalable security operations Explore Kubernetes with native OpenTelemetry data Monitor Oracle Fusion Cloud Applications with Datadog Announcing the Datadog Terraform provider v4.0.0 Scaling Kubernetes workloads on custom metrics How to design cloud environments for AI-powered threat analysis
Instrument your Go apps with Expvar and Datadog
2015-02-09 · via Datadog | The Monitor blog

Here at Datadog, we have created myriad integrations with your favorite applications. We also provide ways to instrument your own custom apps using various DogStatsD libraries as well as the RESTful API. For those of you writing your apps in Go, the Datadog Agent 5.1.0 introduces the ability to use expvar as well.

Instrument your Go apps with Expvar and Datadog

Expvar is a Go package which allows you to define variables to export and publish over http. To take advantage of this and expose an expvar as a Datadog metric, follow these simple steps:

  1. Define an expvar variable and set it
  2. Create the Datadog configuration file for expvar

That’s really all there is to it. Let’s take a look at a specific example using a trivial application: a simple webserver. For this example we want to have a Datadog dashboard that shows the number of times a particular page has been visited in the last minute. The first step is to import the expvar package and define the expvar:

var (

counter *ratecounter.RateCounter

hitsperminute = expvar.NewInt("hits_per_minute")

)

In my code I created the hitsperminute expvar as well as a counter using Paul Bellamy’s RateCounter package to determine hits per amount of time.

By simply including the expvar package and then creating this variable, a special debug page is created with the current value of hits_per_minute as well a collection of memory stats.

Then, in the portion of code that handles the page view, I set the value of the hitsperminute variable.

func increment(w http.ResponseWriter, r *http.Request) {

counter.Incr(1)

hitsperminute.Set(counter.Rate())

io.WriteString(w, strconv.FormatInt(counter.Rate(), 10))

}

As you can see I am using a http handler function to display a simple page showing the current rate. However, before that, I increment the ratecounter and then set the value of my expvar to the current ratecounter rate.

The main() function is where you get to see just how trivial this app is.

func main() {

counter = ratecounter.NewRateCounter(1 * time.Minute)

http.HandleFunc("/increment", increment)

http.ListenAndServe(":8000", nil)

}

I instantiate the ratecounter and then listen and serve the increment function at http://localhost:8000/increment. You can see the full source code for this app here.

The expvar package takes care of the rest and publishes the variable along with some performance metrics to a standard location which will be http://localhost:8000/debug/vars.

The final step is to enable the Datadog expvar configuration. Within the Datadog installation directory, go to conf.d and edit the go_expvar.yaml file (or copy the go_expvar.yaml.example file). Add the following to the end of the file, preserving the current tab level:

- path: hits_per_minute

alias: go_expvar.hits_per_minute

type: gauge

You can find the complete yaml file here.

When you next visit the Metrics Explorer, you will see the go_expvar.hits_per_minute metric available for all of your dashboards.

Instrument your Go apps with Expvar and Datadog

Now visit the site served by the Go app and hit refresh or use a simple script like this to randomly hit the page a thousand times.

If you’re not currently a Datadog customer, sign up for a Datadog 14 day free trial and expose expvars as a Datadog metric to monitor your Go application performance.