Daniel Lee

Results 34 comments of Daniel Lee

It is possible to embed them as iframes. Is a little bit on the slow side.

Went with direct rendered images. Takes 2-3 seconds on grafana-monitor. More tweaking to do before I close this. ![image](https://cloud.githubusercontent.com/assets/434655/21360024/7e3ef52e-c6de-11e6-9f81-658121262170.png)

Question also asked on the community site. I'm answering there: https://community.grafana.com/t/kubernetes-app-for-grafana-not-able-to-connect-to-ds/2515

There is no way to change the limit unfortunately. We forked snap to get around this and just hacked in a higher limit. The proper way to fix it would...

Leader stats: `/v2/stats/leader` Follower stats with `/v2/stats/self` Example leader stats: ``` json { "leader": "54be60531c7f6892", "followers": { "3e0d82ced9501c94": { "latency": { "current": 0.00397, "average": 0.22196975104523, "standardDeviation": 8.8368979766015, "minimum": 0.00124, "maximum":...

Monitoring etcd with Prometheus blog post: https://coreos.com/blog/developing-prometheus-alerts-for-etcd.html

This is a tricky issue. For SqlServer index names only have to be unique per table but for Postgres they have to be unique per schema. Would it be a...

@dkozar have you made any changes to the data source? I tested with the latest version of the grafana-starter-datasource and `yarn build` worked fine. This is my package.json - it...

Usually this error would occur for minified code if an `@ngInject` annotation was missing for an Angular constructor. Example of a constructor: https://github.com/grafana/grafana/blob/main/public/app/plugins/datasource/postgres/query_ctrl.ts#L42 ``` /** @ngInject */ constructor( $scope: any,...