Operations | Monitoring | ITSM | DevOps | Cloud

October 2019

Lifting the Index Size Limit of Prometheus with Postings Compression

Prometheus’s TSDB (TimeSeries DataBase) stores the recent data in the memory and the old data on persistent storage in the form of blocks. Each block has its own index to map the series to the actual chunks that contain the data samples. During Google Summer of Code 2019, I mentored Alec Wang throughout this work on lifting the size limitations of the index mentioned above. The work described below is up for review and should be merged soon.

New Form Styles Coming to Grafana

We’re always looking for ways to improve the Grafana UX; recently, we’ve been working on redesigning form styles. The three key areas of improvement are accessibility, scannability, and appeal. They’re very much intertwined, and things like inconsistency affect all of them. Here’s a look at our design process so far.

How to Set Up This Next-Level Personal Home Dashboard in Your Kitchen

We saw Cameron’s impressive dashboard in a Grafana Experts Facebook group and asked him to break it down for us. When friends and visitors see my personal home dashboard in my kitchen, they’re normally of the opinion that it’s “really neat” and looks “impressive.” Often that’s what they take away from it. It’s “cool”… and as much as that may be true, that is not its purpose.

What's New in Loki v0.4.0

More frequent releases! We continue to march Loki towards the first GA release, and to help that process we are going to target bi-weekly to weekly releases, depending on changes. - Ed Welch 08/12/2019 My mistake, there was clearly a typo in my previous post, and when I said bi-weekly I clearly meant bi-monthly. ;) The good news, however, is that the project has been very busy and there are some very exciting new features in Loki v0.4.0!

What $24 Million Means for Our Open Source Community

This morning, we announced that Grafana Labs has raised $24 million in Series A funding. Here’s what that means for our open source community. Our company was established five years ago to accelerate the adoption of the Grafana project and to build a sustainable business around it, which could in turn help support the community.

Celebrating 5 Years of Grafana Labs Around the World

Grafana Labs turned 5 on Oct. 4. And as a remote-first company, we decided it would be a great excuse to give our team members, who are scattered across 22 different countries, a chance to take their conversations off Slack and celebrate together in person. In London, Berlin, Stockholm, New York City, and Bangalore, Grafana Labs engineers, sales teams, solutions staff, HR, and marketing – everyone! – gathered to meet and mingle, to reconnect and reminisce.

What's Next for Observability

In the industry, the long-held theory behind observability is that a successful stack consists of three key components – metrics, logging, and tracing. “This is a mental model for people who are often new to observability which helps them get a handle on what they need to implement to be successful,” said Grafana Labs VP of Product Tom Wilkie during a keynote presentation he delivered at KubeCon + CloudNativeCon EU in May alongside Red Hat Software Engineer Frederic Branczyk.

New in Grafana 6.4: The Logs Panel

At Grafana Labs, we are working to make it easier to visualize data that comes from many different sources and in many different ways. We know that our customers are usually using more than one system to track what’s going on within an infrastructure. If you are a system administrator, or even a curious developer, there is a very high probability that you are monitoring and quite regularly reviewing your logs to find valuable and important information in them.

What It's Like Working Remotely as a Junior Dev

I am a junior software engineer in Slovakia. I feel incredibly lucky that I’ve had this amazing opportunity to join Grafana Labs, as it was among the top companies that I’ve ever dreamed about working for. The only thing that I was slightly scared of was the fact that Grafana Labs is remote-first, and I would be working full-time from home.

How to Do Effective Infrastructure Monitoring for Linux with Grafana

Grafana Labs has 8+ clusters in GKE running 270 nodes of various sizes, and all the hosted metrics and hosted log Grafana Cloud offerings are run on 16-core, 64-gig machines. At the recent All Systems Go! conference in Berlin, David Kaltschmidt, Director, User Experience, gave a talk about what monitoring these clusters and servers looks like at Grafana Labs and shared some best practices.

New Resources for Contributors to the Grafana Project

Earlier this month, Ivana Huckova, one of Grafana’s junior developers, wrote an article about how to contribute to Grafana as a junior dev. As an open-source project supported by engineers around the world, Grafana strongly encourages anyone to contribute. And ICYMI, there are many opportunities to help: Testing the UI and reporting issues, finding and fixing bugs, and improving the documentation are just a few.

Grafana Labs at 5: How We Got Here and Where We're Going

In the beginning, there was a developer using Graphite, and he found its user interface lacking. Then he discovered the Kibana project, liked its UI, and forked it. Grafana was born in 2013. “I started Grafana to do something similar as Kibana, but focused on time series metrics. My goal was to make time series data accessible for a wider audience, to make it easier to build dashboards, to make graphs and dashboards more interactive,” says Torkel Ödegaard.

Deduping HA Prometheus Samples in Cortex

One of the best practices for running Prometheus in production environments is to use a highly available setup, in which multiple Prometheus instances all scrape the same targets. This means multiple instances have all your metrics data, so if one fails, the data is still available on another. Ideally, each instance would run on a separate machine.