百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
T

tessera

> 编程语言
开源

一个用于 Graphite 的仪表板前端。

1.2K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

一个用于 Graphite 的仪表板前端。

Tessera

Tessera is a front-end interface for the Graphite metrics system, which provides a large selection of presentations, layout, and interactivity options for building dashboards.

The biggest key differences between Tessera and other frontends are the separation of queries from presentations, and the ability to apply arbitrary transformations to the presentations & queries, allowing for a large degree of interactivity. Tessera is initially focused on information presentation - it does not NOT address the areas of metric discovery or query composition (although it may in the future).

Overview

Tessera consists of a small python webserver written with Flask with a SQL backing store. The server manages storing and searching for dashboards, managing tags for organization, serving the basic UI assets, and providing a ReST API for the front-end to use.

Dashboards are big lumps of JSON data describing the queries, presentations, and layout, wrapped in a small shell of SQL metadata. Most of the heavy lifting is done by the javascript front-end, which is responsible for all rendering, data fetching from graphite, and editing of dashboards.

Quick Start

From Docker

If you're familiar with docker and already have a Graphite instance running, you can boot up an instance of tessera with the demo dashboards preloaded and easily point it at your existing Graphite installation using the aalpern/tessera-simple image. If you don't have a Graphite installation handy, a Docker image like nickstenning/graphite can get that up and running quickly.

docker run -P -e GRAPHITE_URL=http://graphite.host -it aalpern/tessera-simple

From PyPi

Tessera can be installed easily from PyPi with pip or easy_install. This method of installation is only recommended for casual use.

pip install tessera

After installation, create a config.py script for your local settings.

Example config.py:

GRAPHITE_URL="http://graphite.example.com"
SECRET_KEY="adf71812-9d57-88d3-dfe8-1e9860d2b7ab"

Initialize the database:

TESSERA_CONFIG=/path/to/config.py tessera-init

Then launch the service:

TESSERA_CONFIG=/path/to/config.py tessera

The service will be available on localhost:5000 by default, with the demo dashoards loaded.

From Source

The TL;DR version:

./script/setup
./script/server &
cd tessera-server
inv json.import '../demo/*'

Documentation

Documentation is hosted on GitHub Pages at tessera-metrics.github.io/tessera/docs.

  • Getting Started for getting started and running from source and importing the demo dashboards.
  • Tutorial for creating the most basic possible dashboard.
  • API endpoints and data format for accessing Tessera via the HTTP REST API
  • Extending Tessera, for adding new dashboard items, transformations, and actions.

Some additional writeup of why Tessera exists can found on the introductory blog post that was originally posted on Urban Airship's company blog - Introducing Tessera, a Graphite Frontend.

Copyright & License

Copyright © 2014, Urban Airship and Contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

  • http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Third-party software libraries included with this project are distributed under their respective licenses.

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

TypeScriptdashboardgraphitemetricsmonitoring

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言