Jan Garaj

Results 95 comments of Jan Garaj

For the record: the same issue in another project - https://github.com/aws-observability/aws-otel-lambda/issues/271#issuecomment-1195804948

I use this config for ALB for OTLP/GRPC, which works like a charm: ``` TargetGroupGRPC: Type: AWS::ElasticLoadBalancingV2::TargetGroup Properties: VpcId: !Ref VpcId Port: 4317 Protocol: HTTP ProtocolVersion: GRPC HealthCheckIntervalSeconds: 5 HealthCheckPath:...

Your ALB target group needs better config with GRPC support, e.g.: ``` TargetGroup: Type: AWS::ElasticLoadBalancingV2::TargetGroup Properties: VpcId: !Ref VpcId Port: 4317 Protocol: HTTP ProtocolVersion: GRPC HealthCheckIntervalSeconds: 5 HealthCheckPath: / HealthCheckProtocol:...

@fishion You don't need API key, just proper auth. I created dirty demo code for Endomondo auth - https://gist.github.com/jangaraj/d5dffbabe692aeb6c5bbc09eb9ee538a It should be improved and merged with https://github.com/cpfair/tapiriik/blob/master/tapiriik/services/Endomondo/endomondo.py Let's make hands...

BTW: you can install/test fork (before fix will be merged), e.g. I keep build with the fix in the custom forked branch: ``` GF_INSTALL_PLUGINS=https://github.com/jangaraj/grafana-diagram/archive/v8-build.zip;jdbranham-diagram-panel ```

Yes, you are right. Let me fix it later. BTW: If you use dockbix-xxl, then regexps are created by startup script. https://github.com/monitoringartist/dockbix-xxl/blob/964c3efed0dc7b1b931ff9561580878195a1998b/Dockerfile/dockbix-xxl/container-files-dockbix-xxl/etc/zabbix/api/02-create-regular-expressions.sql

Tested with the latest builds and it works. Regexp are created: ![image](https://user-images.githubusercontent.com/1182932/57945920-5faf3680-78db-11e9-8113-64574643dd5a.png) Anyway, you can create them manually in `Administration->General->Regular expressions`

How did you mount files from "ZA_TLSPSKIdentity and ZA_TLSPSKFile"?

Please follow https://github.com/monitoringartist/dockbix-agent-xxl#support and provide all logs. Agent doesn't have TLS support compiled, so I'm curious why it is not failing.

There is no problem on Zabbix agent side. There is "wrapper" code, which prepares environment for Zabbix and it ignores any variables with prefix `ZA_TLS`. There were problems with TLS,...