Martin Milesich
Martin Milesich
@xufei56789 You can use this tool https://crontab.guru/ to write any expression.
Somehow. You can try to set the REST API compatibility headers as described in [REST API compatibility](https://www.elastic.co/guide/en/elasticsearch/reference/8.2/rest-api-compatibility.html)
Is this issue referring to have multiple inner hits inside collapse? Because I was just looking for it.
I understood it exactly as @vitaliy-kravchenko. The `max_depth` option behaves as a limit to prevent mapping explosion.
I am using something like this. It is not gin but maybe you can modify it. In Kibana you would then see GraphQL request like `POST /graphql [userList]`. Non GraphQL...
You can use something like this. It would show months and weekdays in the browser locale: ```javascript var weekdays = []; for (var d = 7; d < 14; d++)...
@rokane You were looking at hour format for timezone part. eg. +13:00. The [spec for time format](https://github.com/unicode-org/cldr-json/blob/main/cldr-json/cldr-dates-full/main/en/ca-generic.json) for en locale is using 12h format: ``` "timeFormats": { "full": "h:mm:ss a...
@rokane you should not be fixing individual locales because those files are generated from the spec. The generator needs fixing. https://github.com/go-playground/locales/blob/master/cmd/generate_resources.go
```typescript const api = new Hono().basePath('/api'); const openapi = fromHono(api, { base: '' }); openapi.post('/register', Register); openapi.post('/login', Login); openapi.post('/logout', Logout); // Start a Hono app const app = new Hono();...
This is still na issue. To fix it the support would have to be added to the `updateRemoteConfig` method in https://github.com/elastic/apm-agent-go/blob/main/config.go#L413