Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,11 @@ jobs:
environment:
PUBSUB_EMULATOR_HOST: 0.0.0.0:8681
PUBSUB_PROJECT1: test-project,test-topic
- image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0
environment:
discovery.type: single-node
xpack.security.enabled: "false"
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
working_directory: ~/repo
steps:
- checkout
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,7 @@ ENV/
.vscode

# uv (https://docs.astral.sh/uv/)
uv.lock
uv.lock

# Sandbox
sandbox/
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,17 @@ services:
- transaction.state.log.min.isr=1
- --override
- auto.create.topics.enable=true

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- "9200:9200"
healthcheck:
test: ["CMD-SHELL", "curl -sf http://localhost:9200/_cluster/health || exit 1"]
interval: 10s
timeout: 5s
retries: 5
1 change: 1 addition & 0 deletions src/instana/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def boot_agent() -> None:
cassandra, # noqa: F401
celery, # noqa: F401
couchbase, # noqa: F401
elasticsearch, # noqa: F401
fastapi, # noqa: F401
flask, # noqa: F401
grpcio, # noqa: F401
Expand Down
Loading
Loading