Jun Tian
Jun Tian
Maybe we can borrow some ideas from [lab2d](https://github.com/deepmind/lab2d)
Currently the agent can see through walls by default.
For now, the `easy_hook` is only applied before the request, can we add another response hook so that we can get more info about the request in a hook? (like...
With Array in Julia, I can use `m[[CartesianIndex(1,1), CartesianIndex(2,1)]]` to get the required elements. But with the `Tensor` in `Torch.jl` I only get `ERROR: getindex not defined for Tensor{Float32,2}`
```julia julia> x = rand(2,3,4); julia> batch(x) |> size (24,) ``` It seems batch flatten the array here. I think it would make more sense to keep the array as...
Roadmap
- [x] API (`OpenTelemetryAPI.jl` under `src/api`) - [x] logging - [x] tracing - [x] metrics - [x] SDK (`OpenTelemetrySDK.jl` under `src/sdk`) - [x] tracing - [x] metrics - [x] Proto...
Request compression is not enabled by default in this package yet
After looking into the [official doc](https://prometheus.io/docs/prometheus/latest/storage/#overview) and the [python implementation](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/exporter/opentelemetry-exporter-prometheus-remote-write/src/opentelemetry/exporter/prometheus_remote_write/__init__.py), I think we have all the necessary components in the Julia world (proto, http, snappy). I personally do not have...