Paulin Todev

Results 71 issues of Paulin Todev

#### PR Description Upgrading to the latest Prometheus version - v0.54.1. I didn't add bugfixes to the changelog, because I'm not too sure which ones exactly affect Alloy. #### PR...

type/docs

### Request Alloy has some code to [set OTel feature gates explicitly](https://github.com/grafana/alloy/blob/main/internal/util/otel_feature_gate.go). There are also [tests](https://github.com/grafana/alloy/blob/main/internal/util/otel_feature_gate_test.go) to alert us if it is no longer necessary to set the feature gate...

enhancement
needs-attention

#### PR Description This PR fixes an issue which was [reported](https://grafana.slack.com/archives/C01050C3D8F/p1726136997279809) on the community slack. A person ran into this error when doing a config reload: ``` failed to register...

Those tests are flaky. I hope increasing the timeout will help.

#### PR Description Using an Alloy syntax identifiers restricts the sorts of labels that the SNMP exporter produces. For example, you cannot use `target "network-switch-1"` because identifiers can't contain a...

### Request Components persist data to a location on disk. The location is configured via the `--storage.path` [cmd arg](https://grafana.com/docs/alloy/latest/reference/cli/run/). It would be nice if there is a way to clean...

enhancement
needs-attention

It is sometimes useful to place the json schema in a file which may also contain other config. For example: ```yaml fields: not: used: by: json_schema: json_schema: ``` In the...

A `SetDefaults()` function would set the structure fields to their default values. It could be particularly useful for users of `mapstructure`. We could also have a `Validate()` function? I could...

Adding a toggle to not include the "omitempty" tag from generated struct fields. This could be useful if you're migrating an already existing codebase which doesn't use "omitempty" to go-jsonschema...

The typical way to generate a map with json schema seems to be: ```json "properties": { "myMap": { "type": "object", "additionalProperties": { "type": "number" } } } ``` However, this...