Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A Python package used to install and enroll the Elastic Agent on multiple operating systems. Created using carcass
A python package to install and enroll an Elastic Agent on multiple host operating systems.
In order to use this package you must configure general settings for your environment. Here is an example of the configuration options:
from elastic_agent_setup import ElasticAgent
agent = ElasticAgent()
agent.configure(
username='admin',
password='some_password'
elasticsearch='https://elasticsearch:9200',
kibana='https://kibana:5601',
certificate_authority=None,
verify_ssl=True
)
Once you have configured the elastic-agent-setup
package you can either install
or enroll
your elastic-agent.
Please see Elatics documentation on the differences between enrolling and installing an agent.
Here is an example of installing an Elastic Agent:
from elastic_agent_setup import ElasticAgent
agent = ElasticAgent()
agent.configure(
username='admin',
password='some_password'
elasticsearch='https://elasticsearch:9200',
kibana='https://kibana:5601',
certificate_authority=None,
verify_ssl=True
)
response = agent.install(
version='7.12.1,
preflight_check=True
)
print(response)
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
A Python package used to install and enroll the Elastic Agent on multiple operating systems. Created using carcass
We found that elastic-agent-setup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.