This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Instrumentation | |
DEFAULT_OPERATION = 'method.execution' | |
def self.trace(operation: DEFAULT_OPERATION, resource:, **options) | |
options.merge!(resource: resource).compact! | |
Datadog.tracer.trace(operation, options) do |span| | |
Datadog::Analytics.set_measured(span) | |
yield | |
end | |
rescue StandardError |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"typo3-console/composer-auto-setup": "^0.1", | |
"georgringer/news": "^6.1", | |
"helhum/typo3-secure-web": "^0.2.5", | |
"typo3/cms-introduction": "^3.0" | |
}, | |
"extra": { | |
"typo3/cms": { | |
"cms-package-dir": "{$vendor-dir}/typo3/cms", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/php:7.1-apache-browsers | |
working_directory: ~/working | |
steps: | |
- checkout | |
- run: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################################### | |
# Copyright notice | |
# | |
# (c) 2013 webconsulting business services gmbh ([email protected]) | |
# All rights reserved | |
# | |
# Based on work of various TYPO3 authors. | |
# | |
# This script is part of the TYPO3 project. The TYPO3 project is |