Skip to main content

54 posts tagged with "Primary Site"

Release notes for self-hosted Foxglove Primary Site Helm chart.

View All Tags

Primary Site v0.0.94

Added
  • Added the MULTIPART_COPY_PART_SIZE environment variable to the inbox listener to configure copy part size when transcoding completes.
  • Added the total_bytes_read_from_object_storage Prometheus metric to the query service
Fixed
  • Fixed etag handling when files in the lake bucket had been overwritten
  • Fixed etag mismatch logging error, now logs warning
  • Fixed index in place streaming by range being exclusive instead of inclusive

Docs: About | Install | Upgrade

Primary Site v0.0.91

Added
  • The indexer now supports indexing files in parallel.
  • The indexer now includes metadata & attachments when deriving the content hash for an MCAP file.
Fixed
  • Fixed a bug where the query server would return HTTP 500 instead of 404 when a quarantined file cannot be found.

Docs: About | Install | Upgrade

Primary Site v0.0.85

This primary site release adds JSON output to the query service root URL handler. This is useful to check that the site ingress is configured correctly.

Added
  • Added JSON output to the query server root handler.

Docs: About | Install | Upgrade

Primary Site v0.0.84

This primary site release adds an optional feature that will send health metrics to Foxglove.

These metrics are all Prometheus metrics generated by the Foxglove services in the chart (query-server, inbox-listener or indexer, and site-controller) as well as the new kube-state-metrics component that monitors the pods and deployments in your cluster's Foxglove namespace.

This feature can be disabled by setting the following in your values.yaml:

globals:
publishSiteMetrics: false
Added
  • Added new deployment for kube-state-metrics. This will monitor the Foxglove namespace and produce metrics about the health of pods.

    It can be disabled by updating your values.yaml file:

    kubeStateMetrics:
    enabled: false
  • The site-controller will now gather health metrics from the Foxglove namespace and send them to Foxglove. These metrics will be used to monitor the health of your deployment.

    It can be disabled by updating your values.yaml file:

    globals:
    publishSiteMetrics: false

Docs: About | Install | Upgrade