├── .gitignore ├── Dockerfile ├── README.md ├── config └── config.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── grafana-provisioning ├── dashboards │ ├── all-services.json │ └── default.yml └── datasources │ └── prometheus.yml ├── grafana.ini ├── interval.go ├── main.go ├── monitoring.go ├── prometheus.yml ├── services ├── connect │ └── bridge.go ├── dapps │ ├── dapp.go │ ├── dedust.go │ ├── getgems.go │ └── stonfi.go ├── dton │ └── graphql.go ├── http.go ├── models.go ├── public-config │ └── liteservers.go ├── tonapi │ └── monitoring.go ├── toncenter │ ├── v2.go │ └── v3.go └── tonhub │ └── v4.go ├── static └── index.html └── workers.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .env 3 | env.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/README.md -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/config/config.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/go.sum -------------------------------------------------------------------------------- /grafana-provisioning/dashboards/all-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/grafana-provisioning/dashboards/all-services.json -------------------------------------------------------------------------------- /grafana-provisioning/dashboards/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/grafana-provisioning/dashboards/default.yml -------------------------------------------------------------------------------- /grafana-provisioning/datasources/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/grafana-provisioning/datasources/prometheus.yml -------------------------------------------------------------------------------- /grafana.ini: -------------------------------------------------------------------------------- 1 | [server] 2 | root_url=https://tonstat.us 3 | -------------------------------------------------------------------------------- /interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/interval.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/main.go -------------------------------------------------------------------------------- /monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/monitoring.go -------------------------------------------------------------------------------- /prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/prometheus.yml -------------------------------------------------------------------------------- /services/connect/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/connect/bridge.go -------------------------------------------------------------------------------- /services/dapps/dapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/dapps/dapp.go -------------------------------------------------------------------------------- /services/dapps/dedust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/dapps/dedust.go -------------------------------------------------------------------------------- /services/dapps/getgems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/dapps/getgems.go -------------------------------------------------------------------------------- /services/dapps/stonfi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/dapps/stonfi.go -------------------------------------------------------------------------------- /services/dton/graphql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/dton/graphql.go -------------------------------------------------------------------------------- /services/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/http.go -------------------------------------------------------------------------------- /services/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/models.go -------------------------------------------------------------------------------- /services/public-config/liteservers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/public-config/liteservers.go -------------------------------------------------------------------------------- /services/tonapi/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/tonapi/monitoring.go -------------------------------------------------------------------------------- /services/toncenter/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/toncenter/v2.go -------------------------------------------------------------------------------- /services/toncenter/v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/toncenter/v3.go -------------------------------------------------------------------------------- /services/tonhub/v4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/services/tonhub/v4.go -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/static/index.html -------------------------------------------------------------------------------- /workers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonkeeper/api_monitoring_stats/HEAD/workers.go --------------------------------------------------------------------------------