You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cmd/loki-canary/main.go
+5-1
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,10 @@ func main() {
79
79
metricTestQueryRange:=flag.Duration("metric-test-range", 24*time.Hour, "The range value [24h] used in the metric test instant-query."+
80
80
" Note: this value is truncated to the running time of the canary until this value is reached")
81
81
82
+
cacheTestInterval:=flag.Duration("cache-test-interval", 15*time.Minute, "The interval the cache test query should be run")
83
+
cacheTestQueryRange:=flag.Duration("cache-test-range", 24*time.Hour, "The range value [24h] used in the cache test instant-query.")
84
+
cacheTestQueryNow:=flag.Duration("cache-test-now", 1*time.Hour, "duration how far back from current time the execution time (--now) should be set for running this query in the cache test instant-query.")
85
+
82
86
spotCheckInterval:=flag.Duration("spot-check-interval", 15*time.Minute, "Interval that a single result will be kept from sent entries and spot-checked against Loki, "+
83
87
"e.g. 15min default one entry every 15 min will be saved and then queried again every 15min until spot-check-max is reached")
84
88
spotCheckMax:=flag.Duration("spot-check-max", 4*time.Hour, "How far back to check a spot check entry before dropping it")
@@ -189,7 +193,7 @@ func main() {
189
193
_, _=fmt.Fprintf(os.Stderr, "Unable to create reader for Loki querier, check config: %s", err)
Copy file name to clipboardexpand all lines: docs/sources/reference/loki-http-api.md
+1
Original file line number
Diff line number
Diff line change
@@ -627,6 +627,7 @@ It accepts the following query parameters in the URL:
627
627
-`start`: The start time for the query as a nanosecond Unix epoch. Defaults to 6 hours ago.
628
628
-`end`: The end time for the query as a nanosecond Unix epoch. Defaults to now.
629
629
-`since`: A `duration` used to calculate `start` relative to `end`. If `end` is in the future, `start` is calculated as this duration before now. Any value specified for `start` supersedes this parameter.
630
+
-`query`: A set of log stream selector that selects the streams to match and return label names. Example: `{"app": "myapp", "environment": "dev"}`
630
631
631
632
In microservices mode, `/loki/api/v1/labels` is exposed by the querier.
Copy file name to clipboardexpand all lines: examples/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ You can use [Grafana Cloud](https://grafana.com/products/cloud/features/#cloud-l
8
8
9
9
## Getting started with Loki
10
10
11
-
Configuration files in the `getting-started` directory are used by the [Loki getting started guide](https://grafana.com/docs/loki/latest/getting-started/).
11
+
Configuration files in the `getting-started` directory are used by the [Loki getting started guide](https://grafana.com/docs/loki/latest/get-started/).
***operator:** Bump golang builder to 1.21.9 ([#12503](https://github.com/grafana/loki/issues/12503)) ([f680ee0](https://github.com/grafana/loki/commit/f680ee0453d1b7d315774591293927b988bca223))
14
+
***operator:** Configure Loki to use virtual-host-style URLs for S3 AWS endpoints ([#12469](https://github.com/grafana/loki/issues/12469)) ([0084262](https://github.com/grafana/loki/commit/0084262269f4e2cb94d04e0cc0d40e9666177f06))
15
+
***operator:** Improve validation of provided S3 storage configuration ([#12181](https://github.com/grafana/loki/issues/12181)) ([f9350d6](https://github.com/grafana/loki/commit/f9350d6415d45c3cc2f9c0b4f7cd6f8f219907f2))
16
+
***operator:** Use a minimum value for replay memory ceiling ([#13066](https://github.com/grafana/loki/issues/13066)) ([4f3ed77](https://github.com/grafana/loki/commit/4f3ed77cb92c2ffd605743237e609c28f7841728))
17
+
* update to build image 0.33.2, fixes bug with promtail windows DNS resolution ([#12732](https://github.com/grafana/loki/issues/12732)) ([759f42d](https://github.com/grafana/loki/commit/759f42dd50bb4896f5e568691ef32245bb8fb25a))
18
+
* updated all dockerfiles go1.22 ([#12708](https://github.com/grafana/loki/issues/12708)) ([71a8f2c](https://github.com/grafana/loki/commit/71a8f2c2b11b419bd8c0af1f859671e5d8730448))
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-controller-manager-metrics-reader_v1_serviceaccount.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-controller-manager-metrics-service_v1_service.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-controller-manager-metrics-token_v1_secret.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-controller-manager-read-metrics_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-metrics-monitor_monitoring.coreos.com_v1_servicemonitor.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-prometheus_rbac.authorization.k8s.io_v1_role.yaml
Copy file name to clipboardexpand all lines: operator/bundle/community-openshift/manifests/loki-operator-prometheus_rbac.authorization.k8s.io_v1_rolebinding.yaml
0 commit comments