├── .dockerignore ├── .fossa.yml ├── .github ├── .editorconfig ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ └── --feature-request.md ├── archive │ └── trigger-submodule-update.yaml ├── release.yml └── workflows │ ├── artifacts.yaml │ ├── ci.yaml │ ├── config-reloader.yaml │ ├── dependency-images.yaml │ ├── e2e.yaml │ ├── fluentd-drain-watch.yaml │ ├── fluentd-images.yaml │ ├── node-exporter.yaml │ ├── release.yaml │ └── syslog-ng-reloader.yaml ├── .gitignore ├── .go-version ├── .golangci.yml ├── .idea ├── copyright │ ├── Kube_Logging_authors.xml │ └── profiles_settings.xml ├── logging-operator.iml ├── modules.xml └── vcs.xml ├── .licensei.toml ├── .testcoverage.yml ├── .tool-versions ├── ADOPTERS.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE ├── PROJECT ├── README.md ├── charts-docs ├── README.md └── templates │ ├── README.md.gotmpl │ └── overrides.gotmpl ├── charts ├── logging-demo │ └── README.md └── logging-operator │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ └── logging-operator-crds │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── logging-extensions.banzaicloud.io_eventtailers.yaml │ │ ├── logging-extensions.banzaicloud.io_hosttailers.yaml │ │ ├── logging.banzaicloud.io_axosyslogs.yaml │ │ ├── logging.banzaicloud.io_clusterflows.yaml │ │ ├── logging.banzaicloud.io_clusteroutputs.yaml │ │ ├── logging.banzaicloud.io_flows.yaml │ │ ├── logging.banzaicloud.io_fluentbitagents.yaml │ │ ├── logging.banzaicloud.io_fluentdconfigs.yaml │ │ ├── logging.banzaicloud.io_loggingroutes.yaml │ │ ├── logging.banzaicloud.io_loggings.yaml │ │ ├── logging.banzaicloud.io_outputs.yaml │ │ ├── logging.banzaicloud.io_syslogngclusterflows.yaml │ │ ├── logging.banzaicloud.io_syslogngclusteroutputs.yaml │ │ ├── logging.banzaicloud.io_syslogngconfigs.yaml │ │ ├── logging.banzaicloud.io_syslogngflows.yaml │ │ └── logging.banzaicloud.io_syslogngoutputs.yaml │ │ └── values.yaml │ ├── crds │ ├── logging-extensions.banzaicloud.io_eventtailers.yaml │ ├── logging-extensions.banzaicloud.io_hosttailers.yaml │ ├── logging.banzaicloud.io_axosyslogs.yaml │ ├── logging.banzaicloud.io_clusterflows.yaml │ ├── logging.banzaicloud.io_clusteroutputs.yaml │ ├── logging.banzaicloud.io_flows.yaml │ ├── logging.banzaicloud.io_fluentbitagents.yaml │ ├── logging.banzaicloud.io_fluentdconfigs.yaml │ ├── logging.banzaicloud.io_loggingroutes.yaml │ ├── logging.banzaicloud.io_loggings.yaml │ ├── logging.banzaicloud.io_outputs.yaml │ ├── logging.banzaicloud.io_syslogngclusterflows.yaml │ ├── logging.banzaicloud.io_syslogngclusteroutputs.yaml │ ├── logging.banzaicloud.io_syslogngconfigs.yaml │ ├── logging.banzaicloud.io_syslogngflows.yaml │ └── logging.banzaicloud.io_syslogngoutputs.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── crds.yaml │ ├── deployment.yaml │ ├── extra-manifests.yaml │ ├── logging │ │ ├── clusterflows.yaml │ │ ├── clusteroutputs.yaml │ │ ├── eventtailer.yaml │ │ ├── fluentbit.yaml │ │ ├── hosttailers.yaml │ │ └── logging.yaml │ ├── service.yaml │ ├── service_monitor.yaml │ ├── serviceaccount.yaml │ ├── test_receiver.yaml │ └── userrole.yaml │ ├── values-logging-example.yaml │ └── values.yaml ├── cmd └── docs.go ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── logging-extensions.banzaicloud.io_eventtailers.yaml │ │ ├── logging-extensions.banzaicloud.io_hosttailers.yaml │ │ ├── logging.banzaicloud.io_axosyslogs.yaml │ │ ├── logging.banzaicloud.io_clusterflows.yaml │ │ ├── logging.banzaicloud.io_clusteroutputs.yaml │ │ ├── logging.banzaicloud.io_flows.yaml │ │ ├── logging.banzaicloud.io_fluentbitagents.yaml │ │ ├── logging.banzaicloud.io_fluentdconfigs.yaml │ │ ├── logging.banzaicloud.io_loggingroutes.yaml │ │ ├── logging.banzaicloud.io_loggings.yaml │ │ ├── logging.banzaicloud.io_outputs.yaml │ │ ├── logging.banzaicloud.io_syslogngclusterflows.yaml │ │ ├── logging.banzaicloud.io_syslogngclusteroutputs.yaml │ │ ├── logging.banzaicloud.io_syslogngconfigs.yaml │ │ ├── logging.banzaicloud.io_syslogngflows.yaml │ │ └── logging.banzaicloud.io_syslogngoutputs.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_clusterflows.yaml │ │ ├── cainjection_in_clusteroutputs.yaml │ │ ├── cainjection_in_flows.yaml │ │ ├── cainjection_in_fluentbits.yaml │ │ ├── cainjection_in_fluentds.yaml │ │ ├── cainjection_in_loggings.yaml │ │ ├── cainjection_in_outputs.yaml │ │ ├── webhook_in_clusterflows.yaml │ │ ├── webhook_in_clusteroutputs.yaml │ │ ├── webhook_in_flows.yaml │ │ ├── webhook_in_fluentbits.yaml │ │ ├── webhook_in_fluentds.yaml │ │ ├── webhook_in_loggings.yaml │ │ └── webhook_in_outputs.yaml ├── dashboards │ └── logging-dashboard.json ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_image_patch.yaml │ ├── manager_image_patch.yaml-e │ ├── manager_prometheus_metrics_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── rbac │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ └── role_binding.yaml ├── samples │ ├── all-to-file.yaml │ ├── all-to-stdout-nslabel.yaml │ ├── all-to-stdout.yaml │ ├── archive │ │ ├── logging_v1alpha2_cluster_output_custom.yaml │ │ ├── logging_v1alpha2_flow.yaml │ │ ├── logging_v1alpha2_flow_custom.yaml │ │ ├── logging_v1alpha2_logging_custom.yaml │ │ ├── logging_v1alpha2_logging_debug.yaml │ │ ├── logging_v1alpha2_logging_default.yaml │ │ ├── logging_v1alpha2_logging_disablelogrotate.yaml │ │ ├── logging_v1alpha2_logging_labels.yaml │ │ ├── logging_v1alpha2_logging_psp.yaml │ │ ├── logging_v1alpha2_logging_pvc.yaml │ │ ├── logging_v1alpha2_logging_tailer.yaml │ │ ├── logging_v1alpha2_multiflow.yaml │ │ ├── logging_v1alpha2_output.yaml │ │ └── logging_v1alpha2_output_custom.yaml │ ├── configcheck-timeout-syslog-ng.yaml │ ├── configcheck-timeout.yaml │ ├── containerd-log.yaml │ ├── containerd-merge-log.yaml │ ├── extensions │ │ ├── logging-extensions_v1alpha1_eventtailer_with_pvc.yaml │ │ ├── logging-extensions_v1alpha1_eventtailer_without_pvc.yaml │ │ ├── logging-extensions_v1alpha1_hosttailer.yaml │ │ ├── logging-extensions_v1alpha1_webhook.yaml │ │ ├── testpod.yaml │ │ ├── testpod_annotated.yaml │ │ └── testpod_annotated_multicontainer.yaml │ ├── fluentbit-multi.yaml │ ├── fluentd-extravolumes.yaml │ ├── fluentdconfig.yaml │ ├── logging_logging_fluentd_sidecars.yaml │ ├── logging_logging_watchNamespaceSelector.yaml │ ├── logging_logging_with_monitoring.yaml │ ├── mulitenant-hard │ │ ├── README.md │ │ └── logging │ │ │ ├── receiver-infra.yaml │ │ │ ├── tenant-a-logging.yaml │ │ │ ├── tenant-a-user.yaml │ │ │ ├── tenant-b-logging.yaml │ │ │ └── tenant-b-user.yaml │ ├── multitenant-routing-2 │ │ ├── README.md │ │ └── logging │ │ │ ├── tenant-a-logging.yaml │ │ │ ├── tenant-a-user.yaml │ │ │ ├── tenant-b-logging.yaml │ │ │ ├── tenant-b-user1.yaml │ │ │ ├── tenant-b-user2.yaml │ │ │ ├── tenant-c-logging.yaml │ │ │ ├── tenant-c-user.yaml │ │ │ ├── tenant-infra-logging.yaml │ │ │ └── tenant-infra-receiver.yaml │ ├── multitenant-routing-tc │ │ └── tc-simple │ │ │ ├── README.md │ │ │ ├── collector.yaml │ │ │ ├── tenant-a.yaml │ │ │ ├── tenant-b.yaml │ │ │ └── tenant-infra.yaml │ ├── multitenant-routing │ │ ├── README.md │ │ └── logging │ │ │ ├── tenant-a-logging.yaml │ │ │ ├── tenant-b-logging.yaml │ │ │ ├── tenant-infra-logging.yaml │ │ │ └── tenant-infra-receiver.yaml │ ├── syslog-ng-custom-metrics.yaml │ ├── syslog-ng-otlp │ │ ├── manifests.yaml │ │ └── opentelemetry.yaml │ ├── syslog-ng-pvc-metrics.yaml │ ├── syslog-ng-retry.yaml │ ├── syslog-ng-simple.yaml │ └── telemetry-controller-routing │ │ ├── README.md │ │ ├── tc-tenant-a-logging.yaml │ │ ├── tc-tenant-b-logging.yaml │ │ ├── tc-tenant-infra-logging.yaml │ │ └── tc-tenant-infra-receiver.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── extensions │ ├── eventtailer_controller.go │ ├── hosttailer_controller.go │ └── suite_test.go └── logging │ ├── axosyslog_controller.go │ ├── logging_controller.go │ ├── logging_controller_match_test.go │ ├── logging_controller_test.go │ ├── loggingroute_controller.go │ ├── suite_test.go │ ├── telemetry_controller_controller.go │ └── tenant_test.go ├── docs ├── README.md ├── configuration │ ├── crds │ │ ├── extensions │ │ │ └── v1alpha1 │ │ │ │ ├── eventtailer_types.md │ │ │ │ ├── filetailer.md │ │ │ │ ├── hosttailer_types.md │ │ │ │ └── systemdtailer.md │ │ └── v1beta1 │ │ │ ├── _index.md │ │ │ ├── axosyslog_types.md │ │ │ ├── clusterflow_types.md │ │ │ ├── clusteroutput_types.md │ │ │ ├── common_types.md │ │ │ ├── conversion.md │ │ │ ├── flow_types.md │ │ │ ├── fluentbit_types.md │ │ │ ├── fluentd_config_types.md │ │ │ ├── fluentd_types.md │ │ │ ├── logging_types.md │ │ │ ├── loggingroute_types.md │ │ │ ├── output_types.md │ │ │ ├── syslogng_clusterflow_types.md │ │ │ ├── syslogng_clusteroutput_types.md │ │ │ ├── syslogng_config_types.md │ │ │ ├── syslogng_flow_types.md │ │ │ ├── syslogng_output_types.md │ │ │ └── syslogng_types.md │ └── plugins │ │ ├── _index.md │ │ ├── common │ │ ├── security.md │ │ └── transport.md │ │ ├── filters │ │ ├── concat.md │ │ ├── dedot.md │ │ ├── detect_exceptions.md │ │ ├── elasticsearch_genid.md │ │ ├── enhance_k8s.md │ │ ├── geoip.md │ │ ├── grep.md │ │ ├── kube_events_timestamp.md │ │ ├── parser.md │ │ ├── prometheus.md │ │ ├── record_modifier.md │ │ ├── record_transformer.md │ │ ├── stdout.md │ │ ├── sumologic.md │ │ ├── tagnormaliser.md │ │ ├── throttle.md │ │ └── useragent.md │ │ ├── outputs │ │ ├── aws_elasticsearch.md │ │ ├── azurestore.md │ │ ├── buffer.md │ │ ├── cloudwatch.md │ │ ├── datadog.md │ │ ├── elasticsearch.md │ │ ├── file.md │ │ ├── format.md │ │ ├── format_rfc5424.md │ │ ├── forward.md │ │ ├── gcs.md │ │ ├── gelf.md │ │ ├── http.md │ │ ├── kafka.md │ │ ├── kinesis_firehose.md │ │ ├── kinesis_stream.md │ │ ├── lm_logs.md │ │ ├── logdna.md │ │ ├── logz.md │ │ ├── loki.md │ │ ├── mattermost.md │ │ ├── newrelic.md │ │ ├── null.md │ │ ├── opensearch.md │ │ ├── oss.md │ │ ├── rabbitmq.md │ │ ├── redis.md │ │ ├── relabel.md │ │ ├── s3.md │ │ ├── splunk_hec.md │ │ ├── sqs.md │ │ ├── sumologic.md │ │ ├── syslog.md │ │ ├── vmware_log_intelligence.md │ │ └── vmware_loginsight.md │ │ ├── syslogng-filters │ │ ├── match.md │ │ ├── parser.md │ │ └── rewrite.md │ │ ├── syslogng-outputs │ │ ├── auth.md │ │ ├── disk_buffer.md │ │ ├── elasticsearch.md │ │ ├── elasticsearch_datastream.md │ │ ├── file.md │ │ ├── http.md │ │ ├── loggly.md │ │ ├── logscale.md │ │ ├── loki.md │ │ ├── mongodb.md │ │ ├── mqtt.md │ │ ├── openobserve.md │ │ ├── opentelemetry.md │ │ ├── redis.md │ │ ├── s3.md │ │ ├── splunk_hec.md │ │ ├── sumologic_http.md │ │ ├── sumologic_syslog.md │ │ ├── syslog.md │ │ └── tls.md │ │ └── syslogng │ │ ├── filters │ │ ├── match.md │ │ ├── parser.md │ │ └── rewrite.md │ │ └── outputs │ │ ├── disk_buffer.md │ │ ├── file.md │ │ ├── loggly.md │ │ ├── sumologic_http.md │ │ ├── sumologic_syslog.md │ │ ├── syslog.md │ │ └── tls.md ├── fluentbit-config-reload.md ├── fluentbit-flow-control.md ├── logging-route.md ├── multi-tenancy.md ├── multi-worker.md ├── scaling.md ├── sniffing-trafic.md ├── standalone-aggregator-config.md ├── syslog-ng-date-parser.md ├── syslogng-quickstart.md ├── terraform-syslog-ng-s3.md └── volume-drainer.md ├── e2e ├── common │ ├── cluster.go │ ├── cond │ │ └── conditions.go │ ├── helpers.go │ ├── kind.go │ ├── kind │ │ └── commands.go │ ├── panicobject.go │ ├── resources.go │ └── setup │ │ ├── loggingoperator.go │ │ ├── logproducer.go │ │ └── restclientgetter.go ├── elasticsearch-multiversion │ └── elasticsearch_multiversion_test.go ├── fluentbit-agent-namespace │ └── fluentbit_agent_namespace_test.go ├── fluentbit-hotreload │ └── fluentbit_hotreload_test.go ├── fluentbit-multitenant │ └── fluentbit_multitenant_test.go ├── fluentd-aggregator-detached-multiple-failures │ └── fluentd_aggregator_detached_multiple_failures_test.go ├── fluentd-aggregator-detached │ └── fluentd_aggregator_detached_test.go ├── fluentd-aggregator-namespacelabel │ └── fluentd_aggregator_test.go ├── fluentd-aggregator │ └── fluentd_aggregator_test.go ├── go.mod ├── go.sum ├── logging_metrics_monitoring │ └── logging_metrics_monitoring_test.go ├── syslog-ng-aggregator-detached │ └── syslog_ng_aggregator_detached_test.go ├── syslog-ng-aggregator │ └── syslog_ng_aggregator_test.go ├── volumedrain │ └── volumedrain_test.go └── watch-selector │ └── watch_selector_test.go ├── go.mod ├── go.sum ├── go.work ├── hack ├── boilerplate.go.txt ├── crds.annotations.snippet.txt ├── test.sh └── values.yaml ├── images ├── config-reloader │ ├── Dockerfile │ ├── README.md │ ├── cmd │ │ └── configreloader │ │ │ └── main.go │ ├── go.mod │ ├── go.sum │ └── pkg │ │ ├── configreloader │ │ ├── configreloader.go │ │ └── types.go │ │ └── metrics │ │ └── metrics.go ├── fluentd-drain-watch │ ├── Dockerfile │ ├── README.md │ └── drain-watch.sh ├── fluentd │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ ├── filters │ │ ├── Gemfile │ │ └── Gemfile.lock │ ├── fluent.conf │ ├── healthy.sh │ └── outputs │ │ ├── Gemfile │ │ └── Gemfile.lock ├── node-exporter │ ├── Dockerfile │ ├── README.md │ └── buffer-size.sh └── syslog-ng-reloader │ ├── Dockerfile │ └── README.md ├── main.go ├── pkg ├── compression │ └── compression.go ├── mirror │ └── struct_iter.go ├── resources │ ├── annotation │ │ ├── annotation.go │ │ └── annotation_test.go │ ├── configcheck │ │ └── configcheck.go │ ├── eventtailer │ │ ├── clusterrole.go │ │ ├── clusterrolebinding.go │ │ ├── configmap.go │ │ ├── eventtailer.go │ │ ├── helpers.go │ │ ├── serviceaccount.go │ │ └── statefulset.go │ ├── features.go │ ├── fluentbit │ │ ├── buffervolumeprometheusrules.go │ │ ├── config.go │ │ ├── configsecret.go │ │ ├── configsecret_test.go │ │ ├── daemonset.go │ │ ├── fluentbit.go │ │ ├── meta.go │ │ ├── prometheusrules.go │ │ ├── rbac.go │ │ ├── service.go │ │ └── tenants.go │ ├── fluentd │ │ ├── appconfigmap.go │ │ ├── buffervolumeprometheusrules.go │ │ ├── component.go │ │ ├── config.go │ │ ├── configsecret.go │ │ ├── dataprovider.go │ │ ├── drainjob.go │ │ ├── fluentd.go │ │ ├── meta.go │ │ ├── outputsecret.go │ │ ├── pdb.go │ │ ├── placeholderpod.go │ │ ├── prometheusrules.go │ │ ├── rbac.go │ │ ├── service.go │ │ └── statefulset.go │ ├── hosttailer │ │ ├── helpers.go │ │ └── hosttailer.go │ ├── kubetool │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── volumebuilder.go │ │ ├── volumebuilder_test.go │ │ ├── volumemountbuilder.go │ │ └── volumemountbuilder_test.go │ ├── loggingdataprovider │ │ └── interface.go │ ├── model │ │ ├── reconciler.go │ │ ├── reconciler_test.go │ │ ├── repository.go │ │ ├── resources.go │ │ └── system.go │ ├── prometheus-operator │ │ └── helper.go │ ├── reconciler.go │ ├── syslogng │ │ ├── buffervolumeprometheusrules.go │ │ ├── component.go │ │ ├── configcheck.go │ │ ├── configsecret.go │ │ ├── dataprovider.go │ │ ├── meta.go │ │ ├── outputsecret.go │ │ ├── prometheusrules.go │ │ ├── rbac.go │ │ ├── service.go │ │ ├── statefulset.go │ │ └── syslogng.go │ ├── telemetry-controller │ │ └── resources.go │ ├── templates │ │ └── templates.go │ └── volumepath │ │ ├── volumepath.go │ │ └── volumepath_test.go ├── sdk │ ├── extensions │ │ ├── api │ │ │ ├── tailer │ │ │ │ ├── tailer.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1alpha1 │ │ │ │ ├── eventtailer_types.go │ │ │ │ ├── filetailer.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── hosttailer_types.go │ │ │ │ ├── systemdtailer.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── extensionsconfig │ │ │ ├── config.go │ │ │ └── config_test.go │ ├── go.mod │ ├── go.sum │ ├── logging │ │ ├── api │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterflow_conversion.go │ │ │ │ ├── clusterflow_types.go │ │ │ │ ├── clusteroutput_conversion.go │ │ │ │ ├── clusteroutput_types.go │ │ │ │ ├── conversion.go │ │ │ │ ├── flow_conversion.go │ │ │ │ ├── flow_types.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── logging_conversion.go │ │ │ │ ├── logging_types.go │ │ │ │ ├── output_conversion.go │ │ │ │ ├── output_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── axosyslog_types.go │ │ │ │ ├── clusterflow_types.go │ │ │ │ ├── clusterflow_types_test.go │ │ │ │ ├── clusteroutput_types.go │ │ │ │ ├── clusteroutput_types_test.go │ │ │ │ ├── common_types.go │ │ │ │ ├── common_types_test.go │ │ │ │ ├── conversion.go │ │ │ │ ├── flow_types.go │ │ │ │ ├── flow_types_test.go │ │ │ │ ├── fluentbit_types.go │ │ │ │ ├── fluentd_config_types.go │ │ │ │ ├── fluentd_types.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── logging_types.go │ │ │ │ ├── loggingroute_types.go │ │ │ │ ├── output_types.go │ │ │ │ ├── output_types_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── syslogng_clusterflow_types.go │ │ │ │ ├── syslogng_clusteroutput_types.go │ │ │ │ ├── syslogng_config_types.go │ │ │ │ ├── syslogng_flow_types.go │ │ │ │ ├── syslogng_output_types.go │ │ │ │ ├── syslogng_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── maps │ │ │ └── mapstrstr │ │ │ │ └── helpers.go │ │ ├── model │ │ │ ├── common │ │ │ │ ├── security.go │ │ │ │ └── transport.go │ │ │ ├── filter │ │ │ │ ├── concat.go │ │ │ │ ├── concat_test.go │ │ │ │ ├── dedot.go │ │ │ │ ├── dedot_test.go │ │ │ │ ├── detect_exceptions.go │ │ │ │ ├── detect_exceptions_test.go │ │ │ │ ├── elasticsearch_genid.go │ │ │ │ ├── elasticsearch_genid_test.go │ │ │ │ ├── geoip.go │ │ │ │ ├── geoip_test.go │ │ │ │ ├── grep.go │ │ │ │ ├── grep_test.go │ │ │ │ ├── kube_events_timestamp.go │ │ │ │ ├── kube_events_timestamp_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── prometheus.go │ │ │ │ ├── prometheus_test.go │ │ │ │ ├── record_modifier.go │ │ │ │ ├── record_modifier_test.go │ │ │ │ ├── record_transformer.go │ │ │ │ ├── record_transformer_test.go │ │ │ │ ├── stdout.go │ │ │ │ ├── stdout_test.go │ │ │ │ ├── tagnormaliser.go │ │ │ │ ├── tagnormaliser_test.go │ │ │ │ ├── throttle.go │ │ │ │ ├── throttle_test.go │ │ │ │ ├── useragent.go │ │ │ │ ├── useragent_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── input │ │ │ │ ├── forward.go │ │ │ │ ├── tail.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── output │ │ │ │ ├── aws_elasticsearch.go │ │ │ │ ├── aws_elasticsearch_test.go │ │ │ │ ├── azurestore.go │ │ │ │ ├── azurestore_test.go │ │ │ │ ├── buffer.go │ │ │ │ ├── cloudwatch.go │ │ │ │ ├── cloudwatch_test.go │ │ │ │ ├── datadog.go │ │ │ │ ├── datadog_test.go │ │ │ │ ├── elasticsearch.go │ │ │ │ ├── elasticsearch_test.go │ │ │ │ ├── file.go │ │ │ │ ├── file_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_rfc5424.go │ │ │ │ ├── format_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── forward_test.go │ │ │ │ ├── gcs.go │ │ │ │ ├── gcs_test.go │ │ │ │ ├── gelf.go │ │ │ │ ├── gelf_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── kafka.go │ │ │ │ ├── kafka_test.go │ │ │ │ ├── kinesis_firehose.go │ │ │ │ ├── kinesis_firehose_test.go │ │ │ │ ├── kinesis_stream.go │ │ │ │ ├── kinesis_stream_test.go │ │ │ │ ├── lm_logs.go │ │ │ │ ├── lm_logs_test.go │ │ │ │ ├── logdna.go │ │ │ │ ├── logdna_test.go │ │ │ │ ├── logz.go │ │ │ │ ├── logz_test.go │ │ │ │ ├── loki.go │ │ │ │ ├── loki_test.go │ │ │ │ ├── mattermost.go │ │ │ │ ├── mattermost_test.go │ │ │ │ ├── newrelic.go │ │ │ │ ├── newrelic_test.go │ │ │ │ ├── null.go │ │ │ │ ├── null_test.go │ │ │ │ ├── opensearch.go │ │ │ │ ├── opensearch_test.go │ │ │ │ ├── oss.go │ │ │ │ ├── oss_test.go │ │ │ │ ├── rabbitmq.go │ │ │ │ ├── rabbitmq_test.go │ │ │ │ ├── redis.go │ │ │ │ ├── redis_test.go │ │ │ │ ├── relabel.go │ │ │ │ ├── relabel_test.go │ │ │ │ ├── s3.go │ │ │ │ ├── s3_test.go │ │ │ │ ├── splunk_hec.go │ │ │ │ ├── splunk_hec_test.go │ │ │ │ ├── sqs.go │ │ │ │ ├── sqs_test.go │ │ │ │ ├── syslog.go │ │ │ │ ├── syslog_test.go │ │ │ │ ├── vmware_log_intelligence.go │ │ │ │ ├── vmware_log_intelligence_test.go │ │ │ │ ├── vmware_loginsight.go │ │ │ │ ├── vmware_loginsight_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── render │ │ │ │ ├── fluent.go │ │ │ │ ├── fluent_test.go │ │ │ │ ├── interface.go │ │ │ │ └── test_helper.go │ │ │ ├── syslogng │ │ │ │ ├── config │ │ │ │ │ ├── channel.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── destination.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── filter_test.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── flow_test.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── log.go │ │ │ │ │ ├── model │ │ │ │ │ │ └── filter.go │ │ │ │ │ ├── output.go │ │ │ │ │ ├── output_tests │ │ │ │ │ │ ├── elasticsearch_datastream_test.go │ │ │ │ │ │ ├── elasticsearch_test.go │ │ │ │ │ │ ├── http_test.go │ │ │ │ │ │ ├── loggly_test.go │ │ │ │ │ │ ├── loki_test.go │ │ │ │ │ │ ├── mongodb_test.go │ │ │ │ │ │ ├── openobserve_test.go │ │ │ │ │ │ ├── otlp_test.go │ │ │ │ │ │ ├── redis_test.go │ │ │ │ │ │ ├── s3_test.go │ │ │ │ │ │ └── splunk_hec_test.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── render │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ └── render_test.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ ├── source.go │ │ │ │ │ ├── syntax.go │ │ │ │ │ ├── tag.go │ │ │ │ │ └── test_helpers.go │ │ │ │ ├── filter │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── output │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── disk_buffer.go │ │ │ │ │ ├── elasticsearch.go │ │ │ │ │ ├── elasticsearch_datastream.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── loggly.go │ │ │ │ │ ├── logscale.go │ │ │ │ │ ├── loki.go │ │ │ │ │ ├── mongodb.go │ │ │ │ │ ├── mqtt.go │ │ │ │ │ ├── openobserve.go │ │ │ │ │ ├── opentelemetry.go │ │ │ │ │ ├── redis.go │ │ │ │ │ ├── s3.go │ │ │ │ │ ├── splunk_hec.go │ │ │ │ │ ├── sumologic_http.go │ │ │ │ │ ├── sumologic_syslog.go │ │ │ │ │ ├── syslog.go │ │ │ │ │ ├── tls.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── types │ │ │ │ ├── builder.go │ │ │ │ ├── flow.go │ │ │ │ ├── router.go │ │ │ │ ├── stringmaps.go │ │ │ │ ├── stringmaps_test.go │ │ │ │ └── types.go │ │ └── plugins │ │ │ └── plugin.go │ └── static │ │ └── gen │ │ └── crds │ │ └── generated.go └── webhook │ └── podhandler │ ├── helpers.go │ └── podhandler.go ├── renovate.json └── scripts ├── check-header.sh ├── generate.sh └── trigger-docs-update.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | build/ 3 | -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [{*.yaml,*.yml}] 2 | indent_size = 2 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/archive/trigger-submodule-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/archive/trigger-submodule-update.yaml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/artifacts.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/config-reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/config-reloader.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/dependency-images.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/fluentd-drain-watch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/fluentd-drain-watch.yaml -------------------------------------------------------------------------------- /.github/workflows/fluentd-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/fluentd-images.yaml -------------------------------------------------------------------------------- /.github/workflows/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/node-exporter.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/syslog-ng-reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.github/workflows/syslog-ng-reloader.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.25.2 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.idea/copyright/Kube_Logging_authors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.idea/copyright/Kube_Logging_authors.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/logging-operator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.idea/logging-operator.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.licensei.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.licensei.toml -------------------------------------------------------------------------------- /.testcoverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/.testcoverage.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | golang 1.25.4 2 | -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/NOTICE -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/README.md -------------------------------------------------------------------------------- /charts-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts-docs/README.md -------------------------------------------------------------------------------- /charts-docs/templates/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts-docs/templates/README.md.gotmpl -------------------------------------------------------------------------------- /charts-docs/templates/overrides.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts-docs/templates/overrides.gotmpl -------------------------------------------------------------------------------- /charts/logging-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-demo/README.md -------------------------------------------------------------------------------- /charts/logging-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/.helmignore -------------------------------------------------------------------------------- /charts/logging-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/Chart.lock -------------------------------------------------------------------------------- /charts/logging-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/logging-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/README.md -------------------------------------------------------------------------------- /charts/logging-operator/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/README.md.gotmpl -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/Chart.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/README.md -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging-extensions.banzaicloud.io_eventtailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging-extensions.banzaicloud.io_eventtailers.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging-extensions.banzaicloud.io_hosttailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging-extensions.banzaicloud.io_hosttailers.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_axosyslogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_axosyslogs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_clusterflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_clusteroutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_flows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_fluentbitagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_fluentbitagents.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_fluentdconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_fluentdconfigs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_loggingroutes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_loggingroutes.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_loggings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_loggings.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_outputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngclusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngclusterflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngclusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngclusteroutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngconfigs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngoutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/templates/logging.banzaicloud.io_syslogngoutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/charts/logging-operator-crds/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/charts/logging-operator-crds/values.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging-extensions.banzaicloud.io_eventtailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging-extensions.banzaicloud.io_eventtailers.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging-extensions.banzaicloud.io_hosttailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging-extensions.banzaicloud.io_hosttailers.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_axosyslogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_axosyslogs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_clusterflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_clusteroutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_flows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_fluentbitagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_fluentbitagents.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_fluentdconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_fluentdconfigs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_loggingroutes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_loggingroutes.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_loggings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_loggings.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_outputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_syslogngclusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_syslogngclusterflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_syslogngclusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_syslogngclusteroutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_syslogngconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_syslogngconfigs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_syslogngflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_syslogngflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/crds/logging.banzaicloud.io_syslogngoutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/crds/logging.banzaicloud.io_syslogngoutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/logging-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/logging-operator/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/crds.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/clusterflows.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/clusteroutputs.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/eventtailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/eventtailer.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/fluentbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/fluentbit.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/hosttailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/hosttailers.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/logging/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/logging/logging.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/service.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/service_monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/service_monitor.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/test_receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/test_receiver.yaml -------------------------------------------------------------------------------- /charts/logging-operator/templates/userrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/templates/userrole.yaml -------------------------------------------------------------------------------- /charts/logging-operator/values-logging-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/values-logging-example.yaml -------------------------------------------------------------------------------- /charts/logging-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/charts/logging-operator/values.yaml -------------------------------------------------------------------------------- /cmd/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/cmd/docs.go -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging-extensions.banzaicloud.io_eventtailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging-extensions.banzaicloud.io_eventtailers.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging-extensions.banzaicloud.io_hosttailers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging-extensions.banzaicloud.io_hosttailers.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_axosyslogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_axosyslogs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_clusterflows.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_clusteroutputs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_flows.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_fluentbitagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_fluentbitagents.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_fluentdconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_fluentdconfigs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_loggingroutes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_loggingroutes.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_loggings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_loggings.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_outputs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_syslogngclusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_syslogngclusterflows.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_syslogngclusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_syslogngclusteroutputs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_syslogngconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_syslogngconfigs.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_syslogngflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_syslogngflows.yaml -------------------------------------------------------------------------------- /config/crd/bases/logging.banzaicloud.io_syslogngoutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/bases/logging.banzaicloud.io_syslogngoutputs.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_clusterflows.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_clusteroutputs.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_flows.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_fluentbits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_fluentbits.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_fluentds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_fluentds.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_loggings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_loggings.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/cainjection_in_outputs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_clusterflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_clusterflows.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_clusteroutputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_clusteroutputs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_flows.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_fluentbits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_fluentbits.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_fluentds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_fluentds.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_loggings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_loggings.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/crd/patches/webhook_in_outputs.yaml -------------------------------------------------------------------------------- /config/dashboards/logging-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/dashboards/logging-dashboard.json -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_image_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/manager_image_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_image_patch.yaml-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/manager_image_patch.yaml-e -------------------------------------------------------------------------------- /config/default/manager_prometheus_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/manager_prometheus_metrics_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - manager.yaml 3 | -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/samples/all-to-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/all-to-file.yaml -------------------------------------------------------------------------------- /config/samples/all-to-stdout-nslabel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/all-to-stdout-nslabel.yaml -------------------------------------------------------------------------------- /config/samples/all-to-stdout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/all-to-stdout.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_cluster_output_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_cluster_output_custom.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_flow.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_flow_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_flow_custom.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_custom.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_debug.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_default.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_disablelogrotate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_disablelogrotate.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_labels.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_psp.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_pvc.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_logging_tailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_logging_tailer.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_multiflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_multiflow.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_output.yaml -------------------------------------------------------------------------------- /config/samples/archive/logging_v1alpha2_output_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/archive/logging_v1alpha2_output_custom.yaml -------------------------------------------------------------------------------- /config/samples/configcheck-timeout-syslog-ng.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/configcheck-timeout-syslog-ng.yaml -------------------------------------------------------------------------------- /config/samples/configcheck-timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/configcheck-timeout.yaml -------------------------------------------------------------------------------- /config/samples/containerd-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/containerd-log.yaml -------------------------------------------------------------------------------- /config/samples/containerd-merge-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/containerd-merge-log.yaml -------------------------------------------------------------------------------- /config/samples/extensions/logging-extensions_v1alpha1_eventtailer_with_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/logging-extensions_v1alpha1_eventtailer_with_pvc.yaml -------------------------------------------------------------------------------- /config/samples/extensions/logging-extensions_v1alpha1_eventtailer_without_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/logging-extensions_v1alpha1_eventtailer_without_pvc.yaml -------------------------------------------------------------------------------- /config/samples/extensions/logging-extensions_v1alpha1_hosttailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/logging-extensions_v1alpha1_hosttailer.yaml -------------------------------------------------------------------------------- /config/samples/extensions/logging-extensions_v1alpha1_webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/logging-extensions_v1alpha1_webhook.yaml -------------------------------------------------------------------------------- /config/samples/extensions/testpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/testpod.yaml -------------------------------------------------------------------------------- /config/samples/extensions/testpod_annotated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/testpod_annotated.yaml -------------------------------------------------------------------------------- /config/samples/extensions/testpod_annotated_multicontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/extensions/testpod_annotated_multicontainer.yaml -------------------------------------------------------------------------------- /config/samples/fluentbit-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/fluentbit-multi.yaml -------------------------------------------------------------------------------- /config/samples/fluentd-extravolumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/fluentd-extravolumes.yaml -------------------------------------------------------------------------------- /config/samples/fluentdconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/fluentdconfig.yaml -------------------------------------------------------------------------------- /config/samples/logging_logging_fluentd_sidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/logging_logging_fluentd_sidecars.yaml -------------------------------------------------------------------------------- /config/samples/logging_logging_watchNamespaceSelector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/logging_logging_watchNamespaceSelector.yaml -------------------------------------------------------------------------------- /config/samples/logging_logging_with_monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/logging_logging_with_monitoring.yaml -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/README.md -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/logging/receiver-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/logging/receiver-infra.yaml -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/logging/tenant-a-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/logging/tenant-a-logging.yaml -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/logging/tenant-a-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/logging/tenant-a-user.yaml -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/logging/tenant-b-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/logging/tenant-b-logging.yaml -------------------------------------------------------------------------------- /config/samples/mulitenant-hard/logging/tenant-b-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/mulitenant-hard/logging/tenant-b-user.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/README.md -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-a-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-a-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-a-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-a-user.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-b-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-b-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-b-user1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-b-user1.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-b-user2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-b-user2.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-c-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-c-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-c-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-c-user.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-infra-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-infra-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-2/logging/tenant-infra-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-2/logging/tenant-infra-receiver.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-tc/tc-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-tc/tc-simple/README.md -------------------------------------------------------------------------------- /config/samples/multitenant-routing-tc/tc-simple/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-tc/tc-simple/collector.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-tc/tc-simple/tenant-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-tc/tc-simple/tenant-a.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-tc/tc-simple/tenant-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-tc/tc-simple/tenant-b.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing-tc/tc-simple/tenant-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing-tc/tc-simple/tenant-infra.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing/README.md -------------------------------------------------------------------------------- /config/samples/multitenant-routing/logging/tenant-a-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing/logging/tenant-a-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing/logging/tenant-b-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing/logging/tenant-b-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing/logging/tenant-infra-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing/logging/tenant-infra-logging.yaml -------------------------------------------------------------------------------- /config/samples/multitenant-routing/logging/tenant-infra-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/multitenant-routing/logging/tenant-infra-receiver.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-custom-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-custom-metrics.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-otlp/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-otlp/manifests.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-otlp/opentelemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-otlp/opentelemetry.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-pvc-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-pvc-metrics.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-retry.yaml -------------------------------------------------------------------------------- /config/samples/syslog-ng-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/syslog-ng-simple.yaml -------------------------------------------------------------------------------- /config/samples/telemetry-controller-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/telemetry-controller-routing/README.md -------------------------------------------------------------------------------- /config/samples/telemetry-controller-routing/tc-tenant-a-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/telemetry-controller-routing/tc-tenant-a-logging.yaml -------------------------------------------------------------------------------- /config/samples/telemetry-controller-routing/tc-tenant-b-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/telemetry-controller-routing/tc-tenant-b-logging.yaml -------------------------------------------------------------------------------- /config/samples/telemetry-controller-routing/tc-tenant-infra-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/telemetry-controller-routing/tc-tenant-infra-logging.yaml -------------------------------------------------------------------------------- /config/samples/telemetry-controller-routing/tc-tenant-infra-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/samples/telemetry-controller-routing/tc-tenant-infra-receiver.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/extensions/eventtailer_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/extensions/eventtailer_controller.go -------------------------------------------------------------------------------- /controllers/extensions/hosttailer_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/extensions/hosttailer_controller.go -------------------------------------------------------------------------------- /controllers/extensions/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/extensions/suite_test.go -------------------------------------------------------------------------------- /controllers/logging/axosyslog_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/axosyslog_controller.go -------------------------------------------------------------------------------- /controllers/logging/logging_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/logging_controller.go -------------------------------------------------------------------------------- /controllers/logging/logging_controller_match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/logging_controller_match_test.go -------------------------------------------------------------------------------- /controllers/logging/logging_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/logging_controller_test.go -------------------------------------------------------------------------------- /controllers/logging/loggingroute_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/loggingroute_controller.go -------------------------------------------------------------------------------- /controllers/logging/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/suite_test.go -------------------------------------------------------------------------------- /controllers/logging/telemetry_controller_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/telemetry_controller_controller.go -------------------------------------------------------------------------------- /controllers/logging/tenant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/controllers/logging/tenant_test.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/configuration/crds/extensions/v1alpha1/eventtailer_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/extensions/v1alpha1/eventtailer_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/extensions/v1alpha1/filetailer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/configuration/crds/extensions/v1alpha1/hosttailer_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/extensions/v1alpha1/hosttailer_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/extensions/v1alpha1/systemdtailer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/_index.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/axosyslog_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/axosyslog_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/clusterflow_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/clusterflow_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/clusteroutput_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/clusteroutput_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/common_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/common_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/conversion.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/flow_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/flow_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/fluentbit_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/fluentbit_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/fluentd_config_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/fluentd_config_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/fluentd_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/fluentd_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/logging_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/logging_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/loggingroute_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/loggingroute_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/output_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/output_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_clusterflow_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_clusterflow_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_clusteroutput_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_clusteroutput_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_config_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_config_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_flow_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_flow_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_output_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_output_types.md -------------------------------------------------------------------------------- /docs/configuration/crds/v1beta1/syslogng_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/crds/v1beta1/syslogng_types.md -------------------------------------------------------------------------------- /docs/configuration/plugins/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/_index.md -------------------------------------------------------------------------------- /docs/configuration/plugins/common/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/common/security.md -------------------------------------------------------------------------------- /docs/configuration/plugins/common/transport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/common/transport.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/concat.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/dedot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/dedot.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/detect_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/detect_exceptions.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/elasticsearch_genid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/elasticsearch_genid.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/enhance_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/enhance_k8s.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/geoip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/geoip.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/grep.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/kube_events_timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/kube_events_timestamp.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/parser.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/prometheus.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/record_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/record_modifier.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/record_transformer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/record_transformer.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/stdout.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/sumologic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/sumologic.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/tagnormaliser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/tagnormaliser.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/throttle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/throttle.md -------------------------------------------------------------------------------- /docs/configuration/plugins/filters/useragent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/filters/useragent.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/aws_elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/aws_elasticsearch.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/azurestore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/azurestore.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/buffer.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/cloudwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/cloudwatch.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/datadog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/datadog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/elasticsearch.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/file.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/format.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/format_rfc5424.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/format_rfc5424.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/forward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/forward.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/gcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/gcs.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/gelf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/gelf.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/http.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/kafka.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/kinesis_firehose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/kinesis_firehose.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/kinesis_stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/kinesis_stream.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/lm_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/lm_logs.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/logdna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/logdna.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/logz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/logz.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/loki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/loki.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/mattermost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/mattermost.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/newrelic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/newrelic.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/null.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/opensearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/opensearch.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/oss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/oss.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/rabbitmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/rabbitmq.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/redis.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/relabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/relabel.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/s3.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/splunk_hec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/splunk_hec.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/sqs.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/sumologic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/sumologic.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/syslog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/vmware_log_intelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/vmware_log_intelligence.md -------------------------------------------------------------------------------- /docs/configuration/plugins/outputs/vmware_loginsight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/outputs/vmware_loginsight.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-filters/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-filters/match.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-filters/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-filters/parser.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-filters/rewrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-filters/rewrite.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/auth.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/disk_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/disk_buffer.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/elasticsearch.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/elasticsearch_datastream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/elasticsearch_datastream.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/file.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/http.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/loggly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/loggly.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/logscale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/logscale.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/loki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/loki.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/mongodb.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/mqtt.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/openobserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/openobserve.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/opentelemetry.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/redis.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/s3.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/splunk_hec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/splunk_hec.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/sumologic_http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/sumologic_http.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/sumologic_syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/sumologic_syslog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/syslog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng-outputs/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng-outputs/tls.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/filters/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/filters/match.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/filters/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/filters/parser.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/filters/rewrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/filters/rewrite.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/disk_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/disk_buffer.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/file.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/loggly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/loggly.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/sumologic_http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/sumologic_http.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/sumologic_syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/sumologic_syslog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/syslog.md -------------------------------------------------------------------------------- /docs/configuration/plugins/syslogng/outputs/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/configuration/plugins/syslogng/outputs/tls.md -------------------------------------------------------------------------------- /docs/fluentbit-config-reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/fluentbit-config-reload.md -------------------------------------------------------------------------------- /docs/fluentbit-flow-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/fluentbit-flow-control.md -------------------------------------------------------------------------------- /docs/logging-route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/logging-route.md -------------------------------------------------------------------------------- /docs/multi-tenancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/multi-tenancy.md -------------------------------------------------------------------------------- /docs/multi-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/multi-worker.md -------------------------------------------------------------------------------- /docs/scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/scaling.md -------------------------------------------------------------------------------- /docs/sniffing-trafic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/sniffing-trafic.md -------------------------------------------------------------------------------- /docs/standalone-aggregator-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/standalone-aggregator-config.md -------------------------------------------------------------------------------- /docs/syslog-ng-date-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/syslog-ng-date-parser.md -------------------------------------------------------------------------------- /docs/syslogng-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/syslogng-quickstart.md -------------------------------------------------------------------------------- /docs/terraform-syslog-ng-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/terraform-syslog-ng-s3.md -------------------------------------------------------------------------------- /docs/volume-drainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/docs/volume-drainer.md -------------------------------------------------------------------------------- /e2e/common/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/cluster.go -------------------------------------------------------------------------------- /e2e/common/cond/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/cond/conditions.go -------------------------------------------------------------------------------- /e2e/common/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/helpers.go -------------------------------------------------------------------------------- /e2e/common/kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/kind.go -------------------------------------------------------------------------------- /e2e/common/kind/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/kind/commands.go -------------------------------------------------------------------------------- /e2e/common/panicobject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/panicobject.go -------------------------------------------------------------------------------- /e2e/common/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/resources.go -------------------------------------------------------------------------------- /e2e/common/setup/loggingoperator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/setup/loggingoperator.go -------------------------------------------------------------------------------- /e2e/common/setup/logproducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/setup/logproducer.go -------------------------------------------------------------------------------- /e2e/common/setup/restclientgetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/common/setup/restclientgetter.go -------------------------------------------------------------------------------- /e2e/elasticsearch-multiversion/elasticsearch_multiversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/elasticsearch-multiversion/elasticsearch_multiversion_test.go -------------------------------------------------------------------------------- /e2e/fluentbit-agent-namespace/fluentbit_agent_namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentbit-agent-namespace/fluentbit_agent_namespace_test.go -------------------------------------------------------------------------------- /e2e/fluentbit-hotreload/fluentbit_hotreload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentbit-hotreload/fluentbit_hotreload_test.go -------------------------------------------------------------------------------- /e2e/fluentbit-multitenant/fluentbit_multitenant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentbit-multitenant/fluentbit_multitenant_test.go -------------------------------------------------------------------------------- /e2e/fluentd-aggregator-detached-multiple-failures/fluentd_aggregator_detached_multiple_failures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentd-aggregator-detached-multiple-failures/fluentd_aggregator_detached_multiple_failures_test.go -------------------------------------------------------------------------------- /e2e/fluentd-aggregator-detached/fluentd_aggregator_detached_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentd-aggregator-detached/fluentd_aggregator_detached_test.go -------------------------------------------------------------------------------- /e2e/fluentd-aggregator-namespacelabel/fluentd_aggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentd-aggregator-namespacelabel/fluentd_aggregator_test.go -------------------------------------------------------------------------------- /e2e/fluentd-aggregator/fluentd_aggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/fluentd-aggregator/fluentd_aggregator_test.go -------------------------------------------------------------------------------- /e2e/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/go.mod -------------------------------------------------------------------------------- /e2e/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/go.sum -------------------------------------------------------------------------------- /e2e/logging_metrics_monitoring/logging_metrics_monitoring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/logging_metrics_monitoring/logging_metrics_monitoring_test.go -------------------------------------------------------------------------------- /e2e/syslog-ng-aggregator-detached/syslog_ng_aggregator_detached_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/syslog-ng-aggregator-detached/syslog_ng_aggregator_detached_test.go -------------------------------------------------------------------------------- /e2e/syslog-ng-aggregator/syslog_ng_aggregator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/syslog-ng-aggregator/syslog_ng_aggregator_test.go -------------------------------------------------------------------------------- /e2e/volumedrain/volumedrain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/volumedrain/volumedrain_test.go -------------------------------------------------------------------------------- /e2e/watch-selector/watch_selector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/e2e/watch-selector/watch_selector_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/go.work -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/crds.annotations.snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/hack/crds.annotations.snippet.txt -------------------------------------------------------------------------------- /hack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/hack/test.sh -------------------------------------------------------------------------------- /hack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/hack/values.yaml -------------------------------------------------------------------------------- /images/config-reloader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/Dockerfile -------------------------------------------------------------------------------- /images/config-reloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/README.md -------------------------------------------------------------------------------- /images/config-reloader/cmd/configreloader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/cmd/configreloader/main.go -------------------------------------------------------------------------------- /images/config-reloader/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/go.mod -------------------------------------------------------------------------------- /images/config-reloader/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/go.sum -------------------------------------------------------------------------------- /images/config-reloader/pkg/configreloader/configreloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/pkg/configreloader/configreloader.go -------------------------------------------------------------------------------- /images/config-reloader/pkg/configreloader/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/pkg/configreloader/types.go -------------------------------------------------------------------------------- /images/config-reloader/pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/config-reloader/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /images/fluentd-drain-watch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd-drain-watch/Dockerfile -------------------------------------------------------------------------------- /images/fluentd-drain-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd-drain-watch/README.md -------------------------------------------------------------------------------- /images/fluentd-drain-watch/drain-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd-drain-watch/drain-watch.sh -------------------------------------------------------------------------------- /images/fluentd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/Dockerfile -------------------------------------------------------------------------------- /images/fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/README.md -------------------------------------------------------------------------------- /images/fluentd/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/entrypoint.sh -------------------------------------------------------------------------------- /images/fluentd/filters/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/filters/Gemfile -------------------------------------------------------------------------------- /images/fluentd/filters/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/filters/Gemfile.lock -------------------------------------------------------------------------------- /images/fluentd/fluent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/fluent.conf -------------------------------------------------------------------------------- /images/fluentd/healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/healthy.sh -------------------------------------------------------------------------------- /images/fluentd/outputs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/outputs/Gemfile -------------------------------------------------------------------------------- /images/fluentd/outputs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/fluentd/outputs/Gemfile.lock -------------------------------------------------------------------------------- /images/node-exporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/node-exporter/Dockerfile -------------------------------------------------------------------------------- /images/node-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/node-exporter/README.md -------------------------------------------------------------------------------- /images/node-exporter/buffer-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/node-exporter/buffer-size.sh -------------------------------------------------------------------------------- /images/syslog-ng-reloader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/syslog-ng-reloader/Dockerfile -------------------------------------------------------------------------------- /images/syslog-ng-reloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/images/syslog-ng-reloader/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/main.go -------------------------------------------------------------------------------- /pkg/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/compression/compression.go -------------------------------------------------------------------------------- /pkg/mirror/struct_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/mirror/struct_iter.go -------------------------------------------------------------------------------- /pkg/resources/annotation/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/annotation/annotation.go -------------------------------------------------------------------------------- /pkg/resources/annotation/annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/annotation/annotation_test.go -------------------------------------------------------------------------------- /pkg/resources/configcheck/configcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/configcheck/configcheck.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/clusterrole.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/clusterrolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/clusterrolebinding.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/configmap.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/eventtailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/eventtailer.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/helpers.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/serviceaccount.go -------------------------------------------------------------------------------- /pkg/resources/eventtailer/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/eventtailer/statefulset.go -------------------------------------------------------------------------------- /pkg/resources/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/features.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/buffervolumeprometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/buffervolumeprometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/config.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/configsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/configsecret.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/configsecret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/configsecret_test.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/daemonset.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/fluentbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/fluentbit.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/meta.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/prometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/prometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/rbac.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/service.go -------------------------------------------------------------------------------- /pkg/resources/fluentbit/tenants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentbit/tenants.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/appconfigmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/appconfigmap.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/buffervolumeprometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/buffervolumeprometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/component.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/config.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/configsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/configsecret.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/dataprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/dataprovider.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/drainjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/drainjob.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/fluentd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/fluentd.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/meta.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/outputsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/outputsecret.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/pdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/pdb.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/placeholderpod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/placeholderpod.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/prometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/prometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/rbac.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/service.go -------------------------------------------------------------------------------- /pkg/resources/fluentd/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/fluentd/statefulset.go -------------------------------------------------------------------------------- /pkg/resources/hosttailer/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/hosttailer/helpers.go -------------------------------------------------------------------------------- /pkg/resources/hosttailer/hosttailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/hosttailer/hosttailer.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/utils.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/utils_test.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/volumebuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/volumebuilder.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/volumebuilder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/volumebuilder_test.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/volumemountbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/volumemountbuilder.go -------------------------------------------------------------------------------- /pkg/resources/kubetool/volumemountbuilder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/kubetool/volumemountbuilder_test.go -------------------------------------------------------------------------------- /pkg/resources/loggingdataprovider/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/loggingdataprovider/interface.go -------------------------------------------------------------------------------- /pkg/resources/model/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/model/reconciler.go -------------------------------------------------------------------------------- /pkg/resources/model/reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/model/reconciler_test.go -------------------------------------------------------------------------------- /pkg/resources/model/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/model/repository.go -------------------------------------------------------------------------------- /pkg/resources/model/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/model/resources.go -------------------------------------------------------------------------------- /pkg/resources/model/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/model/system.go -------------------------------------------------------------------------------- /pkg/resources/prometheus-operator/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/prometheus-operator/helper.go -------------------------------------------------------------------------------- /pkg/resources/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/reconciler.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/buffervolumeprometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/buffervolumeprometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/component.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/configcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/configcheck.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/configsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/configsecret.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/dataprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/dataprovider.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/meta.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/outputsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/outputsecret.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/prometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/prometheusrules.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/rbac.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/service.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/statefulset.go -------------------------------------------------------------------------------- /pkg/resources/syslogng/syslogng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/syslogng/syslogng.go -------------------------------------------------------------------------------- /pkg/resources/telemetry-controller/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/telemetry-controller/resources.go -------------------------------------------------------------------------------- /pkg/resources/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/templates/templates.go -------------------------------------------------------------------------------- /pkg/resources/volumepath/volumepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/volumepath/volumepath.go -------------------------------------------------------------------------------- /pkg/resources/volumepath/volumepath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/resources/volumepath/volumepath_test.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/tailer/tailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/tailer/tailer.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/tailer/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/tailer/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/eventtailer_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/eventtailer_types.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/filetailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/filetailer.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/hosttailer_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/hosttailer_types.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/systemdtailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/systemdtailer.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/extensionsconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/extensionsconfig/config.go -------------------------------------------------------------------------------- /pkg/sdk/extensions/extensionsconfig/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/extensions/extensionsconfig/config_test.go -------------------------------------------------------------------------------- /pkg/sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/go.mod -------------------------------------------------------------------------------- /pkg/sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/go.sum -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/clusterflow_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/clusterflow_conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/clusterflow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/clusterflow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/clusteroutput_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/clusteroutput_conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/clusteroutput_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/clusteroutput_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/flow_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/flow_conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/flow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/flow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/logging_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/logging_conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/logging_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/logging_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/output_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/output_conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/output_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/output_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/axosyslog_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/axosyslog_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/clusterflow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/clusterflow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/clusterflow_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/clusterflow_types_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/clusteroutput_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/clusteroutput_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/clusteroutput_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/clusteroutput_types_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/common_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/common_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/common_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/common_types_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/conversion.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/flow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/flow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/flow_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/flow_types_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/fluentbit_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/fluentbit_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/fluentd_config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/fluentd_config_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/fluentd_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/fluentd_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/logging_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/logging_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/loggingroute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/loggingroute_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/output_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/output_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/output_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/output_types_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/suite_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_clusterflow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_clusterflow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_clusteroutput_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_clusteroutput_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_config_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_flow_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_flow_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_output_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_output_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/syslogng_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/syslogng_types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/maps/mapstrstr/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/maps/mapstrstr/helpers.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/common/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/common/security.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/common/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/common/transport.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/concat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/concat.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/concat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/concat_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/dedot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/dedot.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/dedot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/dedot_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/detect_exceptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/detect_exceptions.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/detect_exceptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/detect_exceptions_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/elasticsearch_genid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/elasticsearch_genid.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/elasticsearch_genid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/elasticsearch_genid_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/geoip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/geoip.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/geoip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/geoip_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/grep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/grep.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/grep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/grep_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/kube_events_timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/kube_events_timestamp.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/kube_events_timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/kube_events_timestamp_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/parser.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/parser_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/prometheus.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/prometheus_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/record_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/record_modifier.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/record_modifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/record_modifier_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/record_transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/record_transformer.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/record_transformer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/record_transformer_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/stdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/stdout.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/stdout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/stdout_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/tagnormaliser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/tagnormaliser.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/tagnormaliser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/tagnormaliser_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/throttle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/throttle.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/throttle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/throttle_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/useragent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/useragent.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/useragent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/useragent_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/filter/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/filter/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/input/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/input/forward.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/input/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/input/tail.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/input/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/input/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/aws_elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/aws_elasticsearch.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/aws_elasticsearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/aws_elasticsearch_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/azurestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/azurestore.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/azurestore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/azurestore_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/buffer.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/cloudwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/cloudwatch.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/cloudwatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/cloudwatch_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/datadog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/datadog.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/datadog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/datadog_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/elasticsearch.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/elasticsearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/elasticsearch_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/file.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/file_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/format.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/format_rfc5424.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/format_rfc5424.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/format_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/forward.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/forward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/forward_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/gcs.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/gcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/gcs_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/gelf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/gelf.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/gelf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/gelf_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/http.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/http_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kafka.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kafka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kafka_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kinesis_firehose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kinesis_firehose.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kinesis_firehose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kinesis_firehose_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kinesis_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kinesis_stream.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/kinesis_stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/kinesis_stream_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/lm_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/lm_logs.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/lm_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/lm_logs_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/logdna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/logdna.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/logdna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/logdna_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/logz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/logz.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/logz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/logz_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/loki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/loki.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/loki_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/loki_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/mattermost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/mattermost.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/mattermost_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/mattermost_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/newrelic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/newrelic.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/newrelic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/newrelic_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/null.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/null_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/null_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/opensearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/opensearch.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/opensearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/opensearch_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/oss.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/oss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/oss_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/rabbitmq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/rabbitmq.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/rabbitmq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/rabbitmq_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/redis.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/redis_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/relabel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/relabel.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/relabel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/relabel_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/s3.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/s3_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/splunk_hec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/splunk_hec.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/splunk_hec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/splunk_hec_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/sqs.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/sqs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/sqs_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/syslog.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/syslog_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/vmware_log_intelligence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/vmware_log_intelligence.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/vmware_log_intelligence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/vmware_log_intelligence_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/vmware_loginsight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/vmware_loginsight.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/vmware_loginsight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/vmware_loginsight_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/output/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/output/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/render/fluent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/render/fluent.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/render/fluent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/render/fluent_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/render/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/render/interface.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/render/test_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/render/test_helper.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/channel.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/common.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/config.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/config_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/destination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/destination.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/field.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/filter.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/filter_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/flow.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/flow_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/go.mod -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/go.sum -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/log.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/model/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/model/filter.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/elasticsearch_datastream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/elasticsearch_datastream_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/elasticsearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/elasticsearch_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/http_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/loggly_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/loggly_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/loki_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/loki_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/mongodb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/mongodb_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/openobserve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/openobserve_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/otlp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/otlp_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/redis_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/s3_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/output_tests/splunk_hec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/output_tests/splunk_hec_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/parser.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/render/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/render/helpers.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/render/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/render/render_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/rewrite.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/source.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/syntax.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/tag.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/config/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/config/test_helpers.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/filter/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/filter/match.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/filter/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/filter/parser.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/filter/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/filter/rewrite.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/filter/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/filter/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/auth.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/disk_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/disk_buffer.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/elasticsearch.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/elasticsearch_datastream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/elasticsearch_datastream.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/file.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/http.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/loggly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/loggly.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/logscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/logscale.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/loki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/loki.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/mongodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/mongodb.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/mqtt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/mqtt.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/openobserve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/openobserve.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/opentelemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/opentelemetry.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/redis.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/s3.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/splunk_hec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/splunk_hec.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/sumologic_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/sumologic_http.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/sumologic_syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/sumologic_syslog.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/syslog.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/tls.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/syslogng/output/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/syslogng/output/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/builder.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/flow.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/router.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/stringmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/stringmaps.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/stringmaps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/stringmaps_test.go -------------------------------------------------------------------------------- /pkg/sdk/logging/model/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/model/types/types.go -------------------------------------------------------------------------------- /pkg/sdk/logging/plugins/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/logging/plugins/plugin.go -------------------------------------------------------------------------------- /pkg/sdk/static/gen/crds/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/sdk/static/gen/crds/generated.go -------------------------------------------------------------------------------- /pkg/webhook/podhandler/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/webhook/podhandler/helpers.go -------------------------------------------------------------------------------- /pkg/webhook/podhandler/podhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/pkg/webhook/podhandler/podhandler.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/check-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/scripts/check-header.sh -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/scripts/generate.sh -------------------------------------------------------------------------------- /scripts/trigger-docs-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kube-logging/logging-operator/HEAD/scripts/trigger-docs-update.sh --------------------------------------------------------------------------------