Denis
Denis
Seems like it's simple as that https://github.com/zoubin/browserify-postcss Needs to be tested though.
@reflog it's slightly different. The issue you mentioned is about live reloading of the page in a browser. This issue is about hot component/store replacement in the client-side code and...
To summarise what we discussed with @cmacknz on a call: 1. I think we should detect whether the OS has journald in the agent and add a new variable in...
> I checked and did not find any replace directive, even before implementing the changes you requested... That was about https://github.com/elastic/beats/pull/38767#discussion_r1577363100 which you've already removed.
@belimawr There was an interface change https://github.com/elastic/elastic-agent-autodiscover/pull/89 made for this PR https://github.com/elastic/beats/pull/38571 which is still not merged to `main`. Therefore the CI build has the syntax errors now: ``` Error:...
@elastic/obs-infraobs-integrations could you have a look at the failing integration tests? ``` [2024-03-04T16:23:14.736Z] FAILED tests/system/test_modules.py::Test::test_fileset_file_047_iis - AssertionError: The following expected object doesn't match: [2024-03-04T16:23:14.736Z] Diff: [2024-03-04T16:23:14.736Z] {'dictionary_item_removed': [root['url.extension']]}, full object:...
Let's get it straight first: > Looking further into it, we see that when we are executing the bulk request and consuming the response we call the ioutil.ReadAll(resp.Body) which is...
I estimated how big of a change it would be: * `ioutil.ReadAll` currently has 40 affected files https://github.com/search?q=repo%3Aelastic%2Fbeats%20%22ioutil.ReadAll%22&type=code * `io.ReadAll` currently has 25 affected files https://github.com/search?q=repo%3Aelastic%2Fbeats+%22io.ReadAll%22&type=code * I created an...
Just realised that we need to fix this in the https://github.com/elastic/elastic-agent-libs repository too (10 files). * https://github.com/search?q=repo%3Aelastic%2Felastic-agent-libs%20ioutil.ReadAll&type=code * https://github.com/search?q=repo%3Aelastic%2Felastic-agent-libs+io.ReadAll&type=code
@alexsapran I was planning to contribute to Go itself replacing the `ReadAll` implementation there with the more efficient one. Then it's just updating to the next version and gaining all...