├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── new-content-needed.md │ ├── typo.md │ ├── website-issue.md │ └── wrong-information-code-steps.md ├── holopin.yml ├── iac │ └── swa │ │ ├── azure.yaml │ │ ├── infra │ │ ├── abbreviations.json │ │ ├── core │ │ │ └── host │ │ │ │ └── staticwebsite.bicep │ │ ├── main.bicep │ │ ├── main.parameters.json │ │ └── security │ │ │ ├── lockRg.bicep │ │ │ └── userAssignedIdentity.bicep │ │ ├── readme.md │ │ └── scripts │ │ ├── deploy.ps1 │ │ └── deploy.sh ├── pull_request_template.md ├── scripts │ └── automerge.py └── workflows │ ├── dapr-automerge.yml │ ├── dapr-bot.yml │ ├── link_validation.yaml │ ├── stale-pr-monitor.yml │ ├── website-root.yml │ └── website-v1-16.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── daprdocs ├── .gitignore ├── archetypes │ └── default.md ├── assets │ ├── icons │ │ ├── logo-black.svg │ │ ├── logo-blue.svg │ │ ├── logo.png │ │ └── logo.svg │ ├── js │ │ └── search.js │ └── scss │ │ ├── _content.scss │ │ ├── _nav.scss │ │ └── _variables_project.scss ├── content │ └── en │ │ ├── _index.md │ │ ├── concepts │ │ ├── _index.md │ │ ├── building-blocks-concept.md │ │ ├── components-concept.md │ │ ├── configuration-concept.md │ │ ├── dapr-services │ │ │ ├── _index.md │ │ │ ├── operator.md │ │ │ ├── placement.md │ │ │ ├── scheduler.md │ │ │ ├── sentry.md │ │ │ ├── sidecar-injector.md │ │ │ └── sidecar.md │ │ ├── faq │ │ │ ├── _index.md │ │ │ ├── faq.md │ │ │ └── service-mesh.md │ │ ├── isolation-concept.md │ │ ├── observability-concept.md │ │ ├── overview.md │ │ ├── resiliency-concept.md │ │ ├── security-concept.md │ │ └── terminology.md │ │ ├── contributing │ │ ├── _index.md │ │ ├── codespaces.md │ │ ├── contributing-overview.md │ │ ├── dapr-agents.md │ │ ├── daprbot.md │ │ ├── docs-contrib │ │ │ ├── _index.md │ │ │ ├── contributing-docs.md │ │ │ ├── docs-templates │ │ │ │ ├── _index.md │ │ │ │ ├── concept-template.md │ │ │ │ ├── howto-template.md │ │ │ │ └── quickstart-template.md │ │ │ └── maintainer-guide.md │ │ ├── presentations.md │ │ ├── roadmap.md │ │ └── sdk-contrib │ │ │ └── _index.md │ │ ├── developing-applications │ │ ├── _index.md │ │ ├── building-blocks │ │ │ ├── _index.md │ │ │ ├── actors │ │ │ │ ├── _index.md │ │ │ │ ├── actor-reentrancy.md │ │ │ │ ├── actors-features-concepts.md │ │ │ │ ├── actors-overview.md │ │ │ │ ├── actors-runtime-config.md │ │ │ │ ├── actors-timers-reminders.md │ │ │ │ ├── howto-actors-partitioning.md │ │ │ │ ├── howto-actors.md │ │ │ │ └── namespaced-actors.md │ │ │ ├── bindings │ │ │ │ ├── _index.md │ │ │ │ ├── bindings-overview.md │ │ │ │ ├── howto-bindings.md │ │ │ │ └── howto-triggers.md │ │ │ ├── configuration │ │ │ │ ├── _index.md │ │ │ │ ├── configuration-api-overview.md │ │ │ │ └── howto-manage-configuration.md │ │ │ ├── conversation │ │ │ │ ├── _index.md │ │ │ │ ├── conversation-overview.md │ │ │ │ └── howto-conversation-layer.md │ │ │ ├── cryptography │ │ │ │ ├── _index.md │ │ │ │ ├── cryptography-overview.md │ │ │ │ └── howto-cryptography.md │ │ │ ├── distributed-lock │ │ │ │ ├── _index.md │ │ │ │ ├── distributed-lock-api-overview.md │ │ │ │ └── howto-use-distributed-lock.md │ │ │ ├── jobs │ │ │ │ ├── _index.md │ │ │ │ ├── howto-schedule-and-handle-triggered-jobs.md │ │ │ │ ├── jobs-features-concepts.md │ │ │ │ └── jobs-overview.md │ │ │ ├── pubsub │ │ │ │ ├── _index.md │ │ │ │ ├── howto-namespace.md │ │ │ │ ├── howto-publish-subscribe.md │ │ │ │ ├── howto-route-messages.md │ │ │ │ ├── howto-subscribe-statefulset.md │ │ │ │ ├── pubsub-bulk.md │ │ │ │ ├── pubsub-cloudevents.md │ │ │ │ ├── pubsub-deadletter.md │ │ │ │ ├── pubsub-message-ttl.md │ │ │ │ ├── pubsub-overview.md │ │ │ │ ├── pubsub-raw.md │ │ │ │ ├── pubsub-scopes.md │ │ │ │ └── subscription-methods.md │ │ │ ├── secrets │ │ │ │ ├── _index.md │ │ │ │ ├── howto-secrets.md │ │ │ │ ├── secrets-overview.md │ │ │ │ └── secrets-scopes.md │ │ │ ├── service-invocation │ │ │ │ ├── _index.md │ │ │ │ ├── howto-invoke-discover-services.md │ │ │ │ ├── howto-invoke-non-dapr-endpoints.md │ │ │ │ ├── howto-invoke-services-grpc.md │ │ │ │ ├── service-invocation-namespaces.md │ │ │ │ └── service-invocation-overview.md │ │ │ ├── state-management │ │ │ │ ├── _index.md │ │ │ │ ├── howto-encrypt-state.md │ │ │ │ ├── howto-get-save-state.md │ │ │ │ ├── howto-outbox.md │ │ │ │ ├── howto-share-state.md │ │ │ │ ├── howto-state-query-api.md │ │ │ │ ├── howto-stateful-service.md │ │ │ │ ├── query-api-examples │ │ │ │ │ ├── components │ │ │ │ │ │ ├── mongodb │ │ │ │ │ │ │ └── mongodb.yml │ │ │ │ │ │ └── redis │ │ │ │ │ │ │ └── redis.yml │ │ │ │ │ ├── dataset.json │ │ │ │ │ ├── query1.json │ │ │ │ │ ├── query2.json │ │ │ │ │ ├── query3-token.json │ │ │ │ │ └── query3.json │ │ │ │ ├── query-state-store │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── query-cosmosdb-store.md │ │ │ │ │ ├── query-redis-store.md │ │ │ │ │ └── query-sqlserver-store.md │ │ │ │ ├── state-management-overview.md │ │ │ │ └── state-store-ttl.md │ │ │ └── workflow │ │ │ │ ├── _index.md │ │ │ │ ├── howto-author-workflow.md │ │ │ │ ├── howto-manage-workflow.md │ │ │ │ ├── workflow-architecture.md │ │ │ │ ├── workflow-features-concepts.md │ │ │ │ ├── workflow-multi-app.md │ │ │ │ ├── workflow-overview.md │ │ │ │ └── workflow-patterns.md │ │ ├── dapr-agents │ │ │ ├── _index.md │ │ │ ├── dapr-agents-core-concepts.md │ │ │ ├── dapr-agents-getting-started.md │ │ │ ├── dapr-agents-integrations.md │ │ │ ├── dapr-agents-introduction.md │ │ │ ├── dapr-agents-patterns.md │ │ │ ├── dapr-agents-quickstarts.md │ │ │ └── dapr-agents-why.md │ │ ├── debugging │ │ │ ├── _index.md │ │ │ ├── debug-k8s │ │ │ │ ├── _index.md │ │ │ │ ├── debug-dapr-services.md │ │ │ │ └── debug-daprd.md │ │ │ └── debugging-docker-compose.md │ │ ├── develop-components │ │ │ ├── _index.md │ │ │ ├── develop-middleware.md │ │ │ └── pluggable-components │ │ │ │ ├── _index.md │ │ │ │ ├── develop-pluggable.md │ │ │ │ ├── pluggable-components-overview.md │ │ │ │ └── pluggable-components-sdks │ │ │ │ └── _index.md │ │ ├── error-codes │ │ │ ├── _index.md │ │ │ ├── error-codes-reference.md │ │ │ ├── errors-overview.md │ │ │ ├── grpc-error-codes.md │ │ │ └── http-error-codes.md │ │ ├── integrations │ │ │ ├── AWS │ │ │ │ ├── _index.md │ │ │ │ └── authenticating-aws.md │ │ │ ├── Azure │ │ │ │ ├── _index.md │ │ │ │ ├── azure-api-management.md │ │ │ │ ├── azure-authentication │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── authenticating-azure.md │ │ │ │ │ ├── howto-aad.md │ │ │ │ │ ├── howto-mi.md │ │ │ │ │ └── howto-wif.md │ │ │ │ ├── azure-functions.md │ │ │ │ └── azure-kubernetes-service-extension.md │ │ │ ├── Diagrid │ │ │ │ ├── _index.md │ │ │ │ └── diagrid-conductor.md │ │ │ ├── _index.md │ │ │ ├── argo-cd.md │ │ │ ├── autoscale-keda.md │ │ │ ├── github_actions.md │ │ │ ├── kratix-marketplace.md │ │ │ └── kubernetes-operator.md │ │ ├── local-development │ │ │ ├── _index.md │ │ │ ├── gRPC-integration.md │ │ │ ├── ides │ │ │ │ ├── _index.md │ │ │ │ ├── intellij.md │ │ │ │ └── vscode │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── vscode-dapr-extension.md │ │ │ │ │ ├── vscode-how-to-debug-multiple-dapr-apps.md │ │ │ │ │ └── vscode-remote-dev-containers.md │ │ │ ├── multi-app-dapr-run │ │ │ │ ├── _index.md │ │ │ │ ├── multi-app-overview.md │ │ │ │ └── multi-app-template.md │ │ │ └── sdk-serialization.md │ │ └── sdks │ │ │ └── _index.md │ │ ├── getting-started │ │ ├── _index.md │ │ ├── get-started-api.md │ │ ├── install-dapr-cli.md │ │ ├── install-dapr-selfhost.md │ │ ├── quickstarts │ │ │ ├── _index.md │ │ │ ├── actors-quickstart.md │ │ │ ├── bindings-quickstart.md │ │ │ ├── configuration-quickstart.md │ │ │ ├── conversation-quickstart.md │ │ │ ├── cryptography-quickstart.md │ │ │ ├── jobs-quickstart.md │ │ │ ├── pubsub-quickstart.md │ │ │ ├── resiliency │ │ │ │ ├── _index.md │ │ │ │ ├── resiliency-serviceinvo-quickstart.md │ │ │ │ └── resiliency-state-quickstart.md │ │ │ ├── secrets-quickstart.md │ │ │ ├── serviceinvocation-quickstart.md │ │ │ ├── statemanagement-quickstart.md │ │ │ └── workflow-quickstart.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ ├── configure-state-pubsub.md │ │ │ └── get-started-component.md │ │ ├── operations │ │ ├── _index.md │ │ ├── components │ │ │ ├── _index.md │ │ │ ├── certification-lifecycle.md │ │ │ ├── component-scopes.md │ │ │ ├── component-secrets.md │ │ │ ├── component-updates.md │ │ │ ├── middleware.md │ │ │ ├── pluggable-components-registration.md │ │ │ ├── setup-bindings.md │ │ │ ├── setup-pubsub │ │ │ │ ├── _index.md │ │ │ │ └── pubsub-namespaces.md │ │ │ ├── setup-secret-store.md │ │ │ └── setup-state-store.md │ │ ├── configuration │ │ │ ├── _index.md │ │ │ ├── api-allowlist.md │ │ │ ├── configuration-overview.md │ │ │ ├── control-concurrency.md │ │ │ ├── environment-variables-secrets.md │ │ │ ├── grpc.md │ │ │ ├── increase-read-buffer-size.md │ │ │ ├── increase-request-size.md │ │ │ ├── install-certificates.md │ │ │ ├── invoke-allowlist.md │ │ │ ├── preview-features.md │ │ │ └── secret-scope.md │ │ ├── hosting │ │ │ ├── _index.md │ │ │ ├── kubernetes │ │ │ │ ├── _index.md │ │ │ │ ├── cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── setup-aks.md │ │ │ │ │ ├── setup-eks.md │ │ │ │ │ ├── setup-gke.md │ │ │ │ │ ├── setup-kind.md │ │ │ │ │ └── setup-minikube.md │ │ │ │ ├── kubernetes-dapr-shared.md │ │ │ │ ├── kubernetes-deploy.md │ │ │ │ ├── kubernetes-hybrid-clusters.md │ │ │ │ ├── kubernetes-job.md │ │ │ │ ├── kubernetes-overview.md │ │ │ │ ├── kubernetes-persisting-scheduler.md │ │ │ │ ├── kubernetes-production.md │ │ │ │ ├── kubernetes-upgrade.md │ │ │ │ └── kubernetes-volume-mounts.md │ │ │ ├── self-hosted │ │ │ │ ├── _index.md │ │ │ │ ├── self-hosted-airgap.md │ │ │ │ ├── self-hosted-no-docker.md │ │ │ │ ├── self-hosted-overview.md │ │ │ │ ├── self-hosted-persisting-scheduler.md │ │ │ │ ├── self-hosted-uninstall.md │ │ │ │ ├── self-hosted-upgrade.md │ │ │ │ ├── self-hosted-with-docker.md │ │ │ │ └── self-hosted-with-podman.md │ │ │ └── serverless │ │ │ │ ├── _index.md │ │ │ │ └── azure-container-apps │ │ │ │ ├── azure-container-apps-microservices-dapr.png │ │ │ │ └── index.md │ │ ├── observability │ │ │ ├── _index.md │ │ │ ├── logging │ │ │ │ ├── _index.md │ │ │ │ ├── fluentd.md │ │ │ │ ├── logs.md │ │ │ │ └── newrelic.md │ │ │ ├── metrics │ │ │ │ ├── _index.md │ │ │ │ ├── azure-monitor.md │ │ │ │ ├── grafana.md │ │ │ │ ├── metrics-overview.md │ │ │ │ ├── newrelic.md │ │ │ │ └── prometheus.md │ │ │ └── tracing │ │ │ │ ├── _index.md │ │ │ │ ├── dash0.md │ │ │ │ ├── datadog.md │ │ │ │ ├── newrelic.md │ │ │ │ ├── otel-collector │ │ │ │ ├── _index.md │ │ │ │ ├── open-telemetry-collector-appinsights.md │ │ │ │ ├── open-telemetry-collector-dynatrace.md │ │ │ │ ├── open-telemetry-collector-jaeger.md │ │ │ │ └── open-telemetry-collector.md │ │ │ │ ├── setup-tracing.md │ │ │ │ ├── tracing-overview.md │ │ │ │ ├── w3c-tracing-overview.md │ │ │ │ └── zipkin.md │ │ ├── performance-and-scalability │ │ │ ├── _index.md │ │ │ ├── perf-actors-activation.md │ │ │ ├── perf-longhaul.md │ │ │ └── perf-service-invocation.md │ │ ├── resiliency │ │ │ ├── _index.md │ │ │ ├── health-checks │ │ │ │ ├── _index.md │ │ │ │ ├── app-health.md │ │ │ │ └── sidecar-health.md │ │ │ ├── policies.md │ │ │ ├── policies │ │ │ │ ├── _index.md │ │ │ │ ├── circuit-breakers.md │ │ │ │ ├── default-policies.md │ │ │ │ ├── retries │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── override-default-retries.md │ │ │ │ │ └── retries-overview.md │ │ │ │ └── timeouts.md │ │ │ ├── resiliency-overview.md │ │ │ └── targets.md │ │ ├── security │ │ │ ├── _index.md │ │ │ ├── api-token.md │ │ │ ├── app-api-token.md │ │ │ ├── mtls.md │ │ │ └── oauth.md │ │ ├── support │ │ │ ├── _index.md │ │ │ ├── alpha-beta-apis.md │ │ │ ├── breaking-changes-and-deprecations.md │ │ │ ├── support-preview-features.md │ │ │ ├── support-release-policy.md │ │ │ ├── support-security-issues.md │ │ │ └── support-versioning.md │ │ └── troubleshooting │ │ │ ├── _index.md │ │ │ ├── api-logs-troubleshooting.md │ │ │ ├── common_issues.md │ │ │ ├── logs-troubleshooting.md │ │ │ └── profiling-debugging.md │ │ └── reference │ │ ├── _index.md │ │ ├── api │ │ ├── _index.md │ │ ├── actors_api.md │ │ ├── bindings_api.md │ │ ├── configuration_api.md │ │ ├── conversation_api.md │ │ ├── cryptography_api.md │ │ ├── distributed_lock_api.md │ │ ├── health_api.md │ │ ├── jobs_api.md │ │ ├── metadata_api.md │ │ ├── placement_api.md │ │ ├── pubsub_api.md │ │ ├── secrets_api.md │ │ ├── service_invocation_api.md │ │ ├── state_api.md │ │ └── workflow_api.md │ │ ├── arguments-annotations-overview.md │ │ ├── cli │ │ ├── _index.md │ │ ├── cli-overview.md │ │ ├── dapr-annotate.md │ │ ├── dapr-build-info.md │ │ ├── dapr-completion.md │ │ ├── dapr-components.md │ │ ├── dapr-configurations.md │ │ ├── dapr-dashboard.md │ │ ├── dapr-help.md │ │ ├── dapr-init.md │ │ ├── dapr-invoke.md │ │ ├── dapr-list.md │ │ ├── dapr-logs.md │ │ ├── dapr-mtls │ │ │ ├── _index.md │ │ │ ├── dapr-mtls-expiry.md │ │ │ ├── dapr-mtls-export.md │ │ │ └── dapr-mtls-renew-certificate.md │ │ ├── dapr-publish.md │ │ ├── dapr-run.md │ │ ├── dapr-scheduler.md │ │ ├── dapr-status.md │ │ ├── dapr-stop.md │ │ ├── dapr-uninstall.md │ │ ├── dapr-upgrade.md │ │ ├── dapr-version.md │ │ └── dapr-workflow.md │ │ ├── components-reference │ │ ├── _index.md │ │ ├── supported-bindings │ │ │ ├── _index.md │ │ │ ├── alicloud-dingtalk.md │ │ │ ├── alicloudoss.md │ │ │ ├── alicloudsls.md │ │ │ ├── alicloudtablestore.md │ │ │ ├── apns.md │ │ │ ├── blobstorage.md │ │ │ ├── cloudflare-queues.md │ │ │ ├── commercetools.md │ │ │ ├── cosmosdb.md │ │ │ ├── cosmosdbgremlinapi.md │ │ │ ├── cron.md │ │ │ ├── dubbo.md │ │ │ ├── dynamodb.md │ │ │ ├── eventgrid.md │ │ │ ├── eventhubs.md │ │ │ ├── gcpbucket.md │ │ │ ├── gcppubsub.md │ │ │ ├── graghql.md │ │ │ ├── http.md │ │ │ ├── huawei-obs.md │ │ │ ├── influxdb.md │ │ │ ├── kafka.md │ │ │ ├── kinesis.md │ │ │ ├── kitex.md │ │ │ ├── kubemq.md │ │ │ ├── kubernetes-binding.md │ │ │ ├── localstorage.md │ │ │ ├── mqtt3.md │ │ │ ├── mysql.md │ │ │ ├── openai.md │ │ │ ├── postgresql.md │ │ │ ├── postmark.md │ │ │ ├── rabbitmq.md │ │ │ ├── redis.md │ │ │ ├── rethinkdb.md │ │ │ ├── rocketmq.md │ │ │ ├── s3.md │ │ │ ├── sendgrid.md │ │ │ ├── servicebusqueues.md │ │ │ ├── ses.md │ │ │ ├── sftp.md │ │ │ ├── signalr.md │ │ │ ├── smtp.md │ │ │ ├── sns.md │ │ │ ├── sqs.md │ │ │ ├── storagequeues.md │ │ │ ├── twilio.md │ │ │ ├── wasm.md │ │ │ ├── zeebe-command.md │ │ │ └── zeebe-jobworker.md │ │ ├── supported-configuration-stores │ │ │ ├── _index.md │ │ │ ├── azure-appconfig-configuration-store.md │ │ │ ├── postgresql-configuration-store.md │ │ │ └── redis-configuration-store.md │ │ ├── supported-conversation │ │ │ ├── _index.md │ │ │ ├── anthropic.md │ │ │ ├── aws-bedrock.md │ │ │ ├── deepseek.md │ │ │ ├── googleai.md │ │ │ ├── hugging-face.md │ │ │ ├── local-echo.md │ │ │ ├── mistral.md │ │ │ ├── ollama.md │ │ │ └── openai.md │ │ ├── supported-cryptography │ │ │ ├── _index.md │ │ │ ├── azure-key-vault.md │ │ │ ├── json-web-key-sets.md │ │ │ ├── kubernetes-secrets.md │ │ │ └── local-storage.md │ │ ├── supported-locks │ │ │ ├── _index.md │ │ │ └── redis-lock.md │ │ ├── supported-middleware │ │ │ ├── _index.md │ │ │ ├── middleware-bearer.md │ │ │ ├── middleware-oauth2.md │ │ │ ├── middleware-oauth2clientcredentials.md │ │ │ ├── middleware-opa.md │ │ │ ├── middleware-rate-limit.md │ │ │ ├── middleware-routeralias.md │ │ │ ├── middleware-routerchecker.md │ │ │ ├── middleware-sentinel.md │ │ │ ├── middleware-uppercase.md │ │ │ └── middleware-wasm.md │ │ ├── supported-name-resolution │ │ │ ├── _index.md │ │ │ ├── nr-awscloudmap.md │ │ │ ├── nr-kubernetes.md │ │ │ ├── nr-mdns.md │ │ │ ├── nr-nameformat.md │ │ │ ├── nr-sqlite.md │ │ │ └── setup-nr-consul.md │ │ ├── supported-pubsub │ │ │ ├── _index.md │ │ │ ├── setup-apache-kafka.md │ │ │ ├── setup-aws-snssqs.md │ │ │ ├── setup-azure-eventhubs.md │ │ │ ├── setup-azure-servicebus-queues.md │ │ │ ├── setup-azure-servicebus-topics.md │ │ │ ├── setup-gcp-pubsub.md │ │ │ ├── setup-inmemory.md │ │ │ ├── setup-jetstream.md │ │ │ ├── setup-kubemq.md │ │ │ ├── setup-mqtt.md │ │ │ ├── setup-mqtt3.md │ │ │ ├── setup-pulsar.md │ │ │ ├── setup-rabbitmq.md │ │ │ ├── setup-redis-pubsub.md │ │ │ ├── setup-rocketmq.md │ │ │ └── setup-solace-amqp.md │ │ ├── supported-secret-stores │ │ │ ├── _index.md │ │ │ ├── alicloud-oos-parameter-store.md │ │ │ ├── aws-parameter-store.md │ │ │ ├── aws-secret-manager.md │ │ │ ├── azure-keyvault.md │ │ │ ├── envvar-secret-store.md │ │ │ ├── file-secret-store.md │ │ │ ├── gcp-secret-manager.md │ │ │ ├── hashicorp-vault.md │ │ │ ├── huaweicloud-csms.md │ │ │ ├── kubernetes-secret-store.md │ │ │ └── tencentcloud-ssm.md │ │ └── supported-state-stores │ │ │ ├── _index.md │ │ │ ├── setup-aerospike.md │ │ │ ├── setup-alicloud-tablestore.md │ │ │ ├── setup-azure-blobstorage.md │ │ │ ├── setup-azure-cosmosdb.md │ │ │ ├── setup-azure-tablestorage.md │ │ │ ├── setup-cassandra.md │ │ │ ├── setup-cloudflare-workerskv.md │ │ │ ├── setup-cockroachdb.md │ │ │ ├── setup-coherence.md │ │ │ ├── setup-consul.md │ │ │ ├── setup-couchbase.md │ │ │ ├── setup-dynamodb.md │ │ │ ├── setup-etcd.md │ │ │ ├── setup-firestore.md │ │ │ ├── setup-hazelcast.md │ │ │ ├── setup-inmemory.md │ │ │ ├── setup-jetstream-kv.md │ │ │ ├── setup-memcached.md │ │ │ ├── setup-mongodb.md │ │ │ ├── setup-mysql.md │ │ │ ├── setup-oci-objectstorage.md │ │ │ ├── setup-oracledatabase.md │ │ │ ├── setup-postgresql-v1.md │ │ │ ├── setup-postgresql-v2.md │ │ │ ├── setup-redis.md │ │ │ ├── setup-rethinkdb.md │ │ │ ├── setup-sqlite.md │ │ │ ├── setup-sqlserver.md │ │ │ └── setup-zookeeper.md │ │ ├── environment │ │ └── _index.md │ │ └── resource-specs │ │ ├── _index.md │ │ ├── component-schema.md │ │ ├── configuration-schema.md │ │ ├── httpendpoints-schema.md │ │ ├── resiliency-schema.md │ │ └── subscription-schema.md ├── data │ └── components │ │ ├── bindings │ │ ├── alibaba.yaml │ │ ├── aws.yaml │ │ ├── azure.yaml │ │ ├── cloudflare.yaml │ │ ├── gcp.yaml │ │ ├── generic.yaml │ │ └── zeebe.yaml │ │ ├── configuration_stores │ │ ├── azure.yaml │ │ └── generic.yaml │ │ ├── conversation │ │ ├── aws.yaml │ │ └── generic.yaml │ │ ├── cryptography │ │ ├── azure.yaml │ │ └── daprcryptoengine.yaml │ │ ├── locks │ │ └── generic.yaml │ │ ├── middleware │ │ └── http.yaml │ │ ├── name_resolution │ │ ├── aws.yaml │ │ ├── generic.yaml │ │ ├── kubernetes.yaml │ │ └── selfhosted.yaml │ │ ├── pubsub │ │ ├── aws.yaml │ │ ├── azure.yaml │ │ ├── gcp.yaml │ │ └── generic.yaml │ │ ├── secret_stores │ │ ├── alibaba.yaml │ │ ├── aws.yaml │ │ ├── azure.yaml │ │ ├── gcp.yaml │ │ ├── generic.yaml │ │ ├── huaweicloud.yaml │ │ └── tencentcloud.yaml │ │ └── state_stores │ │ ├── alicloud.yaml │ │ ├── aws.yaml │ │ ├── azure.yaml │ │ ├── cloudflare.yaml │ │ ├── gcp.yaml │ │ ├── generic.yaml │ │ └── oracle.yaml ├── layouts │ ├── _partials │ │ ├── components │ │ │ ├── bindings.html │ │ │ ├── componenttoc.html │ │ │ ├── configuration-stores.html │ │ │ ├── conversation.html │ │ │ ├── cryptography.html │ │ │ ├── description.html │ │ │ ├── locks.html │ │ │ ├── middleware.html │ │ │ ├── name-resolution.html │ │ │ ├── pubsub.html │ │ │ ├── secret-stores.html │ │ │ └── state-stores.html │ │ ├── feedback.html │ │ ├── footer.html │ │ ├── hooks │ │ │ ├── body-end.html │ │ │ └── head-end.html │ │ ├── navbar.html │ │ ├── page-meta-links.html │ │ ├── search-input.html │ │ ├── section-index.html │ │ └── version-banner.html │ ├── _shortcodes │ │ ├── button.html │ │ ├── dapr-latest-version.html │ │ ├── partial.html │ │ └── table.html │ └── docs │ │ └── list.html ├── static │ ├── code │ │ ├── contributing-1.py │ │ ├── contributing-2.py │ │ └── workflow.json │ ├── docs │ │ ├── Dapr-february-2021-security-audit-report.pdf │ │ ├── Dapr-july-2020-security-audit-report.pdf │ │ ├── Dapr-june-2023-fuzzing-audit-report.pdf │ │ ├── Dapr-september-2023-security-audit-report.pdf │ │ ├── actor-dashboard.json │ │ ├── azm-config-map.yaml │ │ ├── fluentd-config-map.yaml │ │ ├── fluentd-dapr-with-rbac.yaml │ │ ├── open-telemetry-collector │ │ │ ├── collector-config-otel.yaml │ │ │ ├── collector-config.yaml │ │ │ ├── open-telemetry-collector-appinsights.yaml │ │ │ ├── open-telemetry-collector-generic.yaml │ │ │ └── open-telemetry-collector-jaeger.yaml │ │ ├── sidecar-dashboard.json │ │ └── system-services-dashboard.json │ ├── favicons │ │ ├── android-144x144.png │ │ ├── android-192x192.png │ │ ├── android-36x36.png │ │ ├── android-48x48.png │ │ ├── android-72x72.png │ │ ├── android-96x196.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── tile150x150.png │ │ ├── tile310x150.png │ │ ├── tile310x310.png │ │ └── tile70x70.png │ ├── images │ │ ├── actor-dashboard.png │ │ ├── actor-reentrancy.png │ │ ├── actor_background_game_example.png │ │ ├── actor_pattern.png │ │ ├── actors-calling-method.png │ │ ├── actors-quickstart │ │ │ ├── actor-client-interaction-zipkin.png │ │ │ └── actors-quickstart.png │ │ ├── actors_background_communication.png │ │ ├── actors_background_concurrency.png │ │ ├── actors_background_id_hashing_calling.png │ │ ├── actors_background_placement_service_registration.png │ │ ├── actors_client.png │ │ ├── actors_server.png │ │ ├── alloc.png │ │ ├── app-middleware.png │ │ ├── azure-monitor.png │ │ ├── binding-overview.png │ │ ├── bindings-quickstart │ │ │ └── bindings-quickstart.png │ │ ├── building-block-configuration-example.png │ │ ├── building-block-lock-example.png │ │ ├── building-block-lock-multiple-example.png │ │ ├── building-block-lock-unlock-example.png │ │ ├── building-block-secrets-management-example.png │ │ ├── building-block-service-invocation-example.png │ │ ├── building-block-state-management-example.png │ │ ├── building_blocks.png │ │ ├── buildingblocks-overview.png │ │ ├── codespaces-create.png │ │ ├── components-pluggable-register-grpc.png │ │ ├── concepts-building-blocks.png │ │ ├── concepts-components.png │ │ ├── configuration-api-overview.png │ │ ├── configuration-quickstart │ │ │ └── configuration-quickstart-flow.png │ │ ├── conversation-overview.png │ │ ├── crypto-quickstart.png │ │ ├── cryptography-overview.png │ │ ├── dapr-agents │ │ │ ├── agents-augmented-llm.png │ │ │ ├── agents-autonomous.png │ │ │ ├── agents-evaluator-optimizer.png │ │ │ ├── agents-orchestrator-workers.png │ │ │ ├── agents-parallelization.png │ │ │ ├── agents-patterns-overview.png │ │ │ ├── agents-prompt-chaining.png │ │ │ ├── agents-routing.png │ │ │ ├── agents-stateful-llm.png │ │ │ ├── concepts-agents-overview.png │ │ │ ├── concepts-agents.png │ │ │ ├── concepts_agents_react_flow.png │ │ │ ├── concepts_agents_toolcall_flow.png │ │ │ ├── favicon.png │ │ │ ├── home_concepts_principles_decoupled.png │ │ │ ├── home_concepts_principles_message.png │ │ │ ├── home_concepts_principles_modular.png │ │ │ ├── home_concepts_principles_workflows.png │ │ │ ├── home_installation_init.png │ │ │ ├── home_installation_redis_dashboard.png │ │ │ ├── logo-sticker-text.png │ │ │ ├── logo-sticker.png │ │ │ ├── logo-workflows.png │ │ │ ├── redis_dashboard.png │ │ │ ├── workflows_dapr_activity.png │ │ │ ├── workflows_dapr_llm_request.png │ │ │ ├── workflows_llm_agent_initialization_hobbit.png │ │ │ ├── workflows_llm_agent_initialization_wizard.png │ │ │ ├── workflows_llm_console_logs_activities.png │ │ │ ├── workflows_llm_console_logs_activities_chat_completions.png │ │ │ ├── workflows_llm_console_logs_complete.png │ │ │ ├── workflows_llm_orchestrator_initialization.png │ │ │ ├── workflows_llm_redis_agents_metadata.png │ │ │ ├── workflows_llm_redis_broadcast_channel.png │ │ │ ├── workflows_llm_redis_empty.png │ │ │ ├── workflows_llm_redis_reset.png │ │ │ ├── workflows_llm_redis_workflow_state.png │ │ │ ├── workflows_llm_redis_workflow_state_edit_mode.png │ │ │ ├── workflows_llm_workflow_state_json_object.png │ │ │ ├── workflows_llm_workflow_state_json_object_plan.png │ │ │ ├── workflows_llm_zipkin_portal.png │ │ │ ├── workflows_llm_zipkin_spans_finish.png │ │ │ ├── workflows_llm_zipkin_spans_start.png │ │ │ ├── workflows_original_activity.png │ │ │ ├── workflows_originial_llm_request.png │ │ │ ├── workflows_random_event_driven.png │ │ │ ├── workflows_random_zipkin_portal.png │ │ │ ├── workflows_random_zipkin_spans.png │ │ │ ├── workflows_roundrobin_agent_initialization.png │ │ │ ├── workflows_roundrobin_agents_health.png │ │ │ ├── workflows_roundrobin_console_logs_activities.png │ │ │ ├── workflows_roundrobin_console_logs_complete.png │ │ │ ├── workflows_roundrobin_redis_agents_metadata.png │ │ │ ├── workflows_roundrobin_redis_broadcast_channel.png │ │ │ ├── workflows_roundrobin_redis_empty.png │ │ │ ├── workflows_roundrobin_redis_reset.png │ │ │ ├── workflows_roundrobin_zipkin_portal.png │ │ │ └── workflows_roundrobin_zipkin_spans.png │ │ ├── dapr-shared │ │ │ ├── daemonset.png │ │ │ ├── deployment.png │ │ │ └── sidecar.png │ │ ├── daprcon.png │ │ ├── dash0-dapr-trace-overview.png │ │ ├── dash0-dapr-trace.png │ │ ├── datadog-traces.png │ │ ├── diagrid-conductor.png │ │ ├── docker-desktop-setting.png │ │ ├── dynamic_range.png │ │ ├── emptybox.png │ │ ├── grafana-actor-dashboard.png │ │ ├── grafana-add-datasources.png │ │ ├── grafana-datasources.png │ │ ├── grafana-prometheus-dapr-server-url.png │ │ ├── grafana-sidecar-dashboard.png │ │ ├── grafana-system-service-dashboard.png │ │ ├── grafana-tooltip.png │ │ ├── grafana-uploadjson.png │ │ ├── healthz-outbound.png │ │ ├── heap.png │ │ ├── home-title.png │ │ ├── homepage │ │ │ ├── code.svg │ │ │ ├── dapr-agents.svg │ │ │ ├── dark-blue-dapr.svg │ │ │ ├── dotnet.png │ │ │ ├── golang.svg │ │ │ ├── java.png │ │ │ ├── javalang.png │ │ │ ├── javascript.png │ │ │ ├── php.png │ │ │ ├── pub-sub.svg │ │ │ ├── python.png │ │ │ ├── service-invocation.svg │ │ │ ├── vscode.svg │ │ │ └── workflow.svg │ │ ├── howto-bindings │ │ │ └── kafka-output-binding.png │ │ ├── howto-namespace │ │ │ ├── basic-pubsub.png │ │ │ ├── with-namespace.png │ │ │ └── without-namespace.png │ │ ├── howto-secrets │ │ │ └── secrets-mgmt-overview.png │ │ ├── howto-triggers │ │ │ └── kafka-input-binding.png │ │ ├── install-dapr-selfhost-windows.png │ │ ├── install-dapr-selfhost │ │ │ ├── dapr-init-output.png │ │ │ ├── docker-containers.png │ │ │ └── windows-view-components.png │ │ ├── intellij_debug_app.png │ │ ├── intellij_debug_menu.png │ │ ├── intellij_edit_run_configuration.png │ │ ├── intellij_start_dapr.png │ │ ├── jaeger_grafana.png │ │ ├── jaeger_storage_elasticsearch.png │ │ ├── jaeger_ui.png │ │ ├── kibana-1.png │ │ ├── kibana-2.png │ │ ├── kibana-3.png │ │ ├── kibana-4.png │ │ ├── kibana-5.png │ │ ├── kibana-6.png │ │ ├── kibana-7.png │ │ ├── kibana-8.png │ │ ├── lock-overview.png │ │ ├── middleware.png │ │ ├── multi-app-structure.png │ │ ├── nr-apm-frontend.png │ │ ├── nr-apm-subtractor-1.png │ │ ├── nr-apm-subtractor-2.png │ │ ├── nr-automated-installer.png │ │ ├── nr-dapr-distributed-calculator.png │ │ ├── nr-dashboard-dapr-metrics-1.png │ │ ├── nr-dashboard-dapr-metrics-2.png │ │ ├── nr-dashboard-dapr-metrics-3.png │ │ ├── nr-dashboard-dapr-metrics-4.png │ │ ├── nr-dashboard-dapr-metrics-5.png │ │ ├── nr-dashboard-dapr-metrics-6.png │ │ ├── nr-dashboard-dapr-metrics-7.png │ │ ├── nr-dashboard-dapr-system-services.png │ │ ├── nr-dashboard-k8s-overview.png │ │ ├── nr-distributed-calculator-ui.png │ │ ├── nr-distributed-tracing-detail.png │ │ ├── nr-distributed-tracing-overview.png │ │ ├── nr-grafana-dashboard.png │ │ ├── nr-grafana-datasource.png │ │ ├── nr-k8s-cluster-explorer-app.png │ │ ├── nr-k8s-cluster-explorer.png │ │ ├── nr-k8s-logs-in-context.png │ │ ├── nr-k8s-pod-level-details.png │ │ ├── nr-logging-1.png │ │ ├── nr-logging-2.png │ │ ├── nr-metrics-1.png │ │ ├── observability-app-health.webp │ │ ├── observability-opentelemetry-collector.png │ │ ├── observability-sidecar.png │ │ ├── observability-tracing.png │ │ ├── open-telemetry-app-insights.png │ │ ├── open-telemetry-collector-dynatrace-traces.png │ │ ├── open-telemetry-collector.png │ │ ├── overview-kubernetes.png │ │ ├── overview-sidecar-apis.png │ │ ├── overview-sidecar-kubernetes.png │ │ ├── overview-sidecar-model.png │ │ ├── overview-sidecar.png │ │ ├── overview-standalone-docker.png │ │ ├── overview-standalone.png │ │ ├── overview-vms-hosting.png │ │ ├── overview.png │ │ ├── perf_invocation_p90.png │ │ ├── perf_invocation_p99.png │ │ ├── programming_experience.png │ │ ├── prometheus-service-discovery.png │ │ ├── prometheus-web-ui.png │ │ ├── pubsub-howto-overview.png │ │ ├── pubsub-multiple-namespaces.png │ │ ├── pubsub-overview-components.png │ │ ├── pubsub-overview-pattern-competing-consumers.png │ │ ├── pubsub-overview-pattern.png │ │ ├── pubsub-overview-publish-API.png │ │ ├── pubsub-publish-subscribe-example.png │ │ ├── pubsub-quickstart │ │ │ ├── pubsub-diagram.png │ │ │ ├── pubsub-dotnet-publisher-output.png │ │ │ ├── pubsub-dotnet-subscriber-output.png │ │ │ ├── pubsub-java-publisher-output.png │ │ │ ├── pubsub-java-subscriber-output.png │ │ │ ├── pubsub-js-publisher-output.png │ │ │ ├── pubsub-js-subscriber-output.png │ │ │ ├── pubsub-python-publisher-output.png │ │ │ └── pubsub-python-subscriber-output.png │ │ ├── pubsub_deadletter.png │ │ ├── pubsub_publish_raw.png │ │ ├── pubsub_subscribe_raw.png │ │ ├── resiliency-quickstart-svc-component.png │ │ ├── resiliency-quickstart-svc-invoke.png │ │ ├── resiliency_diagram.png │ │ ├── resiliency_inbound.png │ │ ├── resiliency_outbound.png │ │ ├── resiliency_pubsub.png │ │ ├── resiliency_svc_invocation.png │ │ ├── roadmap.png │ │ ├── sample_trace.png │ │ ├── scheduler │ │ │ └── scheduler-architecture.png │ │ ├── secrets-overview-azure-aks-keyvault.png │ │ ├── secrets-overview-cloud-stores.png │ │ ├── secrets-overview-kubernetes-store.png │ │ ├── secretsmanagement-quickstart │ │ │ └── secrets-mgmt-quickstart.png │ │ ├── security-dapr-API-scoping.png │ │ ├── security-end-to-end-communication.png │ │ ├── security-mTLS-dapr-system-services.png │ │ ├── security-mTLS-sentry-kubernetes.png │ │ ├── security-mTLS-sentry-selfhosted.png │ │ ├── security-overview-capabilities-example.png │ │ ├── security-threat-model.png │ │ ├── service-invocation-mdns-round-robin.png │ │ ├── service-invocation-overview-example.png │ │ ├── service-invocation-overview-non-dapr-endpoint.png │ │ ├── service-invocation-overview.png │ │ ├── service-invocation-security.png │ │ ├── service-invocation-simple.webp │ │ ├── service-mesh.png │ │ ├── serviceinvocation-quickstart │ │ │ └── service-invocation-overview.png │ │ ├── sidecar-dashboard.png │ │ ├── sidecar-health.png │ │ ├── skip-tls-verify.png │ │ ├── state-management-outbox-steps.png │ │ ├── state-management-outbox.png │ │ ├── state-management-overview.png │ │ ├── state-management-query-mongodb-dataset.png │ │ ├── state-management-quickstart.png │ │ ├── state_management.png │ │ ├── system-service-dashboard.png │ │ ├── tokens-auth.png │ │ ├── vscode-extension-invoke.png │ │ ├── vscode-extension-publish.png │ │ ├── vscode-extension-scaffold.png │ │ ├── vscode-extension-view.png │ │ ├── vscode-launch-configuration.png │ │ ├── vscode-remotecontainers-addcontainer.png │ │ ├── vscode-remotecontainers-daprcontainers.png │ │ ├── vscode-remotecontainers-reopen.png │ │ ├── vscode_remote_containers.png │ │ ├── workflow-overview │ │ │ ├── workflow-activity-actor-flowchart.png │ │ │ ├── workflow-actor-flowchart.png │ │ │ ├── workflow-actor-reminder-flow.png │ │ │ ├── workflow-actor-scale-out.png │ │ │ ├── workflow-async-request-response.png │ │ │ ├── workflow-diagrid-dashboard.png │ │ │ ├── workflow-engine-protocol.png │ │ │ ├── workflow-execution-2.png │ │ │ ├── workflow-execution.png │ │ │ ├── workflow-human-interaction-pattern.png │ │ │ ├── workflow-monitor-pattern.png │ │ │ ├── workflow-multi-app-callactivity.png │ │ │ ├── workflow-multi-app-child-workflow.png │ │ │ ├── workflow-multi-app-complex.png │ │ │ ├── workflow-overview.png │ │ │ ├── workflow-state-store-interactions.png │ │ │ ├── workflows-architecture-k8s.png │ │ │ ├── workflows-chaining.png │ │ │ ├── workflows-compensation.png │ │ │ └── workflows-fanin-fanout.png │ │ ├── workflow-quickstart-controlflow.png │ │ ├── workflow-quickstart-overview.png │ │ ├── workflow-trace-spans-zipkin-python.png │ │ ├── workflow-trace-spans-zipkin.png │ │ ├── workflows-api.png │ │ ├── workflows-diagram.png │ │ └── zipkin_ui.png │ ├── js │ │ └── copy-code-button.js │ └── presentations │ │ ├── 2019IgniteCloudNativeApps.pdf │ │ ├── 2020ReadyCloudNativeApps.pdf │ │ ├── Dapr-Diagrams-template.pptx.zip │ │ └── dapr-slidedecks.zip └── staticwebapp.config.json ├── go.mod ├── go.sum ├── hugo.yaml ├── package.json ├── scripts ├── add-tabpane-text-parameter.sh ├── check-tabpane-format.sh ├── format-all-tabpanes.sh ├── format-tabpane.sh ├── init-container.sh ├── remove_backup_files.sh ├── update-lang-sdk-docs.sh └── update-sdk-docs.sh └── sdkdocs ├── dotnet ├── README.md └── content │ └── en │ ├── dotnet-sdk-contributing │ └── dotnet-contributing.md │ └── dotnet-sdk-docs │ ├── _index.md │ ├── dotnet-actors │ ├── _index.md │ ├── dotnet-actors-client.md │ ├── dotnet-actors-howto.md │ ├── dotnet-actors-serialization.md │ └── dotnet-actors-usage.md │ ├── dotnet-ai │ ├── _index.md │ ├── dotnet-ai-conversation-howto.md │ ├── dotnet-ai-conversation-usage.md │ └── dotnet-ai-extensions-howto.md │ ├── dotnet-client │ ├── _index.md │ └── dotnet-daprclient-usage.md │ ├── dotnet-cryptography │ ├── _index.md │ ├── dotnet-cryptography-howto.md │ └── dotnet-cryptography-usage.md │ ├── dotnet-distributed-lock │ ├── _index.md │ └── dotnet-distributedlock-howto.md │ ├── dotnet-guidance │ ├── _index.md │ ├── dotnet-guidance-error-model.md │ ├── dotnet-guidance-experimental-attributes.md │ └── dotnet-guidance-source-generators.md │ ├── dotnet-integrations │ ├── _index.md │ ├── dotnet-development-dapr-aspire.md │ ├── dotnet-development-dapr-cli.md │ └── dotnet-development-docker-compose.md │ ├── dotnet-jobs │ ├── _index.md │ ├── dotnet-jobs-howto.md │ └── dotnet-jobsclient-usage.md │ ├── dotnet-messaging │ ├── _index.md │ ├── dotnet-messaging-pubsub-howto.md │ └── dotnet-messaging-pubsub-usage.md │ ├── dotnet-troubleshooting │ ├── _index.md │ └── dotnet-troubleshooting-pubsub.md │ └── dotnet-workflow │ ├── _index.md │ ├── dotnet-workflow-examples.md │ ├── dotnet-workflow-management-methods.md │ └── dotnet-workflowclient-usage.md ├── go ├── README.md └── content │ └── en │ ├── go-sdk-contributing │ └── go-contributing.md │ └── go-sdk-docs │ ├── _index.md │ ├── go-client │ └── _index.md │ └── go-service │ ├── _index.md │ ├── grpc-service.md │ └── http-service.md ├── java └── content │ └── en │ ├── java-sdk-contributing │ └── java-contributing.md │ └── java-sdk-docs │ ├── _index.md │ ├── java-ai │ ├── _index.md │ └── java-ai-howto.md │ ├── java-client │ ├── _index.md │ └── properties.md │ ├── java-jobs │ ├── _index.md │ └── java-jobs-howto.md │ ├── java-workflow │ ├── _index.md │ └── java-workflow-howto.md │ └── spring-boot │ └── _index.md ├── js ├── README.md └── content │ └── en │ ├── js-sdk-contributing │ └── js-contributing.md │ └── js-sdk-docs │ ├── _index.md │ ├── images │ ├── dapr-client.jpg │ └── dapr-server.jpg │ ├── js-actors │ └── _index.md │ ├── js-client │ └── _index.md │ ├── js-examples │ └── _index.md │ ├── js-logger │ └── _index.md │ ├── js-server │ └── _index.md │ └── js-workflow │ └── _index.md ├── php ├── content │ └── en │ │ └── php-sdk-docs │ │ ├── _index.md │ │ ├── php-actors │ │ ├── _index.md │ │ └── php-actor-reference.md │ │ ├── php-app │ │ ├── _index.md │ │ └── php-unit-testing.md │ │ ├── php-pubsub │ │ └── _index.md │ │ ├── php-serialization.md │ │ └── php-state │ │ └── _index.md └── readme.md ├── pluggable-components ├── dotnet │ └── content │ │ └── en │ │ └── dotnet-sdk-docs │ │ ├── _index.md │ │ ├── dotnet-advanced │ │ ├── _index.md │ │ ├── dotnet-application-environment.md │ │ ├── dotnet-component-lifetime.md │ │ └── dotnet-multiple-services.md │ │ ├── dotnet-bindings │ │ └── _index.md │ │ ├── dotnet-pub-sub │ │ └── _index.md │ │ └── dotnet-state-store │ │ └── _index.md └── go │ └── content │ └── en │ └── go-sdk-docs │ ├── _index.md │ ├── go-advanced │ └── _index.md │ ├── go-bindings │ └── _index.md │ ├── go-pub-sub │ └── _index.md │ └── go-state-store │ └── _index.md ├── python ├── README.md └── content │ └── en │ ├── python-sdk-contributing │ └── python-contributing.md │ └── python-sdk-docs │ ├── _index.md │ ├── conversation.md │ ├── python-actor.md │ ├── python-client.md │ └── python-sdk-extensions │ ├── _index.md │ ├── python-fastapi.md │ ├── python-flask.md │ ├── python-grpc.md │ └── python-workflow-ext │ ├── _index.md │ └── python-workflow.md └── rust └── content └── en ├── rust-sdk-contributing └── rust-contributing.md └── rust-sdk-docs ├── _index.md └── rust-client └── _index.md /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-content-needed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/ISSUE_TEMPLATE/new-content-needed.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/typo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/ISSUE_TEMPLATE/typo.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/website-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/ISSUE_TEMPLATE/website-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wrong-information-code-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/ISSUE_TEMPLATE/wrong-information-code-steps.md -------------------------------------------------------------------------------- /.github/holopin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/holopin.yml -------------------------------------------------------------------------------- /.github/iac/swa/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/azure.yaml -------------------------------------------------------------------------------- /.github/iac/swa/infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/abbreviations.json -------------------------------------------------------------------------------- /.github/iac/swa/infra/core/host/staticwebsite.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/core/host/staticwebsite.bicep -------------------------------------------------------------------------------- /.github/iac/swa/infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/main.bicep -------------------------------------------------------------------------------- /.github/iac/swa/infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/main.parameters.json -------------------------------------------------------------------------------- /.github/iac/swa/infra/security/lockRg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/security/lockRg.bicep -------------------------------------------------------------------------------- /.github/iac/swa/infra/security/userAssignedIdentity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/infra/security/userAssignedIdentity.bicep -------------------------------------------------------------------------------- /.github/iac/swa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/readme.md -------------------------------------------------------------------------------- /.github/iac/swa/scripts/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/scripts/deploy.ps1 -------------------------------------------------------------------------------- /.github/iac/swa/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/iac/swa/scripts/deploy.sh -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/automerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/scripts/automerge.py -------------------------------------------------------------------------------- /.github/workflows/dapr-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/dapr-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/dapr-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/dapr-bot.yml -------------------------------------------------------------------------------- /.github/workflows/link_validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/link_validation.yaml -------------------------------------------------------------------------------- /.github/workflows/stale-pr-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/stale-pr-monitor.yml -------------------------------------------------------------------------------- /.github/workflows/website-root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/website-root.yml -------------------------------------------------------------------------------- /.github/workflows/website-v1-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.github/workflows/website-v1-16.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/README.md -------------------------------------------------------------------------------- /daprdocs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .dccache -------------------------------------------------------------------------------- /daprdocs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/archetypes/default.md -------------------------------------------------------------------------------- /daprdocs/assets/icons/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/icons/logo-black.svg -------------------------------------------------------------------------------- /daprdocs/assets/icons/logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/icons/logo-blue.svg -------------------------------------------------------------------------------- /daprdocs/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/icons/logo.png -------------------------------------------------------------------------------- /daprdocs/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/icons/logo.svg -------------------------------------------------------------------------------- /daprdocs/assets/js/search.js: -------------------------------------------------------------------------------- 1 | // Intentionally blank -------------------------------------------------------------------------------- /daprdocs/assets/scss/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/scss/_content.scss -------------------------------------------------------------------------------- /daprdocs/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/scss/_nav.scss -------------------------------------------------------------------------------- /daprdocs/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /daprdocs/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/building-blocks-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/building-blocks-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/components-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/components-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/configuration-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/configuration-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/operator.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/placement.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/scheduler.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/sentry.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/sidecar-injector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/sidecar-injector.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/dapr-services/sidecar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/dapr-services/sidecar.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/faq/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/faq/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/faq/faq.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/faq/service-mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/faq/service-mesh.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/isolation-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/isolation-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/observability-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/observability-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/resiliency-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/resiliency-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/security-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/security-concept.md -------------------------------------------------------------------------------- /daprdocs/content/en/concepts/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/concepts/terminology.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/codespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/codespaces.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/contributing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/contributing-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/dapr-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/dapr-agents.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/daprbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/daprbot.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/docs-contrib/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/docs-contrib/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/docs-contrib/contributing-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/docs-contrib/contributing-docs.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/docs-contrib/docs-templates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/docs-contrib/docs-templates/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/docs-contrib/docs-templates/howto-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/docs-contrib/docs-templates/howto-template.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/docs-contrib/maintainer-guide.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/presentations.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/roadmap.md -------------------------------------------------------------------------------- /daprdocs/content/en/contributing/sdk-contrib/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/contributing/sdk-contrib/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/actors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/actors/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/bindings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/bindings/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/jobs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/jobs/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/pubsub/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/pubsub/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/secrets/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/secrets/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/building-blocks/workflow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/building-blocks/workflow/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/dapr-agents/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/dapr-agents/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/dapr-agents/dapr-agents-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/dapr-agents/dapr-agents-patterns.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/dapr-agents/dapr-agents-why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/dapr-agents/dapr-agents-why.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/debugging/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/debugging/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/debugging/debug-k8s/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/debugging/debug-k8s/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/debugging/debug-k8s/debug-daprd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/debugging/debug-k8s/debug-daprd.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/develop-components/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/develop-components/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/error-codes/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/error-codes/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/error-codes/errors-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/error-codes/errors-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/error-codes/grpc-error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/error-codes/grpc-error-codes.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/error-codes/http-error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/error-codes/http-error-codes.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/AWS/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/AWS/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/Azure/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/Azure/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/Diagrid/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/Diagrid/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/argo-cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/argo-cd.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/autoscale-keda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/autoscale-keda.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/github_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/github_actions.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/kratix-marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/kratix-marketplace.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/integrations/kubernetes-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/integrations/kubernetes-operator.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/local-development/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/local-development/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/local-development/ides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/local-development/ides/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/local-development/ides/intellij.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/local-development/ides/intellij.md -------------------------------------------------------------------------------- /daprdocs/content/en/developing-applications/sdks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/developing-applications/sdks/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/get-started-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/get-started-api.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/install-dapr-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/install-dapr-cli.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/install-dapr-selfhost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/install-dapr-selfhost.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/actors-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/bindings-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/bindings-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/configuration-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/configuration-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/conversation-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/conversation-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/cryptography-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/cryptography-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/jobs-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/jobs-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/pubsub-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/pubsub-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/resiliency/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/resiliency/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/secrets-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/secrets-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/tutorials/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/tutorials/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/tutorials/configure-state-pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/tutorials/configure-state-pubsub.md -------------------------------------------------------------------------------- /daprdocs/content/en/getting-started/tutorials/get-started-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/getting-started/tutorials/get-started-component.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/certification-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/certification-lifecycle.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/component-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/component-scopes.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/component-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/component-secrets.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/component-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/component-updates.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/middleware.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/pluggable-components-registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/pluggable-components-registration.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/setup-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/setup-bindings.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/setup-pubsub/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/setup-pubsub/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/setup-secret-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/setup-secret-store.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/components/setup-state-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/components/setup-state-store.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/api-allowlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/api-allowlist.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/configuration-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/configuration-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/control-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/control-concurrency.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/environment-variables-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/environment-variables-secrets.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/grpc.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/increase-read-buffer-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/increase-read-buffer-size.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/increase-request-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/increase-request-size.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/install-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/install-certificates.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/invoke-allowlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/invoke-allowlist.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/preview-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/preview-features.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/configuration/secret-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/configuration/secret-scope.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-aks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-aks.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-eks.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-gke.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-kind.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-minikube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/cluster/setup-minikube.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-dapr-shared.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-dapr-shared.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-hybrid-clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-hybrid-clusters.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-job.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-production.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-upgrade.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/kubernetes/kubernetes-volume-mounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/kubernetes/kubernetes-volume-mounts.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-airgap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-airgap.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-no-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-no-docker.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-uninstall.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-upgrade.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-podman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-podman.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/serverless/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/serverless/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/hosting/serverless/azure-container-apps/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/hosting/serverless/azure-container-apps/index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/logging/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/logging/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/logging/fluentd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/logging/fluentd.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/logging/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/logging/logs.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/logging/newrelic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/logging/newrelic.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/azure-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/azure-monitor.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/grafana.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/metrics-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/metrics-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/newrelic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/newrelic.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/metrics/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/metrics/prometheus.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/dash0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/dash0.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/datadog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/datadog.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/newrelic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/newrelic.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/otel-collector/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/otel-collector/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/setup-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/setup-tracing.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/tracing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/tracing-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/w3c-tracing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/w3c-tracing-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/observability/tracing/zipkin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/observability/tracing/zipkin.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/performance-and-scalability/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/performance-and-scalability/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/performance-and-scalability/perf-longhaul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/performance-and-scalability/perf-longhaul.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/health-checks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/health-checks/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/health-checks/app-health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/health-checks/app-health.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/health-checks/sidecar-health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/health-checks/sidecar-health.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/circuit-breakers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/circuit-breakers.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/default-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/default-policies.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/retries/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/retries/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/retries/retries-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/retries/retries-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/policies/timeouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/policies/timeouts.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/resiliency-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/resiliency-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/resiliency/targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/resiliency/targets.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/security/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/security/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/security/api-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/security/api-token.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/security/app-api-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/security/app-api-token.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/security/mtls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/security/mtls.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/security/oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/security/oauth.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/alpha-beta-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/alpha-beta-apis.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/breaking-changes-and-deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/breaking-changes-and-deprecations.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/support-preview-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/support-preview-features.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/support-release-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/support-release-policy.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/support-security-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/support-security-issues.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/support/support-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/support/support-versioning.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/troubleshooting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/troubleshooting/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/troubleshooting/api-logs-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/troubleshooting/api-logs-troubleshooting.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/troubleshooting/common_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/troubleshooting/common_issues.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/troubleshooting/logs-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/troubleshooting/logs-troubleshooting.md -------------------------------------------------------------------------------- /daprdocs/content/en/operations/troubleshooting/profiling-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/operations/troubleshooting/profiling-debugging.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/actors_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/actors_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/bindings_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/bindings_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/configuration_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/configuration_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/conversation_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/conversation_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/cryptography_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/cryptography_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/distributed_lock_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/distributed_lock_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/health_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/health_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/jobs_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/jobs_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/metadata_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/metadata_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/placement_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/placement_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/pubsub_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/pubsub_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/secrets_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/secrets_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/service_invocation_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/service_invocation_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/state_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/state_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/api/workflow_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/api/workflow_api.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/arguments-annotations-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/arguments-annotations-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/cli-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/cli-overview.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-annotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-annotate.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-build-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-build-info.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-completion.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-components.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-configurations.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-dashboard.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-help.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-init.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-invoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-invoke.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-list.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-logs.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-mtls/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-mtls/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-expiry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-expiry.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-export.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-publish.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-run.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-scheduler.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-status.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-stop.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-uninstall.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-upgrade.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-version.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/cli/dapr-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/cli/dapr-workflow.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/apns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/apns.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/cron.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/dubbo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/dubbo.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/http.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/kafka.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/kubemq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/kubemq.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/mqtt3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/mqtt3.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/mysql.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/openai.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/redis.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/s3.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/ses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/ses.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/smtp.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/sns.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-bindings/sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-bindings/sqs.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/components-reference/supported-locks/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/components-reference/supported-locks/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/environment/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/environment/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/_index.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/component-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/component-schema.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/configuration-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/configuration-schema.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/httpendpoints-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/httpendpoints-schema.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/resiliency-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/resiliency-schema.md -------------------------------------------------------------------------------- /daprdocs/content/en/reference/resource-specs/subscription-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/content/en/reference/resource-specs/subscription-schema.md -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/alibaba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/alibaba.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/cloudflare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/cloudflare.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/gcp.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/bindings/zeebe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/bindings/zeebe.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/configuration_stores/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/configuration_stores/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/configuration_stores/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/configuration_stores/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/conversation/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/conversation/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/conversation/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/conversation/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/cryptography/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/cryptography/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/cryptography/daprcryptoengine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/cryptography/daprcryptoengine.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/locks/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/locks/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/middleware/http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/middleware/http.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/name_resolution/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/name_resolution/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/name_resolution/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/name_resolution/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/name_resolution/kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/name_resolution/kubernetes.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/name_resolution/selfhosted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/name_resolution/selfhosted.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/pubsub/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/pubsub/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/pubsub/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/pubsub/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/pubsub/gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/pubsub/gcp.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/pubsub/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/pubsub/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/alibaba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/alibaba.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/gcp.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/huaweicloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/huaweicloud.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/secret_stores/tencentcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/secret_stores/tencentcloud.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/alicloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/alicloud.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/aws.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/azure.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/cloudflare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/cloudflare.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/gcp.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/generic.yaml -------------------------------------------------------------------------------- /daprdocs/data/components/state_stores/oracle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/data/components/state_stores/oracle.yaml -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/bindings.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/componenttoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/componenttoc.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/configuration-stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/configuration-stores.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/conversation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/conversation.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/cryptography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/cryptography.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/description.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/locks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/locks.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/middleware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/middleware.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/name-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/name-resolution.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/pubsub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/pubsub.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/secret-stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/secret-stores.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/components/state-stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/components/state-stores.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/feedback.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/footer.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/hooks/body-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/hooks/body-end.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/hooks/head-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/hooks/head-end.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/navbar.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/page-meta-links.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/search-input.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/section-index.html -------------------------------------------------------------------------------- /daprdocs/layouts/_partials/version-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_partials/version-banner.html -------------------------------------------------------------------------------- /daprdocs/layouts/_shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_shortcodes/button.html -------------------------------------------------------------------------------- /daprdocs/layouts/_shortcodes/dapr-latest-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_shortcodes/dapr-latest-version.html -------------------------------------------------------------------------------- /daprdocs/layouts/_shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} -------------------------------------------------------------------------------- /daprdocs/layouts/_shortcodes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/_shortcodes/table.html -------------------------------------------------------------------------------- /daprdocs/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/layouts/docs/list.html -------------------------------------------------------------------------------- /daprdocs/static/code/contributing-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/code/contributing-1.py -------------------------------------------------------------------------------- /daprdocs/static/code/contributing-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/code/contributing-2.py -------------------------------------------------------------------------------- /daprdocs/static/code/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/code/workflow.json -------------------------------------------------------------------------------- /daprdocs/static/docs/Dapr-february-2021-security-audit-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/Dapr-february-2021-security-audit-report.pdf -------------------------------------------------------------------------------- /daprdocs/static/docs/Dapr-july-2020-security-audit-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/Dapr-july-2020-security-audit-report.pdf -------------------------------------------------------------------------------- /daprdocs/static/docs/Dapr-june-2023-fuzzing-audit-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/Dapr-june-2023-fuzzing-audit-report.pdf -------------------------------------------------------------------------------- /daprdocs/static/docs/Dapr-september-2023-security-audit-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/Dapr-september-2023-security-audit-report.pdf -------------------------------------------------------------------------------- /daprdocs/static/docs/actor-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/actor-dashboard.json -------------------------------------------------------------------------------- /daprdocs/static/docs/azm-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/azm-config-map.yaml -------------------------------------------------------------------------------- /daprdocs/static/docs/fluentd-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/fluentd-config-map.yaml -------------------------------------------------------------------------------- /daprdocs/static/docs/fluentd-dapr-with-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/fluentd-dapr-with-rbac.yaml -------------------------------------------------------------------------------- /daprdocs/static/docs/open-telemetry-collector/collector-config-otel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/open-telemetry-collector/collector-config-otel.yaml -------------------------------------------------------------------------------- /daprdocs/static/docs/open-telemetry-collector/collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/open-telemetry-collector/collector-config.yaml -------------------------------------------------------------------------------- /daprdocs/static/docs/sidecar-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/sidecar-dashboard.json -------------------------------------------------------------------------------- /daprdocs/static/docs/system-services-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/docs/system-services-dashboard.json -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-144x144.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-192x192.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-36x36.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-48x48.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-72x72.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/android-96x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/android-96x196.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/favicon.ico -------------------------------------------------------------------------------- /daprdocs/static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /daprdocs/static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /daprdocs/static/images/actor-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actor-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/actor-reentrancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actor-reentrancy.png -------------------------------------------------------------------------------- /daprdocs/static/images/actor_background_game_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actor_background_game_example.png -------------------------------------------------------------------------------- /daprdocs/static/images/actor_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actor_pattern.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors-calling-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors-calling-method.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors-quickstart/actor-client-interaction-zipkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors-quickstart/actor-client-interaction-zipkin.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors-quickstart/actors-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors-quickstart/actors-quickstart.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_background_communication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_background_communication.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_background_concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_background_concurrency.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_background_id_hashing_calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_background_id_hashing_calling.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_background_placement_service_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_background_placement_service_registration.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_client.png -------------------------------------------------------------------------------- /daprdocs/static/images/actors_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/actors_server.png -------------------------------------------------------------------------------- /daprdocs/static/images/alloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/alloc.png -------------------------------------------------------------------------------- /daprdocs/static/images/app-middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/app-middleware.png -------------------------------------------------------------------------------- /daprdocs/static/images/azure-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/azure-monitor.png -------------------------------------------------------------------------------- /daprdocs/static/images/binding-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/binding-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/bindings-quickstart/bindings-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/bindings-quickstart/bindings-quickstart.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-configuration-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-configuration-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-lock-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-lock-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-lock-multiple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-lock-multiple-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-lock-unlock-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-lock-unlock-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-secrets-management-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-secrets-management-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-service-invocation-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-service-invocation-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building-block-state-management-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building-block-state-management-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/building_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/building_blocks.png -------------------------------------------------------------------------------- /daprdocs/static/images/buildingblocks-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/buildingblocks-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/codespaces-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/codespaces-create.png -------------------------------------------------------------------------------- /daprdocs/static/images/components-pluggable-register-grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/components-pluggable-register-grpc.png -------------------------------------------------------------------------------- /daprdocs/static/images/concepts-building-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/concepts-building-blocks.png -------------------------------------------------------------------------------- /daprdocs/static/images/concepts-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/concepts-components.png -------------------------------------------------------------------------------- /daprdocs/static/images/configuration-api-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/configuration-api-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/conversation-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/conversation-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/crypto-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/crypto-quickstart.png -------------------------------------------------------------------------------- /daprdocs/static/images/cryptography-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/cryptography-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-augmented-llm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-augmented-llm.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-autonomous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-autonomous.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-evaluator-optimizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-evaluator-optimizer.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-orchestrator-workers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-orchestrator-workers.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-parallelization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-parallelization.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-patterns-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-patterns-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-prompt-chaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-prompt-chaining.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-routing.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/agents-stateful-llm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/agents-stateful-llm.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/concepts-agents-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/concepts-agents-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/concepts-agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/concepts-agents.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/concepts_agents_react_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/concepts_agents_react_flow.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/concepts_agents_toolcall_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/concepts_agents_toolcall_flow.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/favicon.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_concepts_principles_decoupled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_concepts_principles_decoupled.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_concepts_principles_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_concepts_principles_message.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_concepts_principles_modular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_concepts_principles_modular.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_concepts_principles_workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_concepts_principles_workflows.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_installation_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_installation_init.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/home_installation_redis_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/home_installation_redis_dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/logo-sticker-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/logo-sticker-text.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/logo-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/logo-sticker.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/logo-workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/logo-workflows.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/redis_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/redis_dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_dapr_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_dapr_activity.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_dapr_llm_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_dapr_llm_request.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_console_logs_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_console_logs_activities.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_console_logs_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_console_logs_complete.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_redis_agents_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_redis_agents_metadata.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_redis_broadcast_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_redis_broadcast_channel.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_redis_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_redis_empty.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_redis_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_redis_reset.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_redis_workflow_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_redis_workflow_state.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_zipkin_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_zipkin_portal.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_zipkin_spans_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_zipkin_spans_finish.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_llm_zipkin_spans_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_llm_zipkin_spans_start.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_original_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_original_activity.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_originial_llm_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_originial_llm_request.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_random_event_driven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_random_event_driven.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_random_zipkin_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_random_zipkin_portal.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_random_zipkin_spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_random_zipkin_spans.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_roundrobin_agents_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_roundrobin_agents_health.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_roundrobin_redis_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_roundrobin_redis_empty.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_roundrobin_redis_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_roundrobin_redis_reset.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_roundrobin_zipkin_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_roundrobin_zipkin_portal.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-agents/workflows_roundrobin_zipkin_spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-agents/workflows_roundrobin_zipkin_spans.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-shared/daemonset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-shared/daemonset.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-shared/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-shared/deployment.png -------------------------------------------------------------------------------- /daprdocs/static/images/dapr-shared/sidecar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dapr-shared/sidecar.png -------------------------------------------------------------------------------- /daprdocs/static/images/daprcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/daprcon.png -------------------------------------------------------------------------------- /daprdocs/static/images/dash0-dapr-trace-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dash0-dapr-trace-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/dash0-dapr-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dash0-dapr-trace.png -------------------------------------------------------------------------------- /daprdocs/static/images/datadog-traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/datadog-traces.png -------------------------------------------------------------------------------- /daprdocs/static/images/diagrid-conductor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/diagrid-conductor.png -------------------------------------------------------------------------------- /daprdocs/static/images/docker-desktop-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/docker-desktop-setting.png -------------------------------------------------------------------------------- /daprdocs/static/images/dynamic_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/dynamic_range.png -------------------------------------------------------------------------------- /daprdocs/static/images/emptybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/emptybox.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-actor-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-actor-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-add-datasources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-add-datasources.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-datasources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-datasources.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-prometheus-dapr-server-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-prometheus-dapr-server-url.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-sidecar-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-sidecar-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-system-service-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-system-service-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-tooltip.png -------------------------------------------------------------------------------- /daprdocs/static/images/grafana-uploadjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/grafana-uploadjson.png -------------------------------------------------------------------------------- /daprdocs/static/images/healthz-outbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/healthz-outbound.png -------------------------------------------------------------------------------- /daprdocs/static/images/heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/heap.png -------------------------------------------------------------------------------- /daprdocs/static/images/home-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/home-title.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/code.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/dapr-agents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/dapr-agents.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/dark-blue-dapr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/dark-blue-dapr.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/dotnet.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/golang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/golang.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/java.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/javalang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/javalang.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/javascript.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/php.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/pub-sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/pub-sub.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/python.png -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/service-invocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/service-invocation.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/vscode.svg -------------------------------------------------------------------------------- /daprdocs/static/images/homepage/workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/homepage/workflow.svg -------------------------------------------------------------------------------- /daprdocs/static/images/howto-bindings/kafka-output-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-bindings/kafka-output-binding.png -------------------------------------------------------------------------------- /daprdocs/static/images/howto-namespace/basic-pubsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-namespace/basic-pubsub.png -------------------------------------------------------------------------------- /daprdocs/static/images/howto-namespace/with-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-namespace/with-namespace.png -------------------------------------------------------------------------------- /daprdocs/static/images/howto-namespace/without-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-namespace/without-namespace.png -------------------------------------------------------------------------------- /daprdocs/static/images/howto-secrets/secrets-mgmt-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-secrets/secrets-mgmt-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/howto-triggers/kafka-input-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/howto-triggers/kafka-input-binding.png -------------------------------------------------------------------------------- /daprdocs/static/images/install-dapr-selfhost-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/install-dapr-selfhost-windows.png -------------------------------------------------------------------------------- /daprdocs/static/images/install-dapr-selfhost/dapr-init-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/install-dapr-selfhost/dapr-init-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/install-dapr-selfhost/docker-containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/install-dapr-selfhost/docker-containers.png -------------------------------------------------------------------------------- /daprdocs/static/images/install-dapr-selfhost/windows-view-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/install-dapr-selfhost/windows-view-components.png -------------------------------------------------------------------------------- /daprdocs/static/images/intellij_debug_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/intellij_debug_app.png -------------------------------------------------------------------------------- /daprdocs/static/images/intellij_debug_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/intellij_debug_menu.png -------------------------------------------------------------------------------- /daprdocs/static/images/intellij_edit_run_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/intellij_edit_run_configuration.png -------------------------------------------------------------------------------- /daprdocs/static/images/intellij_start_dapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/intellij_start_dapr.png -------------------------------------------------------------------------------- /daprdocs/static/images/jaeger_grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/jaeger_grafana.png -------------------------------------------------------------------------------- /daprdocs/static/images/jaeger_storage_elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/jaeger_storage_elasticsearch.png -------------------------------------------------------------------------------- /daprdocs/static/images/jaeger_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/jaeger_ui.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-1.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-2.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-3.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-4.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-5.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-6.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-7.png -------------------------------------------------------------------------------- /daprdocs/static/images/kibana-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/kibana-8.png -------------------------------------------------------------------------------- /daprdocs/static/images/lock-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/lock-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/middleware.png -------------------------------------------------------------------------------- /daprdocs/static/images/multi-app-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/multi-app-structure.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-apm-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-apm-frontend.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-apm-subtractor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-apm-subtractor-1.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-apm-subtractor-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-apm-subtractor-2.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-automated-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-automated-installer.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dapr-distributed-calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dapr-distributed-calculator.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-1.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-2.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-3.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-4.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-5.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-6.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-metrics-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-metrics-7.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-dapr-system-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-dapr-system-services.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-dashboard-k8s-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-dashboard-k8s-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-distributed-calculator-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-distributed-calculator-ui.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-distributed-tracing-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-distributed-tracing-detail.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-distributed-tracing-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-distributed-tracing-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-grafana-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-grafana-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-grafana-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-grafana-datasource.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-k8s-cluster-explorer-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-k8s-cluster-explorer-app.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-k8s-cluster-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-k8s-cluster-explorer.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-k8s-logs-in-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-k8s-logs-in-context.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-k8s-pod-level-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-k8s-pod-level-details.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-logging-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-logging-1.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-logging-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-logging-2.png -------------------------------------------------------------------------------- /daprdocs/static/images/nr-metrics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/nr-metrics-1.png -------------------------------------------------------------------------------- /daprdocs/static/images/observability-app-health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/observability-app-health.webp -------------------------------------------------------------------------------- /daprdocs/static/images/observability-opentelemetry-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/observability-opentelemetry-collector.png -------------------------------------------------------------------------------- /daprdocs/static/images/observability-sidecar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/observability-sidecar.png -------------------------------------------------------------------------------- /daprdocs/static/images/observability-tracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/observability-tracing.png -------------------------------------------------------------------------------- /daprdocs/static/images/open-telemetry-app-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/open-telemetry-app-insights.png -------------------------------------------------------------------------------- /daprdocs/static/images/open-telemetry-collector-dynatrace-traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/open-telemetry-collector-dynatrace-traces.png -------------------------------------------------------------------------------- /daprdocs/static/images/open-telemetry-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/open-telemetry-collector.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-kubernetes.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-sidecar-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-sidecar-apis.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-sidecar-kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-sidecar-kubernetes.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-sidecar-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-sidecar-model.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-sidecar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-sidecar.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-standalone-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-standalone-docker.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-standalone.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview-vms-hosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview-vms-hosting.png -------------------------------------------------------------------------------- /daprdocs/static/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/perf_invocation_p90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/perf_invocation_p90.png -------------------------------------------------------------------------------- /daprdocs/static/images/perf_invocation_p99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/perf_invocation_p99.png -------------------------------------------------------------------------------- /daprdocs/static/images/programming_experience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/programming_experience.png -------------------------------------------------------------------------------- /daprdocs/static/images/prometheus-service-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/prometheus-service-discovery.png -------------------------------------------------------------------------------- /daprdocs/static/images/prometheus-web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/prometheus-web-ui.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-howto-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-howto-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-multiple-namespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-multiple-namespaces.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-overview-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-overview-components.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-overview-pattern-competing-consumers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-overview-pattern-competing-consumers.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-overview-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-overview-pattern.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-overview-publish-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-overview-publish-API.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-publish-subscribe-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-publish-subscribe-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-diagram.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-dotnet-publisher-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-dotnet-publisher-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-dotnet-subscriber-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-dotnet-subscriber-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-java-publisher-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-java-publisher-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-java-subscriber-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-java-subscriber-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-js-publisher-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-js-publisher-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-js-subscriber-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-js-subscriber-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-python-publisher-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-python-publisher-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub-quickstart/pubsub-python-subscriber-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub-quickstart/pubsub-python-subscriber-output.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub_deadletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub_deadletter.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub_publish_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub_publish_raw.png -------------------------------------------------------------------------------- /daprdocs/static/images/pubsub_subscribe_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/pubsub_subscribe_raw.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency-quickstart-svc-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency-quickstart-svc-component.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency-quickstart-svc-invoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency-quickstart-svc-invoke.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency_diagram.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency_inbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency_inbound.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency_outbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency_outbound.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency_pubsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency_pubsub.png -------------------------------------------------------------------------------- /daprdocs/static/images/resiliency_svc_invocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/resiliency_svc_invocation.png -------------------------------------------------------------------------------- /daprdocs/static/images/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/roadmap.png -------------------------------------------------------------------------------- /daprdocs/static/images/sample_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/sample_trace.png -------------------------------------------------------------------------------- /daprdocs/static/images/scheduler/scheduler-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/scheduler/scheduler-architecture.png -------------------------------------------------------------------------------- /daprdocs/static/images/secrets-overview-azure-aks-keyvault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/secrets-overview-azure-aks-keyvault.png -------------------------------------------------------------------------------- /daprdocs/static/images/secrets-overview-cloud-stores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/secrets-overview-cloud-stores.png -------------------------------------------------------------------------------- /daprdocs/static/images/secrets-overview-kubernetes-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/secrets-overview-kubernetes-store.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-dapr-API-scoping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-dapr-API-scoping.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-end-to-end-communication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-end-to-end-communication.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-mTLS-dapr-system-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-mTLS-dapr-system-services.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-mTLS-sentry-kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-mTLS-sentry-kubernetes.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-mTLS-sentry-selfhosted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-mTLS-sentry-selfhosted.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-overview-capabilities-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-overview-capabilities-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/security-threat-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/security-threat-model.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-mdns-round-robin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-mdns-round-robin.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-overview-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-overview-example.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-overview-non-dapr-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-overview-non-dapr-endpoint.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-security.png -------------------------------------------------------------------------------- /daprdocs/static/images/service-invocation-simple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-invocation-simple.webp -------------------------------------------------------------------------------- /daprdocs/static/images/service-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/service-mesh.png -------------------------------------------------------------------------------- /daprdocs/static/images/sidecar-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/sidecar-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/sidecar-health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/sidecar-health.png -------------------------------------------------------------------------------- /daprdocs/static/images/skip-tls-verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/skip-tls-verify.png -------------------------------------------------------------------------------- /daprdocs/static/images/state-management-outbox-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state-management-outbox-steps.png -------------------------------------------------------------------------------- /daprdocs/static/images/state-management-outbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state-management-outbox.png -------------------------------------------------------------------------------- /daprdocs/static/images/state-management-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state-management-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/state-management-query-mongodb-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state-management-query-mongodb-dataset.png -------------------------------------------------------------------------------- /daprdocs/static/images/state-management-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state-management-quickstart.png -------------------------------------------------------------------------------- /daprdocs/static/images/state_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/state_management.png -------------------------------------------------------------------------------- /daprdocs/static/images/system-service-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/system-service-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/tokens-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/tokens-auth.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-extension-invoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-extension-invoke.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-extension-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-extension-publish.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-extension-scaffold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-extension-scaffold.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-extension-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-extension-view.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-launch-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-launch-configuration.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-remotecontainers-addcontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-remotecontainers-addcontainer.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-remotecontainers-daprcontainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-remotecontainers-daprcontainers.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode-remotecontainers-reopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode-remotecontainers-reopen.png -------------------------------------------------------------------------------- /daprdocs/static/images/vscode_remote_containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/vscode_remote_containers.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-actor-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-actor-flowchart.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-actor-reminder-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-actor-reminder-flow.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-actor-scale-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-actor-scale-out.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-async-request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-async-request-response.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-diagrid-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-diagrid-dashboard.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-engine-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-engine-protocol.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-execution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-execution-2.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-execution.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-monitor-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-monitor-pattern.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-multi-app-callactivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-multi-app-callactivity.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-multi-app-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-multi-app-complex.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflow-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflow-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflows-architecture-k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflows-architecture-k8s.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflows-chaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflows-chaining.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflows-compensation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflows-compensation.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-overview/workflows-fanin-fanout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-overview/workflows-fanin-fanout.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-quickstart-controlflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-quickstart-controlflow.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-quickstart-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-quickstart-overview.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-trace-spans-zipkin-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-trace-spans-zipkin-python.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflow-trace-spans-zipkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflow-trace-spans-zipkin.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflows-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflows-api.png -------------------------------------------------------------------------------- /daprdocs/static/images/workflows-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/workflows-diagram.png -------------------------------------------------------------------------------- /daprdocs/static/images/zipkin_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/images/zipkin_ui.png -------------------------------------------------------------------------------- /daprdocs/static/js/copy-code-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/js/copy-code-button.js -------------------------------------------------------------------------------- /daprdocs/static/presentations/2019IgniteCloudNativeApps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/presentations/2019IgniteCloudNativeApps.pdf -------------------------------------------------------------------------------- /daprdocs/static/presentations/2020ReadyCloudNativeApps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/presentations/2020ReadyCloudNativeApps.pdf -------------------------------------------------------------------------------- /daprdocs/static/presentations/Dapr-Diagrams-template.pptx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/presentations/Dapr-Diagrams-template.pptx.zip -------------------------------------------------------------------------------- /daprdocs/static/presentations/dapr-slidedecks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/static/presentations/dapr-slidedecks.zip -------------------------------------------------------------------------------- /daprdocs/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/daprdocs/staticwebapp.config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/go.sum -------------------------------------------------------------------------------- /hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/hugo.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/add-tabpane-text-parameter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/add-tabpane-text-parameter.sh -------------------------------------------------------------------------------- /scripts/check-tabpane-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/check-tabpane-format.sh -------------------------------------------------------------------------------- /scripts/format-all-tabpanes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/format-all-tabpanes.sh -------------------------------------------------------------------------------- /scripts/format-tabpane.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/format-tabpane.sh -------------------------------------------------------------------------------- /scripts/init-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/init-container.sh -------------------------------------------------------------------------------- /scripts/remove_backup_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/remove_backup_files.sh -------------------------------------------------------------------------------- /scripts/update-lang-sdk-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/update-lang-sdk-docs.sh -------------------------------------------------------------------------------- /scripts/update-sdk-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/scripts/update-sdk-docs.sh -------------------------------------------------------------------------------- /sdkdocs/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/README.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-contributing/dotnet-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-contributing/dotnet-contributing.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-actors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-actors/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-ai/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-ai/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-client/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-client/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-cryptography/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-cryptography/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-distributed-lock/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-distributed-lock/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-guidance/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-guidance/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-integrations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-integrations/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-jobs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-jobs/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-jobs/dotnet-jobs-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-jobs/dotnet-jobs-howto.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-messaging/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-messaging/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-troubleshooting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-troubleshooting/_index.md -------------------------------------------------------------------------------- /sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-workflow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/dotnet/content/en/dotnet-sdk-docs/dotnet-workflow/_index.md -------------------------------------------------------------------------------- /sdkdocs/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/README.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-contributing/go-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-contributing/go-contributing.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-docs/go-client/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-docs/go-client/_index.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-docs/go-service/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-docs/go-service/_index.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-docs/go-service/grpc-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-docs/go-service/grpc-service.md -------------------------------------------------------------------------------- /sdkdocs/go/content/en/go-sdk-docs/go-service/http-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/go/content/en/go-sdk-docs/go-service/http-service.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-contributing/java-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-contributing/java-contributing.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-ai/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-ai/_index.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-ai/java-ai-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-ai/java-ai-howto.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-client/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-client/_index.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-client/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-client/properties.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-jobs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-jobs/_index.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-jobs/java-jobs-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-jobs/java-jobs-howto.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-workflow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-workflow/_index.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/java-workflow/java-workflow-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/java-workflow/java-workflow-howto.md -------------------------------------------------------------------------------- /sdkdocs/java/content/en/java-sdk-docs/spring-boot/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/java/content/en/java-sdk-docs/spring-boot/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/README.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-contributing/js-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-contributing/js-contributing.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/images/dapr-client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/images/dapr-client.jpg -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/images/dapr-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/images/dapr-server.jpg -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-actors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-actors/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-client/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-client/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-examples/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-logger/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-logger/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-server/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-server/_index.md -------------------------------------------------------------------------------- /sdkdocs/js/content/en/js-sdk-docs/js-workflow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/js/content/en/js-sdk-docs/js-workflow/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-actors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-actors/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-actors/php-actor-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-actors/php-actor-reference.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-app/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-app/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-app/php-unit-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-app/php-unit-testing.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-pubsub/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-pubsub/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-serialization.md -------------------------------------------------------------------------------- /sdkdocs/php/content/en/php-sdk-docs/php-state/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/php/content/en/php-sdk-docs/php-state/_index.md -------------------------------------------------------------------------------- /sdkdocs/php/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdkdocs/pluggable-components/dotnet/content/en/dotnet-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/pluggable-components/dotnet/content/en/dotnet-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/pluggable-components/go/content/en/go-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/pluggable-components/go/content/en/go-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-advanced/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-advanced/_index.md -------------------------------------------------------------------------------- /sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-bindings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-bindings/_index.md -------------------------------------------------------------------------------- /sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-pub-sub/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/pluggable-components/go/content/en/go-sdk-docs/go-pub-sub/_index.md -------------------------------------------------------------------------------- /sdkdocs/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/README.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-contributing/python-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-contributing/python-contributing.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-docs/conversation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-docs/conversation.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-docs/python-actor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-docs/python-actor.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-docs/python-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-docs/python-client.md -------------------------------------------------------------------------------- /sdkdocs/python/content/en/python-sdk-docs/python-sdk-extensions/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/python/content/en/python-sdk-docs/python-sdk-extensions/_index.md -------------------------------------------------------------------------------- /sdkdocs/rust/content/en/rust-sdk-contributing/rust-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/rust/content/en/rust-sdk-contributing/rust-contributing.md -------------------------------------------------------------------------------- /sdkdocs/rust/content/en/rust-sdk-docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/rust/content/en/rust-sdk-docs/_index.md -------------------------------------------------------------------------------- /sdkdocs/rust/content/en/rust-sdk-docs/rust-client/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/docs/HEAD/sdkdocs/rust/content/en/rust-sdk-docs/rust-client/_index.md --------------------------------------------------------------------------------