Ben Keil

Results 49 comments of Ben Keil

We wanted to enrich the group data with data our company doesn't save at all at the moment. We decided to create a new Entity `GroupInfo` and put it in...

```rust pub fn init_meter(registry: &Registry) -> Result { let exporter = opentelemetry_prometheus::exporter() .with_registry(registry.clone()) .build() .map_err(|_| ControllerError::ConfigurationError)?; let provider = MeterProvider::builder().with_reader(exporter).build(); // Ok(provider.meter("github-operator")) Ok(provider.versioned_meter( "github-operator", Some("0.1.0"), Some("0.1.0"), Some(vec![ KeyValue::new( "environment".to_string(), std::env::var("APP_ENVIRONMENT").unwrap_or("local".into()),...

I tried to setup a new test repo but everything worked. In the original repo I tried to invalidate caches, but no success. Then I deleted the `.idea` folder and...

I only get it to work when I use my PAT in the `actions/checkout@v4` and the `cycjimmy/semantic-release-action@v4` actions. ci.yaml ```yaml name: ci on: push: branches: [ main ] jobs: ci:...

I‘m not deep enough in the topic to be honest. I also don’t know what a User really wants. min the other hand, I expect the effort is not very...

The predicate needs to return a boolean and I don't know how to write it in a way that the flux returns a boolean.