All Projects → heiyhia → grafana-echarts-panel

heiyhia / grafana-echarts-panel

Licence: other
Grafana集成Echarts

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to grafana-echarts-panel

zabbix-monitor
monitor system based on zabbix API pyzaabix grafana
Stars: ✭ 70 (+42.86%)
Mutual labels:  grafana, echarts
gitops-k8s
Declarative pull-based GitOps repository representing the state of a Kubernetes cluster
Stars: ✭ 82 (+67.35%)
Mutual labels:  grafana
policy-reporter
Monitoring and Observability Tool for the PolicyReport CRD with an optional UI.
Stars: ✭ 140 (+185.71%)
Mutual labels:  grafana
grafana-redistimeseries
This project is deprecated in favor of https://github.com/RedisTimeSeries/grafana-redis-datasource
Stars: ✭ 19 (-61.22%)
Mutual labels:  grafana
gimlet-stack
Bootstrap curated Kubernetes stacks. Logging, metrics, ingress and more - delivered with gitops.
Stars: ✭ 12 (-75.51%)
Mutual labels:  grafana
bamboo-prometheus-exporter
Prometheus Exporter For Bamboo
Stars: ✭ 18 (-63.27%)
Mutual labels:  grafana
yesoreyeram-boomsummary-panel
Boom Summary Panel for Grafana
Stars: ✭ 14 (-71.43%)
Mutual labels:  grafana
formula1-telemetry-kafka
No description or website provided.
Stars: ✭ 99 (+102.04%)
Mutual labels:  grafana
puppeteer-assets
Measuring and monitor assets metrics using Puppeteer and Prometheus
Stars: ✭ 29 (-40.82%)
Mutual labels:  grafana
grafana-stack
Tiny docker images for graphite, grafana and statsdly
Stars: ✭ 28 (-42.86%)
Mutual labels:  grafana
go-tachart
Candlestick chart generator (with event mark and TA indicator) using go-echarts
Stars: ✭ 24 (-51.02%)
Mutual labels:  echarts
GithubProfile
Visualizing GitHub profile
Stars: ✭ 45 (-8.16%)
Mutual labels:  echarts
robusta
Open source Kubernetes monitoring, troubleshooting, and automation platform
Stars: ✭ 772 (+1475.51%)
Mutual labels:  grafana
solar-logger
A datalogger for a solar inverter. Stores data in influxdb and displays it in grafana. Has load diverting capability, to use the inverter's excess power
Stars: ✭ 53 (+8.16%)
Mutual labels:  grafana
Proton
High performance Pinba server
Stars: ✭ 27 (-44.9%)
Mutual labels:  grafana
camunda-prometheus-process-engine-plugin
Monitor your KPIs!!! Camunda BPM Process Engine Plugin providing Prometheus Monitoring, Metric classes for various BPMN use, Grafana Annotations, and HTTPServer data export: Used to generate Prometheus metrics anywhere in the Engine, including BPMN, CMN, and DMN engines and instances.
Stars: ✭ 48 (-2.04%)
Mutual labels:  grafana
sarjitsu
dockerized setup for visualizing System Activity Report (SAR) data.
Stars: ✭ 20 (-59.18%)
Mutual labels:  grafana
echarts-graph-modularity
Apache ECharts graph modularity extension for community detection
Stars: ✭ 62 (+26.53%)
Mutual labels:  echarts
grafana-csv-plugin
CSV datasource for Grafana 6.x.x / 7.x.x
Stars: ✭ 33 (-32.65%)
Mutual labels:  grafana
jbpm-spring-boot
Sample of a jbpm service with spring boot. It runs on OpenShift and it has prometheus metrics and a grafana dashboard
Stars: ✭ 16 (-67.35%)
Mutual labels:  grafana

Echarts Panel Plugin for Grafana

Grafana集成Echarts Grafana v4.1.x Echarts v4.0.x

中国地图

ES数据源

Metrics

Echarts option

option = {
	title : {
	
	},
	tooltip : {
		trigger: 'item'
	},
	legend: {
		orient: 'vertical',
		left: 'left'
	},
	visualMap: {
		min: 0,
		max: 2000,         
		calculable: true,
		color: ['red','orange','yellow','lightgreen','green']
	},
	series : [
		{
			type: 'map',
			mapType: 'china',
			hoverable: true,
			roam:true,
			itemStyle:{
				normal:{label:{show:true}, areaColor: '#edf2f1'},
				emphasis:{label:{show:true}, areaColor: '#06060f'}
			},
			mapLocation: {
				y: "center",
				x: "center",
				height: "320"
			},
			label: {
				normal: {
					show: true
				},
				emphasis: {
					show: true
				}
			},
			data: ctrl.data
		}
	]
};

效果图

自定义数据源

配置数据源 示例中URL返回数据格式如下

{"y": ["10", "100", "20", "12", "150"], "x": ["2018-01-01", "2018-01-02", "2018-01-03", "2018-01-04", "2018-01-05"]}

配置Echarts

效果图

插件安装

  • 将本实例clone到你的plugins目录后重新启动grafana服务即可

插件开发

附录

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].