853b655cf9
* Bug Fixes: + utils: show string errors + Viewers with viewers_can_edit should be able to access /explore + log phantomjs output even if it timeout and include orgId when render alert - Update to version 6.0.0: * Breaking Changes: + Text Panel: The text panel does no longer by default allow unsantizied HTML. This means that if you have text panels with scripts tags they will no longer work as before. To enable unsafe javascript execution in text panels enable the settings disable_sanitize_html under the section [panels] in your Grafana ini file, or set env variable GF_PANELS_DISABLE_SANITIZE_HTML=true. + Dashboard: Panel property minSpan replaced by maxPerRow. Dashboard migration will automatically migrate all dashboard panels using the minSpan property to the new maxPerRow property + Internal Metrics Edition has been added to the build_info metric. This will break any Graphite queries using this metric. Edition will be a new label for the Prometheus metric. * New Features: + Alerting: Adds support for Google Hangouts Chat notifications + Elasticsearch: Support bucket script pipeline aggregations + Influxdb: Add support for time zone (tz) clause + Snapshots: Enable deletion of public snapshot + Provisioning: Provisioning support for alert notifiers + Explore: A whole new way to do ad-hoc metric queries and exploration. Split view in half and compare metrics & logs and much much more. Read more here + Auth: Replace remember me cookie solution for Grafana's builtin, LDAP and OAuth authentication with a solution based on short-lived tokens + AzureMonitor: Enable alerting by converting Azure Monitor API to Go + Explore A new query focused workflow for ad-hoc data exploration and troubleshooting. + Grafana Loki Integration with the new open source log aggregation system from Grafana Labs. + Gauge Panel A new standalone panel for gauges. + New Panel Editor UX improves panel editing and enables easy switching between different visualizations. + Google Stackdriver Datasource is out of beta and is officially released. + React Plugin support enables an easier way to build plugins. OBS-URL: https://build.opensuse.org/package/show/server:monitoring/grafana?expand=0&rev=11 |
||
---|---|---|
_service | ||
_servicedata | ||
.gitattributes | ||
.gitignore | ||
grafana-6.0.1.tar.xz | ||
grafana-rpmlintrc | ||
grafana.changes | ||
grafana.spec | ||
Makefile | ||
README |
The tarball is generated via the OBS source service, but Grafana needs to ship the compiled frontend assets as well, which have to be built by running yarn and grunt inside the source tree (see https://github.com/grafana/grafana#building-frontend-assets). This can't be done at build time on OBS, because it involves downloading and installing packages from the internet, so instead we have a Makefile which does the following: - Runs `osc service disabledrun` to get the latest source tarball - Unpacks the tarball to a temporary directory - Runs `yarn install --pure-lockfile && grunt release` - Adds the generated "vendor" and "public" content to the tarball, then compresses it with xz. - The tarball can then be used by OBS to build an RPM. In order for this to work you need to have npm6, yarn and grunt installed. To get set up, run: # zypper in npm6 # npm install -g yarn # npm install -g grunt-cli Then, to package a new release of Grafana, run `make` then `osc ci` and you should be good. Please direct any questions to Tim Serong <tserong@suse.com>